付延余
2023-03-24 eb9ae89c3e9f66fe5d0f39092a41e5c09bd86fc6
pages/customer-page/customer-my/customer-my.vue
@@ -131,25 +131,27 @@
   },
   methods: {
      init() {
         uni.showLoading({
            title: '加载中...'
         });
         this.getAllHuoDaiByCustomerId();
         this.getFleet();
         uni.hideLoading();
      },
      // 获取货代列表
      getAllHuoDaiByCustomerId() {
         uni.showLoading({
            title: '加载中...'
         });
         this.$reqGet('getAllHuoDaiByCustomerId').then(res => {
            uni.hideLoading();
            this.huoDaiData = res.data;
            console.log('货代列表', res);
         });
      },
      // 获取车队列表
      getFleet() {
         uni.showLoading({
            title: '加载中...'
         });
         this.$reqGet('getFleet').then(res => {
            uni.hideLoading();
            this.fleetData = res.data;
            console.log('车队列表', res);
         });
      },
      // 添加货代
@@ -160,7 +162,6 @@
      },
      // 添加车队
      addFleet() {
         console.log('添加车队');
         this.updateGroupShow = true;
      },
      addNewFleetPopupClose() {