自主配送
外协
@@ -988,6 +988,7 @@ export default {
/** 按钮loading */
loadingObj: {
submitBtnLoading: false,
+ pageLoading: false,
},
};
},
@@ -1002,21 +1003,32 @@ export default {
immediate: true,
},
},
- created() {
- this.$watch(
- () => this.$route.params,
- () => {
- this.fetchData();
- },
- // 组件创建完后获取数据,
- // 此时 data 已经被 observed 了
- { immediate: true }
- );
- this.getDictionary();
+ async created() {
+ // this.$watch(
+ // () => this.$route.params,
+ // () => {
+ // this.fetchData();
+ // },
+ // // 组件创建完后获取数据,
+ // // 此时 data 已经被 observed 了
+ // { immediate: true }
+ // );
+ try {
+ this.loadingObj.pageLoading = true;
+ await Promise.all([
+ this.getDictionary(),
+ this.getTeam(),
+ this.getvehicleData(),
+ this.getMasterDriverData(),
+ ]);
+ console.log('开始');
+ console.log('完毕');
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ this.loadingObj.pageLoading = false;
+ }
// this.getFork();
- this.getTeam();
- this.getvehicleData();
- this.getMasterDriverData();
// this.onLoad(this.page);
},
computed: {
@@ -1124,13 +1136,13 @@ export default {
},
//查询班组
async getTeam() {
- const info = JSON.parse(localStorage.getItem('TWMS-userInfo'));
- console.log('info >>>>>>>>', info);
- // let params = this.deptId;
- let params = info.content.dept_id;
- console.log('%%%%%%%%%', params);
- getListTeamInfo(params).then(res => {
- console.log('aaaaaaaaa', res.data.data);
+ try {
+ const info = JSON.parse(localStorage.getItem('TWMS-userInfo'));
+ console.log('info >>>>>>>>', info);
+ // let params = this.deptId;
+ let params = info.content.dept_id;
+ console.log('%%%%%%%%%', params);
+ const res = await getListTeamInfo(params);
let fo = [];
res.data.data.forEach(i => {
let a = {
@@ -1140,7 +1152,11 @@ export default {
fo.push(a);
});
this.loaderData = fo;
- });
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ return null;
+ }
},
// //备货区
// async getStorageArea() {
@@ -1284,6 +1300,7 @@ export default {
// return
try {
this.loadingObj.submitBtnLoading = true;
+ this.loadingObj.pageLoading = true;
// 司机 信息 需要为自主 才验证司机
if (this.aaa) {
@@ -1488,6 +1505,7 @@ export default {
} finally {
this.$store.commit('EDIT_REFRESHITEM', { title: 'reservation', status: true });
this.loadingObj.submitBtnLoading = false;
+ this.loadingObj.pageLoading = false;
}
},
@@ -1668,20 +1686,36 @@ export default {
this.driverForm.masterVehicleNub = this.vehticleInfo[a].vehicleNub;
},
// //数据字典数据获取
- getDictionary() {
- getDictionaryBiz('addvalue_serve_type').then(res => {
- this.addvalueServeTypeData = res.data.data;
- });
- // getDictionaryBiz('load_and_unload').then(res => {
- // this.loadAndUnloadData = res.data.data;
+ async getDictionary() {
+ try {
+ const res = await Promise.all([
+ getDictionaryBiz('addvalue_serve_type'),
+ getDictionaryBiz('delivery_way'),
+ getDictionaryBiz('tripartite_source'),
+ ]);
+
+ this.addvalueServeTypeData = res[0].data.data;
+ this.deliveryWayData = res[1].data.data;
+ this.tripartiteSourceData = res[2].data.data;
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ return null;
+ }
+
+ // getDictionaryBiz('addvalue_serve_type').then(res => {
+ // this.addvalueServeTypeData = res.data.data;
+ // });
+ // // getDictionaryBiz('load_and_unload').then(res => {
+ // // this.loadAndUnloadData = res.data.data;
+ // // });
+ // getDictionaryBiz('delivery_way').then(res => {
+ // this.deliveryWayData = res.data.data;
+ // });
+ // //三方外协来源
+ // getDictionaryBiz('tripartite_source').then(res => {
+ // this.tripartiteSourceData = res.data.data;
// });
- getDictionaryBiz('delivery_way').then(res => {
- this.deliveryWayData = res.data.data;
- });
- //三方外协来源
- getDictionaryBiz('tripartite_source').then(res => {
- this.tripartiteSourceData = res.data.data;
- });
},
ccc() {
From 8177c6b1f6708288eec90f6cf9ee57ae7ebab435 Mon Sep 17 00:00:00 2001
From: qb <1191961160@qq.com>
Date: Mon, 1 Apr 2024 20:16:18 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E5=95=86=E9=85=8D=E6=96=B0=E5=A2=9E?=
=?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=BC=93=E5=AD=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/router/views/index.js | 5 ++++-
.../deliverylist/distributionDeliveryList.vue | 1 +
.../deliverylist/distributionDeliveryListdis.vue | 2 ++
src/views/distribution/turndelivery/deliveryDiscuss.vue | 8 ++++++--
4 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/src/router/views/index.js b/src/router/views/index.js
index cba64c83..84bf6535 100644
--- a/src/router/views/index.js
+++ b/src/router/views/index.js
@@ -815,13 +815,16 @@ export default [
// ],
// },
{
- path: '/distribution/turndelivery/deliveryDiscuss',
+ path: '/distribution/turndelivery',
component: Layout,
redirect: '/distribution/turndelivery/deliveryDiscuss',
children: [
{
path: '/distribution/turndelivery/deliveryDiscuss',
name: '商配计划',
+ meta: {
+ keepAlive: true,
+ },
component: () => import('@/views/distribution/turndelivery/deliveryDiscuss.vue'),
},
],
diff --git a/src/views/distribution/deliverylist/distributionDeliveryList.vue b/src/views/distribution/deliverylist/distributionDeliveryList.vue
index def9cb5a..04a42bfb 100644
--- a/src/views/distribution/deliverylist/distributionDeliveryList.vue
+++ b/src/views/distribution/deliverylist/distributionDeliveryList.vue
@@ -1021,6 +1021,7 @@ export default {
this.box = true;
},
handleEdit(scope) {
+ this.$store.commit('DEL_ONCE_TAG', 'deliveryDiscuss');
const { row } = scope;
this.$router.push({
path: '/distribution/turndelivery/deliveryDiscuss',
diff --git a/src/views/distribution/deliverylist/distributionDeliveryListdis.vue b/src/views/distribution/deliverylist/distributionDeliveryListdis.vue
index 8e7554b7..2c03e293 100644
--- a/src/views/distribution/deliverylist/distributionDeliveryListdis.vue
+++ b/src/views/distribution/deliverylist/distributionDeliveryListdis.vue
@@ -1111,6 +1111,7 @@ export default {
},
handleEdit(scope) {
const { row } = scope;
+ this.$store.commit('DEL_ONCE_TAG', 'deliveryDiscuss');
this.$router.push({
path: '/distribution/turndelivery/deliveryDiscuss',
query: {
@@ -1200,6 +1201,7 @@ export default {
* 新增按钮,跳转至配送计划
*/
toDeliveryPlan() {
+ this.$store.commit('DEL_ONCE_TAG', 'deliveryDiscuss');
this.$router.push({
path: '/distribution/turndelivery/deliveryDiscuss',
});
diff --git a/src/views/distribution/turndelivery/deliveryDiscuss.vue b/src/views/distribution/turndelivery/deliveryDiscuss.vue
index 8be97719..cb8d6893 100644
--- a/src/views/distribution/turndelivery/deliveryDiscuss.vue
+++ b/src/views/distribution/turndelivery/deliveryDiscuss.vue
@@ -642,6 +642,12 @@