yangan
2024-07-05 9a0876466b8d98816294f2cae5f564b2e69972ef
pages/freight-forwarder-page/freightForwarder-my/freightForwarder-my.vue
@@ -78,9 +78,9 @@
         <view class="utils"><u-button text="修改密码"
               type="primary"
               @click="modifyPwd"></u-button></view>
         <view class="utils"><u-button text="重置密码"
         <!-- <view class="utils"><u-button text="重置密码"
               type="primary"
               @click="initPwd"></u-button></view>
               @click="initPwd"></u-button></view> -->
         <view class="utils"><u-button text="退出登录"
               type="primary"
               @click="logout"></u-button></view>
@@ -107,16 +107,16 @@
            @cancel="logoutCancel"></u-modal>
      </view>
      <!-- 重置密码弹出框 -->
      <view class="initPwdModal">
      <!-- <view class="initPwdModal">
         <u-modal :show="initPwdShow"
            title="重置密码"
            showCancelButton
            content="初始密码将变更为123456,是否确认重置"
            @confirm="initPwdConfirm"
            @cancel="initPwdCancel"></u-modal>
      </view>
      </view> -->
      <!-- 修改密码弹出框 -->
      <view class="modifyPwdModal">
      <!-- <view class="modifyPwdModal">
         <u-modal :show="modifyPwdShow"
            title="修改密码"
            showCancelButton
@@ -129,7 +129,7 @@
                  type="password"></u-input>
            </view>
         </u-modal>
      </view>
      </view> -->
   </view>
</template>
@@ -161,7 +161,7 @@
            modifyPwdShow: false,
            passwordModified: '',
            // 用户信息对象
            userEntity: {},
            userInfo: {},
         };
      },
      onLoad() {
@@ -170,21 +170,23 @@
      methods: {
         init() {
            this.getFleet();
            this.getUserEntity()
         },
         // 获取用户信息
         getUserEntity() {
            this.$reqGet('getUserEntity').then(res => {
               this.userEntity = res.data;
            });
            this.getUserEntity();
         },
         // 获取车队
         getFleet() {
            // this.$reqGet('getFleet', { wxUserId: this.addGroupForm.wxUserId }).then(res => {
            this.$reqGet('getFleet').then(res => {
               console.log('货代1车队', res);
               this.fleetData = res.data;
            });
         },
         getUserEntity() {
            uni.showLoading({
               title: '加载中...'
            });
            this.$reqGet('getUserEntity').then(res => {
               uni.hideLoading()
               this.userInfo = res.data;
            })
         },
         // 添加车队
         addFleet() {
@@ -247,49 +249,12 @@
               url: `/pages/customer-page/fleet-management/fleet-management?id=${id}`
            });
         },
         updateInfo() {
            this.$reqPost('updateUser', this.userEntity, 'json').then(res => {
               uni.hideLoading()
               if (res.code == 0) {
                  uni.showToast({
                     title: '重置成功',
                     duration: 2000,
                     icon: 'success'
                  })
               } else {
                  this.$u.toast(res.msg ? res.msg : '修改失败');
               }
            }).catch(err => {
               this.$u.toast('修改失败');
            });
         },
         initPwd() {
            this.initPwdShow = true
         },
         initPwdConfirm() {
            this.initPwdShow = false
            uni.showLoading({
               title: '加载中'
            })
            this.userEntity.password = '123456'
            this.updateInfo()
         },
         initPwdCancel() {
            this.initPwdShow = false
         },
         modifyPwd() {
            this.modifyPwdShow = true
         },
         modifyPwdConfirm() {
            if (this.passwordModified.length === 0) {
               return this.$u.toast('密码不能为空')
            }
            this.modifyPwdShow = false
            this.userEntity.password = this.passwordModified
            this.updateInfo()
         },
         modifyPwdCancel() {
            this.modifyPwdShow = false
            this.$store.commit('changeisLogin', false)
            this.$store.dispatch('websocketOnClose')
            uni.reLaunch({
               url: `/pages/login/resetPassword/resetPassword?phone=${this.userInfo.phone}&idCard=${this.userInfo.idCard}`
            })
         },
         logout() {
            this.logoutShow = true;