|
@@ -238,9 +238,6 @@ const fields = ref([
|
|
|
{
|
|
|
type: 'button',
|
|
|
text: '搜索',
|
|
|
- attrs: {
|
|
|
- style: { marginLeft: '0 !important' },
|
|
|
- },
|
|
|
onClick: () => {
|
|
|
search();
|
|
|
getStatisticsInfo();
|
|
@@ -285,6 +282,17 @@ const fields = ref([
|
|
|
style: 'width: 100%',
|
|
|
},
|
|
|
},
|
|
|
+ {
|
|
|
+ prop: 'unUploadPic',
|
|
|
+ label: '是否上传图片',
|
|
|
+ labelWidth: 110,
|
|
|
+ colSpan: 6,
|
|
|
+ type: 'select',
|
|
|
+ options: [
|
|
|
+ { label: '是', value: true },
|
|
|
+ { label: '否', value: false },
|
|
|
+ ],
|
|
|
+ },
|
|
|
]);
|
|
|
const mixinSearch = () => {
|
|
|
search();
|
|
@@ -298,6 +306,7 @@ const params = reactive({
|
|
|
authenticationStatus: '',
|
|
|
archivesTime: [],
|
|
|
remainValidDay: null,
|
|
|
+ unUploadPic: '',
|
|
|
});
|
|
|
const computedParams = computed(() => {
|
|
|
let data = omit(params, ['archivesTime']);
|