|
|
@ -1,5 +1,5 @@ |
|
|
|
<template> |
|
|
|
<template> |
|
|
|
<basic-container> |
|
|
|
<basic-container v-loading="loadingObj.pageLoading"> |
|
|
|
<div class="avue-crud"> |
|
|
|
<div class="avue-crud"> |
|
|
|
<!-- 搜索模块 --> |
|
|
|
<!-- 搜索模块 --> |
|
|
|
<div v-h5uShow="!search"> |
|
|
|
<div v-h5uShow="!search"> |
|
|
@ -554,6 +554,7 @@ const details = reactive<any>({ |
|
|
|
addTagLoading: false, |
|
|
|
addTagLoading: false, |
|
|
|
/** 上传 */ |
|
|
|
/** 上传 */ |
|
|
|
UploadLoadong: false, |
|
|
|
UploadLoadong: false, |
|
|
|
|
|
|
|
pageLoading: false, |
|
|
|
}, |
|
|
|
}, |
|
|
|
/** 列表复选框选中的数据 */ |
|
|
|
/** 列表复选框选中的数据 */ |
|
|
|
selectionList: [], |
|
|
|
selectionList: [], |
|
|
@ -874,21 +875,19 @@ const onLoad = async (params = {} as any, isRefresh?: boolean) => { |
|
|
|
details.query.freezeStatus = '0'; |
|
|
|
details.query.freezeStatus = '0'; |
|
|
|
|
|
|
|
|
|
|
|
params.hasPackage = status === 'haveData' ? 1 : 0; |
|
|
|
params.hasPackage = status === 'haveData' ? 1 : 0; |
|
|
|
console.log('details.selectionList :>> ', details.selectionList.length); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 获取暂存单列表 |
|
|
|
// 获取暂存单列表 |
|
|
|
const res = await getopenOrderAdvancePageList(details.page, { ...details.query, ...params }); |
|
|
|
const res = await getopenOrderAdvancePageList(details.page, { ...details.query, ...params }); |
|
|
|
console.log('details.selectionList :>> ', details.selectionList.length); |
|
|
|
|
|
|
|
console.log('res :>> ', res); |
|
|
|
console.log('res :>> ', res); |
|
|
|
const { code, data } = res.data; |
|
|
|
const { code, data } = res.data; |
|
|
|
if (code !== 200) return; |
|
|
|
if (code !== 200) return; |
|
|
|
|
|
|
|
const _arr = [...details.selectionList]; |
|
|
|
|
|
|
|
|
|
|
|
if (status === 'haveData') details.haveDataData = data.records; |
|
|
|
if (status === 'haveData') details.haveDataData = data.records; |
|
|
|
else details.notHaveDataData = data.records; |
|
|
|
else details.notHaveDataData = data.records; |
|
|
|
details.page.total = data.total; |
|
|
|
details.page.total = data.total; |
|
|
|
|
|
|
|
|
|
|
|
if (!isRefresh) return; |
|
|
|
if (isRefresh) return; |
|
|
|
|
|
|
|
|
|
|
|
const _arr = [...details.selectionList]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (const item of data.records) { |
|
|
|
for (const item of data.records) { |
|
|
|
for (let index = 0; index < _arr.length; index++) { |
|
|
|
for (let index = 0; index < _arr.length; index++) { |
|
|
@ -901,6 +900,7 @@ const onLoad = async (params = {} as any, isRefresh?: boolean) => { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log('_arr :>> ', _arr); |
|
|
|
await nextTick(); |
|
|
|
await nextTick(); |
|
|
|
tableNodeRef.value.handleCheckSelect(_arr); |
|
|
|
tableNodeRef.value.handleCheckSelect(_arr); |
|
|
|
|
|
|
|
|
|
|
@ -914,10 +914,10 @@ const onLoad = async (params = {} as any, isRefresh?: boolean) => { |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
const initOnLoad = (params = {}) => { |
|
|
|
const initOnLoad = (params = {}, isRefresh = false) => { |
|
|
|
details.page.pageNum = 1; |
|
|
|
details.page.pageNum = 1; |
|
|
|
details.page.total = 0; |
|
|
|
details.page.total = 0; |
|
|
|
onLoad(params); |
|
|
|
onLoad(params, isRefresh); |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
initOnLoad(); |
|
|
|
initOnLoad(); |
|
|
@ -1113,10 +1113,13 @@ const handleDelete = () => { |
|
|
|
confirmButtonText: '确认', |
|
|
|
confirmButtonText: '确认', |
|
|
|
cancelButtonText: '取消', |
|
|
|
cancelButtonText: '取消', |
|
|
|
type: 'warning', |
|
|
|
type: 'warning', |
|
|
|
}).then(() => { |
|
|
|
}).then(async () => { |
|
|
|
const ids = details.selectionList.map(item => item.id); |
|
|
|
try { |
|
|
|
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
|
|
postOpenOrderDeletedAdvance({ advanceIds: ids, freezeStatus: '1' }).then(res => { |
|
|
|
const ids = details.selectionList.map(item => item.id); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const res = await postOpenOrderDeletedAdvance({ advanceIds: ids, freezeStatus: '1' }); |
|
|
|
const { code } = res.data; |
|
|
|
const { code } = res.data; |
|
|
|
if (code !== 200) return; |
|
|
|
if (code !== 200) return; |
|
|
|
ElMessage({ |
|
|
|
ElMessage({ |
|
|
@ -1124,21 +1127,15 @@ const handleDelete = () => { |
|
|
|
message: '操作成功', |
|
|
|
message: '操作成功', |
|
|
|
}); |
|
|
|
}); |
|
|
|
details.page.pageNum = 1; |
|
|
|
details.page.pageNum = 1; |
|
|
|
initOnLoad(); |
|
|
|
initOnLoad({}, true); |
|
|
|
}); |
|
|
|
} catch (error) { |
|
|
|
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
|
|
|
} finally { |
|
|
|
|
|
|
|
details.loadingObj.pageLoading = false; |
|
|
|
|
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
/** 批量发车 */ |
|
|
|
|
|
|
|
const handleDepart = () => { |
|
|
|
|
|
|
|
if (details.selectionList.length === 0) { |
|
|
|
|
|
|
|
return ElMessage({ |
|
|
|
|
|
|
|
type: 'warning', |
|
|
|
|
|
|
|
message: '最少选择一条数据', |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 批量冻结 */ |
|
|
|
/** 批量冻结 */ |
|
|
|
const handleFreeze = () => { |
|
|
|
const handleFreeze = () => { |
|
|
|
if (details.selectionList.length === 0) { |
|
|
|
if (details.selectionList.length === 0) { |
|
|
@ -1149,16 +1146,28 @@ const handleFreeze = () => { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const ids = details.selectionList.map(item => item.id); |
|
|
|
const ids = details.selectionList.map(item => item.id); |
|
|
|
|
|
|
|
ElMessageBox.confirm('确认冻结数据吗?', '提示', { |
|
|
|
|
|
|
|
confirmButtonText: '确认', |
|
|
|
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
|
|
|
type: 'warning', |
|
|
|
|
|
|
|
}).then(async () => { |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
|
|
postOpenOrderFreezeByAdvanceIds({ advanceIds: ids, freezeStatus: '1' }).then(res => { |
|
|
|
const res = await postOpenOrderFreezeByAdvanceIds({ advanceIds: ids, freezeStatus: '1' }); |
|
|
|
const { code } = res.data; |
|
|
|
const { code } = res.data; |
|
|
|
if (code !== 200) return; |
|
|
|
if (code !== 200) return; |
|
|
|
ElMessage({ |
|
|
|
ElMessage({ |
|
|
|
type: 'success', |
|
|
|
type: 'success', |
|
|
|
message: '操作成功', |
|
|
|
message: '操作成功', |
|
|
|
}); |
|
|
|
}); |
|
|
|
details.page.pageNum = 1; |
|
|
|
details.page.pageNum = 1; |
|
|
|
initOnLoad(); |
|
|
|
initOnLoad({}, true); |
|
|
|
|
|
|
|
} catch (error) { |
|
|
|
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
|
|
|
} finally { |
|
|
|
|
|
|
|
details.loadingObj.pageLoading = false; |
|
|
|
|
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
@ -1217,7 +1226,7 @@ const handleSuccess = res => { |
|
|
|
details.loadingObj.UploadLoadong = false; |
|
|
|
details.loadingObj.UploadLoadong = false; |
|
|
|
if (res.code !== 200) return ElMessage.warning('上传失败'); |
|
|
|
if (res.code !== 200) return ElMessage.warning('上传失败'); |
|
|
|
ElMessage.success('上传成功'); |
|
|
|
ElMessage.success('上传成功'); |
|
|
|
initOnLoad(); |
|
|
|
initOnLoad({}, true); |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
/** 上传失败 */ |
|
|
|
/** 上传失败 */ |
|
|
@ -1249,7 +1258,7 @@ const handleSubmitAddTag = async (formEl: FormInstance | undefined) => { |
|
|
|
if (code !== 200) return; |
|
|
|
if (code !== 200) return; |
|
|
|
ElMessage.success('添加成功'); |
|
|
|
ElMessage.success('添加成功'); |
|
|
|
details.popUpShow.addTagVisited = false; |
|
|
|
details.popUpShow.addTagVisited = false; |
|
|
|
initOnLoad(); |
|
|
|
initOnLoad({}, true); |
|
|
|
} catch (error) { |
|
|
|
} catch (error) { |
|
|
|
console.log('error :>> ', error); |
|
|
|
console.log('error :>> ', error); |
|
|
|
} finally { |
|
|
|
} finally { |
|
|
|