Browse Source

报价明细取消初始化页面查询

pre-production
马远东 1 year ago
parent
commit
234fe78790
  1. BIN
      dist.zip
  2. 45
      src/views/aftersales/aftersalesWorkOrder.vue
  3. 4
      src/views/warehouse/parcelList/distributionParcelList.vue
  4. 4
      vite.config.js

BIN
dist.zip

Binary file not shown.

45
src/views/aftersales/aftersalesWorkOrder.vue

@ -3185,6 +3185,16 @@ if(UserPermissions.value == '仓库客服'){ //处理完毕菜单下面确定按
return
}
}
ElMessageBox.confirm(
'是否确定当前处理结果?',
'Warning',
{
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}
)
.then(() => {
details.loadingObj.list = true; //
console.log(data, '处理好的数据');
$_updateWorkOrderStatus(data)
@ -3199,8 +3209,25 @@ if(UserPermissions.value == '仓库客服'){ //处理完毕菜单下面确定按
tabChenge(TabPermissions.value);
})
.catch(res => {
console.log(res,'错误信息');
}).finally(()=>{
details.loadingObj.list = false; //
});
})
.catch(() => {
ElMessage({
type: 'info',
message: '取消确定',
})
})
}else{
let data = {
assignList: [],
@ -3245,7 +3272,16 @@ if(UserPermissions.value == '仓库客服'){ //处理完毕菜单下面确定按
return
}
}
ElMessageBox.confirm(
'是否确定当前处理信息?',
'Warning',
{
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}
)
.then(() => {
details.loadingObj.list = true; //
//
$_updateManagerConfirmed(data)
@ -3266,6 +3302,13 @@ if(UserPermissions.value == '仓库客服'){ //处理完毕菜单下面确定按
})
//
console.log(data, '处理好的值');
})
.catch(() => {
ElMessage({
type: 'info',
message: '已取消',
})
})
}
};
//

4
src/views/warehouse/parcelList/distributionParcelList.vue

@ -642,7 +642,7 @@ export default {
//
search: true,
//
loading: true,
loading: false,
//
view: false,
//
@ -672,7 +672,7 @@ export default {
},
mounted() {
this.init();
this.onLoad(this.page);
// this.onLoad(this.page);
/**
* 初始化获取本地缓存的编辑隐藏的列表
* 固定搭配不能更改

4
vite.config.js

@ -23,9 +23,9 @@ export default ({ mode, command }) => {
// 新zyc
// target: 'http://192.168.6.116:8777',
// target: 'http://192.168.6.122:8777',
// target: 'http://192.168.10.25:13000',
target: 'http://192.168.10.25:13000',
// target: 'http://192.168.10.25:2888',
target: 'http://192.168.6.169:9777',//CYZ
// target: 'http://192.168.6.169:9777',//CYZ
// target: 'http://192.168.10.57:13000',
// target: 'http://192.168.10.200:13000',
// target: 'http://192.168.10.29:13000',

Loading…
Cancel
Save