|
@@ -184,6 +184,7 @@ const queryTaskStatus = async () => {
|
|
|
const ContractIdChange = () => {
|
|
|
searchForm.value.batch = null
|
|
|
queryBatchList()
|
|
|
+ queryUserStartFlow()
|
|
|
}
|
|
|
|
|
|
//获取上报批次
|
|
@@ -311,8 +312,8 @@ const queryUserStartFlow = async () => {
|
|
|
//处理数据
|
|
|
tableLoading.value = false
|
|
|
if (!error && code === 200) {
|
|
|
- tableListData.value = getArrValue(data['records'])
|
|
|
- searchForm.value.total = data.total || 0
|
|
|
+ tableListData.value = getArrValue(data?.records) || []
|
|
|
+ searchForm.value.total = data?.total || 0
|
|
|
} else {
|
|
|
tableListData.value = []
|
|
|
searchForm.value.total = 0
|