自主配送
外协
@@ -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() {