leisure-core 0.5.89 → 0.5.91

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -115,6 +115,9 @@
115
115
  autocomplete="off"
116
116
  ></el-input>
117
117
  </el-form-item>
118
+ <el-form-item label="昵称" prop="nick">
119
+ <el-input v-model="ruleForm.nick" autocomplete="off"></el-input>
120
+ </el-form-item>
118
121
  </el-form>
119
122
  <div
120
123
  ref="pwdref"
@@ -210,6 +213,7 @@ export default {
210
213
  ruleForm: {
211
214
  pwd: "",
212
215
  confirmPwd: "",
216
+ nick: this.$store.getters.userinfo.nick,
213
217
  },
214
218
  rules: {
215
219
  pwd: [{ validator: validatePass, trigger: "blur" }],
@@ -326,6 +330,7 @@ export default {
326
330
  pwd: this.ruleForm.pwd,
327
331
  confirmPwd: this.ruleForm.confirmPwd,
328
332
  uid: this.changeUid,
333
+ nick: this.ruleForm.nick,
329
334
  };
330
335
  this.$emit("userChangePwd", params, this.changePwdAfter);
331
336
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "leisure-core",
3
- "version": "0.5.89",
3
+ "version": "0.5.91",
4
4
  "description": "leisure-core是京心数据基于vue2.x开发的一套后台管理系统桌面端组件库,封装了大量实用的UI控件模板,非常方便开发者快速搭建前端应用",
5
5
  "private": false,
6
6
  "author": "北方乐逍遥(zcx7878)",