system-clients 3.2.78 → 3.2.80

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.
File without changes
@@ -0,0 +1,2 @@
1
+ #Fri Jan 05 16:43:24 CST 2024
2
+ gradle.version=7.4
Binary file
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "system-clients",
3
- "version": "3.2.78",
3
+ "version": "3.2.80",
4
4
  "description": "系统基础框架",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -205,7 +205,7 @@ let saveGen = function *(self) {
205
205
  console.log(self.$login.depPrompt)
206
206
  // 弱口令验证
207
207
  //跳转过来的不进行验证
208
- if ((!self.otherLogin) && self.config.weakPassword && !(/^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{8,16}$/.test(self.model.password))) {
208
+ if ((!self.otherLogin) && self.config.weakPassword && !(/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?!.*(123|321|abc|cba))[a-zA-Z\d!@#$%^&*()_+-=<>?]{8,16}$/.test(self.model.password))) {
209
209
  self.$showMessage('登录系统: 此账户的密码过于简单,请修改密码后重新登陆!!!', ['confirm']).then((res) => {
210
210
  self.modifyPwShow = true
211
211
  })
@@ -25,7 +25,7 @@
25
25
  <input type="password" v-model="deliver.newpassword" class="form-control" id="newpassword" v-validate:newpassword='{required:true, numbersAndLetter8to16: true, minlength: 6,chinesePassword: true}'>
26
26
  <span class="glyphicon glyphicon-ok form-control-feedback" v-if="!$v.newpassword.required && !$v.newpassword.minlength && !($v.newpassword.numbersAndLetter8to16 && !($v.newpassword.required)) && !($v.newpassword.chinesePassword) "></span>
27
27
  <span v-if="$v.newpassword.required">不能为空</span>
28
- <span v-if="($v.newpassword.numbersAndLetter8to16||$v.newpassword.minlength) && !($v.newpassword.required&&$v.newpassword.minlength)">密码必须是8~16位数字与字母组合</span>
28
+ <span v-if="($v.newpassword.numbersAndLetter8to16||$v.newpassword.minlength) && !($v.newpassword.required&&$v.newpassword.minlength)">密码必须是8~16位数字与大小字母外加特殊字符的组合,并且不能出现类似'123','abc'等连贯数字或者字母</span>
29
29
  <span v-if="$v.newpassword.chinesePassword">密码不能包含中文</span>
30
30
  </div>
31
31
  </div>
@@ -18,6 +18,11 @@
18
18
 
19
19
  //资源类型
20
20
  restype:'',
21
+ //是否只查询营业厅
22
+ specialquery: {
23
+ type: Boolean,
24
+ default: false
25
+ },
21
26
  //资源数据
22
27
  resObj:{},
23
28
  isMul: {
@@ -83,7 +88,13 @@
83
88
  parentname=parentname.replace("组织机构","")
84
89
  this.resoptions.push({label: val.name+' - '+parentname, value: val.id})
85
90
  }else{
86
- this.resoptions.push({label: val.name, value: val.id})
91
+ if (this.specialquery && this.restype == 'department') {
92
+ if (val.f_dep_type === '营业厅') {
93
+ this.resoptions.push({label: val.name, value: val.id})
94
+ }
95
+ }else {
96
+ this.resoptions.push({label: val.name, value: val.id})
97
+ }
87
98
  }
88
99
  }
89
100
  },
@@ -10,6 +10,7 @@
10
10
  <res-select restype='department' v-ref:department
11
11
  @res-select="getdep"
12
12
  :parentresid="depresid"
13
+ :specialquery="specialquery"
13
14
  :initresid='initres.dep'
14
15
  :mustselect="mustselect"
15
16
  :is-mul="mul">
@@ -57,6 +58,11 @@ export default {
57
58
  type: Boolean,
58
59
  default: true
59
60
  },
61
+ //是否只查询营业厅
62
+ specialquery: {
63
+ type: Boolean,
64
+ default: false
65
+ },
60
66
  //初始值
61
67
  initres: {
62
68
  type: Object,