|
@@ -21,7 +21,8 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
- <el-button @click="notChagePsw()">暂不修改</el-button>
|
|
|
+ <el-button type='success' @click="notRemind()">不再提示</el-button>
|
|
|
+ <el-button type="warning" @click="notChagePsw()">暂不修改</el-button>
|
|
|
<el-button type="primary" @click="savePass('dialogForm')">修 改</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
@@ -170,7 +171,17 @@
|
|
|
notChagePsw(){
|
|
|
this.dialogFormVisible = false;
|
|
|
this.jumpMenu(this.activeItem)
|
|
|
+ },
|
|
|
+ notRemind(){
|
|
|
+ this.$api.user.notRemind().then(res=>{
|
|
|
+ if (res.code ===200 && res.data){
|
|
|
+ console.log("Not remind successful")
|
|
|
+ }
|
|
|
+ });
|
|
|
+ this.dialogFormVisible = false;
|
|
|
+ this.jumpMenu(this.activeItem)
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
</script>
|