|
@ -279,7 +279,6 @@ const searchList = (model) => { |
|
|
params.itemTypes = '' |
|
|
params.itemTypes = '' |
|
|
params.itemType = '' |
|
|
params.itemType = '' |
|
|
} |
|
|
} |
|
|
params.orderTypeM = '1' |
|
|
|
|
|
setSearchParams(params) |
|
|
setSearchParams(params) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -424,11 +423,7 @@ const handleExport = async () => { |
|
|
|
|
|
|
|
|
// 筛选提交 |
|
|
// 筛选提交 |
|
|
const searchFormClick = (searchData) => { |
|
|
const searchFormClick = (searchData) => { |
|
|
searchData.filters.push({ |
|
|
|
|
|
action: '==', |
|
|
|
|
|
column: 'order_type_m', |
|
|
|
|
|
value: '1' |
|
|
|
|
|
}) |
|
|
|
|
|
tableObject.params = { |
|
|
tableObject.params = { |
|
|
isSearch: true, |
|
|
isSearch: true, |
|
|
filters: searchData.filters |
|
|
filters: searchData.filters |
|
@ -458,18 +453,14 @@ const changeTabs = (data) => { |
|
|
|
|
|
|
|
|
/** 初始化 **/ |
|
|
/** 初始化 **/ |
|
|
onMounted(async () => { |
|
|
onMounted(async () => { |
|
|
tableObject.params = { |
|
|
|
|
|
orderTypeM: '1' |
|
|
|
|
|
} |
|
|
|
|
|
await getSwitchByCode('EnableQms').then((res) => { |
|
|
await getSwitchByCode('EnableQms').then((res) => { |
|
|
EnableQms.value = res == 'TRUE' ? true : false |
|
|
EnableQms.value = res == 'TRUE' ? true : false |
|
|
}) |
|
|
}) |
|
|
getList() |
|
|
getList() |
|
|
}) |
|
|
}) |
|
|
onActivated(() => { |
|
|
onActivated(() => { |
|
|
tableObject.params = { |
|
|
|
|
|
orderTypeM: '1' |
|
|
|
|
|
} |
|
|
|
|
|
getList() |
|
|
getList() |
|
|
}) |
|
|
}) |
|
|
</script> |
|
|
</script> |
|
|