|
|
|
@ -603,30 +603,55 @@ export default {
|
|
|
|
|
closeOnClickModal: false,//点击遮罩关闭弹窗
|
|
|
|
|
distinguishCancelAndClose: true,//区分取消与关闭
|
|
|
|
|
}).then(() => {
|
|
|
|
|
// 显示加载状态
|
|
|
|
|
const loading = _this.$loading({
|
|
|
|
|
lock: true,
|
|
|
|
|
text: '审核中...',
|
|
|
|
|
spinner: 'el-icon-loading',
|
|
|
|
|
background: 'rgba(0, 0, 0, 0.7)'
|
|
|
|
|
});
|
|
|
|
|
params.status = 2; //审核通过
|
|
|
|
|
updateCountOrderStatus(params).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
_this.$message.success("审核通过");
|
|
|
|
|
_this.getList();
|
|
|
|
|
_this.onRestDetail();
|
|
|
|
|
// 关闭加载状态
|
|
|
|
|
loading.close();
|
|
|
|
|
} else {
|
|
|
|
|
// 关闭加载状态
|
|
|
|
|
loading.close();
|
|
|
|
|
_this.$message.error(res.message);
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
// 关闭加载状态
|
|
|
|
|
loading.close();
|
|
|
|
|
});
|
|
|
|
|
}).catch((action) => {
|
|
|
|
|
if (action === 'cancel') {
|
|
|
|
|
//驳回
|
|
|
|
|
params.status = 0; //驳回到上一个状态
|
|
|
|
|
const loading = _this.$loading({
|
|
|
|
|
lock: true,
|
|
|
|
|
text: '驳回中...',
|
|
|
|
|
spinner: 'el-icon-loading',
|
|
|
|
|
background: 'rgba(0, 0, 0, 0.7)'
|
|
|
|
|
});
|
|
|
|
|
updateCountOrderStatus(params).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
_this.$message.warning("已驳回");
|
|
|
|
|
_this.getList();
|
|
|
|
|
_this.onRestDetail();
|
|
|
|
|
// 关闭加载状态
|
|
|
|
|
loading.close();
|
|
|
|
|
} else {
|
|
|
|
|
// 关闭加载状态
|
|
|
|
|
loading.close();
|
|
|
|
|
_this.$message.error(res.message);
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
// 关闭加载状态
|
|
|
|
|
loading.close();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
//关闭弹窗
|
|
|
|
|