n20-common-lib 1.2.22 → 1.2.23

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n20-common-lib",
3
- "version": "1.2.22",
3
+ "version": "1.2.23",
4
4
  "private": false,
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -31,8 +31,8 @@
31
31
  <el-button
32
32
  class="m-t"
33
33
  type="primary"
34
- @click="getNext"
35
34
  style="width: 100%"
35
+ @click="getNext"
36
36
  >下一步</el-button
37
37
  >
38
38
  </el-form>
@@ -53,7 +53,7 @@
53
53
  <div :class="ukCode ? 'success-tips' : 'filed-tips'">
54
54
  {{ ukCode ? '验证成功!' : '验证失败!' }}
55
55
  </div>
56
- <div class="filed-tips" v-show="!ukCode">
56
+ <div v-show="!ukCode" class="filed-tips">
57
57
  自助找回密码失败,请联系管理员
58
58
  </div>
59
59
  </div>
@@ -61,9 +61,9 @@
61
61
  <el-button
62
62
  class="m-t"
63
63
  type="primary"
64
- @click="getUkNext"
65
64
  :disabled="ukCode !== true"
66
65
  style="width: 100%"
66
+ @click="getUkNext"
67
67
  >下一步</el-button
68
68
  >
69
69
  </el-form>
@@ -76,9 +76,9 @@
76
76
  </div>
77
77
  <div v-if="type === 'newPwd'" key="newPwd">
78
78
  <el-form
79
+ ref="newPwdRef"
79
80
  :model="newPwdForm"
80
81
  :rules="newPwdRules"
81
- ref="newPwdRef"
82
82
  :hide-required-asterisk="true"
83
83
  >
84
84
  <el-form-item
@@ -104,8 +104,8 @@
104
104
  <el-button
105
105
  class="m-t"
106
106
  type="primary"
107
- @click="confirm"
108
107
  style="width: 100%"
108
+ @click="confirm"
109
109
  >确认</el-button
110
110
  >
111
111
  <div class="m-t-s">
@@ -118,7 +118,7 @@
118
118
 
119
119
  <script>
120
120
  import axios from '../../utils/axios'
121
- import getSign from '../../utils/sign'
121
+ import { getSign } from '../../plugins/Sign/sign'
122
122
  export default {
123
123
  data() {
124
124
  const lengthToFirstPassword = (rule, value, callback) => {
@@ -355,7 +355,6 @@ export default {
355
355
  }
356
356
  </script>
357
357
 
358
-
359
358
  <style>
360
359
  .success-tips {
361
360
  font-size: 14px;
@@ -372,4 +371,4 @@ export default {
372
371
  .uk-tips {
373
372
  font-size: 24px;
374
373
  }
375
- </style>
374
+ </style>