|
@@ -98,7 +98,7 @@ const tabsClick = ({ key }) => {
|
|
|
|
|
|
//搜索条件
|
|
|
const searchForm = ref({
|
|
|
- selectedType: 1, typeValue: '', statusValue: '', batchValue: '', queryValue: '', startTimeValue: '', endTimeValue: '',
|
|
|
+ selectedType: 1, typeValue: '', statusValue: '4', batchValue: '', queryValue: '', startTimeValue: '', endTimeValue: '',
|
|
|
current: 1, size: 100, total: 0,
|
|
|
})
|
|
|
|
|
@@ -115,7 +115,7 @@ const tasksStatus = ref([])
|
|
|
const queryTaskStatus = async () => {
|
|
|
const { data } = await mainApi.queryTaskStatus({ typeOrStatus: 'task_status' })
|
|
|
tasksStatus.value = getArrValue(data)
|
|
|
- //tasksStatus.value = [{ dictKey: '1', dictValue: '待审批' }, { dictKey: '2', dictValue: '已审批' }, { dictKey: '3', dictValue: '已废除' }, { dictKey: '4', dictValue: '可审批' }]
|
|
|
+ tasksStatus.value = [{ dictKey: '1', dictValue: '待审批' }, { dictKey: '2', dictValue: '已审批' }, { dictKey: '3', dictValue: '已废除' }, { dictKey: '4', dictValue: '可审批' }]
|
|
|
}
|
|
|
|
|
|
//日期范围选择
|