@lambo-design/login-form 1.0.0-beta.15 → 1.0.0-beta.16

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": "@lambo-design/login-form",
3
- "version": "1.0.0-beta.15",
3
+ "version": "1.0.0-beta.16",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "lambo",
@@ -10,8 +10,8 @@
10
10
  "registry": "https://registry.npmjs.org/"
11
11
  },
12
12
  "devDependencies": {
13
- "@lambo-design/core": "^4.7.1-beta.147",
14
- "@lambo-design/shared": "^1.0.0-beta.233"
13
+ "@lambo-design/shared": "^1.0.0-beta.285",
14
+ "@lambo-design/core": "^4.7.1-beta.167"
15
15
  },
16
16
  "scripts": {
17
17
  "release": "pnpm release-beta && git push --follow-tags && pnpm re-publish",
@@ -52,8 +52,8 @@
52
52
  <Button long :disabled="isDisabled" @click="showSlideVerify">{{ buttonText }}</Button>
53
53
  </FormItem>
54
54
  <FormItem>
55
- <Checkbox v-model="rememberMe"><span class="remember">记住用户名</span></Checkbox>
56
- <label v-if="showForgetPassword==='1'" style="float: right;"><router-link to="/forgetPasswordForget">忘记密码?</router-link></label>
55
+ <Checkbox v-if="showRememberMe === '1'" v-model="rememberMe"><span class="remember">记住用户名</span></Checkbox>
56
+ <label v-if="showForgetPassword === '1'" style="float: right;"><router-link to="/forgetPasswordForget">忘记密码?</router-link></label>
57
57
  </FormItem>
58
58
  <FormItem>
59
59
  <Button :loading="loading" long type="primary" @click="handleSubmit">登录</Button>
@@ -110,6 +110,10 @@ export default {
110
110
  },
111
111
  captchaMethod:{type: String},
112
112
  showForgetPassword:{type: String},
113
+ showRememberMe:{
114
+ type: String,
115
+ default: '1'
116
+ },
113
117
  passwordRetrievalMethod:{type: Array},
114
118
  smConfigId:{type: String},
115
119
  templateId:{type: String},