保誠-保戶業務員媒合平台
HelenHuang
2022-01-04 873bb61290fadf81f3ebbe0bab04bb1b0cc82013
Update:保戶個人帳號設定 增加成功提醒popup
修改1個檔案
15 ■■■■■ 已變更過的檔案
PAMapp/pages/accountSetting/index.vue 15 ●●●●● 修補檔 | 檢視 | 原始 | 究查 | 歷程
PAMapp/pages/accountSetting/index.vue
@@ -47,6 +47,18 @@
        </div>
      </div>
    </div>
    <PopUpFrame :isOpen.sync="updateDone">
      <div class="text--center mdTxt fs-18">
        <p class="mt-20 text--center ">帳號資訊更新成功</p>
        <el-button
                type="primary"
                @click="updateDone = false"
                class="mt-20"
              >我知道了</el-button>
      </div>
    </PopUpFrame>
    <div class="pam-paragraph account-confirm">
      <el-button :disabled="isSubmitBtnDisabled"
        @click.native="updateAccountSetting">
@@ -70,6 +82,7 @@
  userPhoneDisabled = true;
  userEmailDisabled = true ;
  onEditMode        = false;
  updateDone        = false;
  userNameValue     = '';
  phoneValue        = '' ;
  emailValue        = '' ;
@@ -114,6 +127,8 @@
            accountSettingService.updateAccountSetting(editSettingInfo).then((res: any) => {
                console.log('updateRes:', res);
                this.resetSettingForm();
                this.updateDone = true;
            });
        }