@@ -93,15 +93,23 @@ export default {
confirm(e) {
this.loding = true;
+ uni.showLoading({
+ title: '提交中',
+ mask: false
+ });
Reset({
account: this.account,
captcha: this.captcha,
password: this.password,
repeat: this.repeat
})
- .then(({ data }) => {
+ .then(() => {
this.loding = false;
- this.$api.msg('修改成功');
+ uni.showToast({
+ title: '修改成功',
+ icon:"success",
+ mask:true
.catch(err => {