@@ -218,11 +218,19 @@ export const getZxqdFindConfig = (route, agencyIdList) => ({ | |||
prop: "singleChip", | |||
label: "是否单片式", | |||
hide: true, | |||
funRuleStarts: true, //是否启用转换规则 | |||
funRule: (value) => { | |||
return value ? '是' : '否' | |||
}, | |||
form: { | |||
formLabelWidth: formLabelWidth, | |||
type: 'input', | |||
required: true, | |||
disabled: false | |||
disabled: false, | |||
funRuleStarts: true, //是否启用转换规则 | |||
funRule: (value) => { | |||
return value ? '是' : '否' | |||
} | |||
} | |||
}, | |||
{ |
@@ -692,6 +692,7 @@ function refreshLeft() { | |||
vehiclePlate: '', | |||
vehiclePlatecolor: '', | |||
status: '', | |||
businessPort: '', | |||
} | |||
value1.value = null | |||
getList() | |||
@@ -710,7 +711,6 @@ function getList() { | |||
let params: any = { | |||
pageNo: field.value.paging.currentPage, | |||
pageSize: field.value.paging.pageSize, | |||
status: tableType.value, | |||
} | |||
let searchFormList = { ...searchForm.value } | |||
for (let key in searchFormList) { |
@@ -447,6 +447,7 @@ | |||
vehiclePlate: '', | |||
vehiclePlatecolor: '', | |||
status: '', | |||
businessPort: '', | |||
} | |||
value1.value = [] | |||
tableData.value = []; | |||
@@ -504,7 +505,6 @@ | |||
let params: any = { | |||
pageNo: field.value.paging.currentPage, | |||
pageSize: field.value.paging.pageSize, | |||
status: tableType.value | |||
} | |||
let searchFormList = { ...searchForm.value } | |||
for (let key in searchFormList) { |