|
|
|
@ -120,9 +120,7 @@
|
|
|
|
|
isUpdate: false,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
function importFlow() {
|
|
|
|
|
visible.value = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const handleOk = async () => {
|
|
|
|
|
let ids = []
|
|
|
|
|
refImportFlow.value.getSelectData().forEach((e) => {
|
|
|
|
@ -144,9 +142,19 @@
|
|
|
|
|
visible.value = false
|
|
|
|
|
}
|
|
|
|
|
function handleAudit(record: Recordable) {
|
|
|
|
|
let ApiData: any = { cntrno: record.cntrno }
|
|
|
|
|
let ApiData: any = {
|
|
|
|
|
queryCondition: `[{"FieldName":"Cntrno","FieldValue":"${record.cntrno}","ConditionalType":1}]`,
|
|
|
|
|
otherQueryCondition: '',
|
|
|
|
|
pageCondition: {
|
|
|
|
|
isExport: false,
|
|
|
|
|
pageIndex: 1,
|
|
|
|
|
pageSize: 50,
|
|
|
|
|
sortConditions: [],
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
ApiChangeList(ApiData).then((res) => {
|
|
|
|
|
console.log(res)
|
|
|
|
|
// visible.value = true
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
function handleSuccess() {
|
|
|
|
|