|
|
|
@ -901,23 +901,40 @@
|
|
|
|
|
|
|
|
|
|
<!-- 提交按钮 --> |
|
|
|
|
<div class="submitDataContainer"> |
|
|
|
|
<!-- 取消审核 --> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
v-if="BookingNote_audit && !query.checkUserId" |
|
|
|
|
v-if="BookingNote_audit && Number(query.checkStatus) === 1" |
|
|
|
|
icon="CircleClose" |
|
|
|
|
@click="handleCloseAudit" |
|
|
|
|
> |
|
|
|
|
取消审核 |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
<!-- 审核 --> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
v-if="BookingNote_audit && Number(query.checkStatus) === 0" |
|
|
|
|
icon="el-icon-position" |
|
|
|
|
@click="handleShowAudit" |
|
|
|
|
> |
|
|
|
|
审 核 |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
<!-- 修改 --> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
v-if="BookingNote_edit && Number(query.checkStatus) === 0" |
|
|
|
|
icon="el-icon-edit" |
|
|
|
|
@click="handleEdit" |
|
|
|
|
> |
|
|
|
|
修 改</el-button |
|
|
|
|
> |
|
|
|
|
修 改 |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
<!-- 打印 --> |
|
|
|
|
<el-button type="primary" icon="el-icon-printer" @click="handlePrint"> 打 印</el-button> |
|
|
|
|
|
|
|
|
|
<!-- 关闭 --> |
|
|
|
|
<el-button type="primary" icon="el-icon-close" @click="back()"> 关 闭</el-button> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
@ -1086,7 +1103,11 @@ import {
|
|
|
|
|
TransactionColumnList, |
|
|
|
|
} from '@/option/distribution/BookingNote'; |
|
|
|
|
import { useRouter, useRoute } from 'vue-router'; |
|
|
|
|
import { postFindWaybillDetail, postCheckWaybill } from '@/api/distribution/CreateOrder.js'; |
|
|
|
|
import { |
|
|
|
|
postFindWaybillDetail, |
|
|
|
|
postCheckWaybill, |
|
|
|
|
postCancleCheckWaybill, |
|
|
|
|
} from '@/api/distribution/CreateOrder.js'; |
|
|
|
|
import { postPrintBatch } from '@/api/waybill/WaybillOrderList.js'; |
|
|
|
|
import { getLazyTreeAll } from '@/api/base/region'; |
|
|
|
|
import { |
|
|
|
@ -1805,6 +1826,33 @@ const handleAudit = async () => {
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 取消审核 */ |
|
|
|
|
const handleCloseAudit = ({ row }) => { |
|
|
|
|
ElMessageBox.confirm('是否确认取消审核?', '提示', { |
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}).then(async () => { |
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
try { |
|
|
|
|
const res = await postCancleCheckWaybill({ |
|
|
|
|
waybillId: $route.query.id, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const { code, msg } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
ElMessage.success({ |
|
|
|
|
message: msg, |
|
|
|
|
}); |
|
|
|
|
onLoad(); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
details.loadingObj.pageLoading = false; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 请求运输合同图片列表 */ |
|
|
|
|
const handleFindContractList = async () => { |
|
|
|
|
try { |
|
|
|
|