|
@@ -129,36 +129,35 @@ const columns = reactive<ColumnProps<any>[]>([
|
|
|
search: {
|
|
|
el: 'tree-select'
|
|
|
},
|
|
|
- fieldNames: { label: 'dictLabel', value: 'dictValue' },
|
|
|
- width: 120
|
|
|
+ fieldNames: { label: 'dictLabel', value: 'dictValue' }
|
|
|
},
|
|
|
- {
|
|
|
- prop: 'startTime',
|
|
|
- label: '开始时间',
|
|
|
- search: {
|
|
|
- el: 'date-picker',
|
|
|
- props: { type: 'datetimerange', valueFormat: 'YYYY-MM-DD HH:mm:ss' }
|
|
|
- },
|
|
|
- width: 200
|
|
|
- },
|
|
|
- {
|
|
|
- prop: 'endTime',
|
|
|
- label: '结束时间',
|
|
|
- search: {
|
|
|
- el: 'date-picker',
|
|
|
- props: { type: 'datetimerange', valueFormat: 'YYYY-MM-DD HH:mm:ss' }
|
|
|
- },
|
|
|
- width: 200
|
|
|
- },
|
|
|
- {
|
|
|
- prop: 'costSecond',
|
|
|
- label: '耗时',
|
|
|
- search: {
|
|
|
- el: 'input'
|
|
|
- },
|
|
|
- width: 120
|
|
|
- },
|
|
|
- { prop: 'operation', label: '操作', width: 270, fixed: 'right' }
|
|
|
+ // {
|
|
|
+ // prop: 'startTime',
|
|
|
+ // label: '开始时间',
|
|
|
+ // search: {
|
|
|
+ // el: 'date-picker',
|
|
|
+ // props: { type: 'datetimerange', valueFormat: 'YYYY-MM-DD HH:mm:ss' }
|
|
|
+ // },
|
|
|
+ // width: 200
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // prop: 'endTime',
|
|
|
+ // label: '结束时间',
|
|
|
+ // search: {
|
|
|
+ // el: 'date-picker',
|
|
|
+ // props: { type: 'datetimerange', valueFormat: 'YYYY-MM-DD HH:mm:ss' }
|
|
|
+ // },
|
|
|
+ // width: 200
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // prop: 'costSecond',
|
|
|
+ // label: '耗时',
|
|
|
+ // search: {
|
|
|
+ // el: 'input'
|
|
|
+ // },
|
|
|
+ // width: 120
|
|
|
+ // },
|
|
|
+ { prop: 'operation', label: '操作', fixed: 'right' }
|
|
|
])
|
|
|
// 表单配置项
|
|
|
let itemsOptions: ProForm.ItemsOptions[] = []
|