| | |
| | | </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"> |
| | |
| | | userPhoneDisabled = true; |
| | | userEmailDisabled = true ; |
| | | onEditMode = false; |
| | | updateDone = false; |
| | | userNameValue = ''; |
| | | phoneValue = '' ; |
| | | emailValue = '' ; |
| | |
| | | accountSettingService.updateAccountSetting(editSettingInfo).then((res: any) => { |
| | | console.log('updateRes:', res); |
| | | this.resetSettingForm(); |
| | | this.updateDone = true; |
| | | |
| | | }); |
| | | } |
| | | |