system-clients 3.2.1-23 → 3.2.1-26

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.
@@ -18,14 +18,14 @@
18
18
  </div>
19
19
  </div>
20
20
  <div class="has-feedback form-group"
21
- :class="{'has-warning':$v.newpassword.required,'has-error':($v.newpassword.strongpassword || $v.newpassword.minlength)&& !$v.newpassword.required && !$v.newpassword.chinesePassword,
22
- 'has-success': !$v.newpassword.required && !$v.newpassword.strongpassword&&!$v.newpassword.minlength && !$v.newpassword.chinesePassword}">
21
+ :class="{'has-warning':$v.newpassword.required,'has-error':($v.newpassword.numbersAndLetter8to16 || $v.newpassword.minlength)&& !$v.newpassword.required && !$v.newpassword.chinesePassword,
22
+ 'has-success': !$v.newpassword.required && !$v.newpassword.numbersAndLetter8to16&&!$v.newpassword.minlength && !$v.newpassword.chinesePassword}">
23
23
  <label for="newpassword" class="col-sm-4 col-sm-offset-1 control-label">新的密码:&nbsp;&nbsp;</label>
24
24
  <div class="col-sm-4">
25
- <input type="password" v-model="deliver.newpassword" class="form-control" id="newpassword" v-validate:newpassword='{required:true, strongpassword: true, minlength: 6,chinesePassword: true}'>
26
- <span class="glyphicon glyphicon-ok form-control-feedback" v-if="!$v.newpassword.required && !$v.newpassword.minlength && !($v.newpassword.strongpassword && !($v.newpassword.required)) && !($v.newpassword.chinesePassword) "></span>
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
+ <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.strongpassword||$v.newpassword.minlength) && !($v.newpassword.required&&$v.newpassword.minlength)">密码长度不能小于六位,且必须包含英文大小写、阿拉伯数字、字符</span>
28
+ <span v-if="($v.newpassword.numbersAndLetter8to16||$v.newpassword.minlength) && !($v.newpassword.required&&$v.newpassword.minlength)">密码必须是8~16位数字与字母组合</span>
29
29
  <span v-if="$v.newpassword.chinesePassword">密码不能包含中文</span>
30
30
  </div>
31
31
  </div>
@@ -1,111 +1,111 @@
1
- <template>
2
- <div class='over' style="display: inline-block; width: 100%;">
3
- <tree :model='functions' :flagres="false" :is-click="false" v-ref:tree @toggle="toggled" >
4
- <span partial class="row" :class="{ 'tree-img': isFolder(row), 'tree-span': !isFolder(row) }">
5
- <div class="col-sm-2" >
6
- <img v-if="isFolder(row)" :src="row.data.icon" alt="">
7
- </div>
8
- <div class="col-sm-8" style="padding-left:6%;text-align: left">{{row.data.name}}</div>
9
- </span>
10
- </tree>
11
- </div>
12
- </template>
13
- <script>
14
- import Vue from 'vue'
15
-
16
- export default {
17
- props: ['functions', 'userid','tabs'],
18
- title: '左侧树菜单',
19
- data () {
20
- return {
21
- index: -1,
22
- name: null,
23
- tbcg:[]
24
- }
25
- },
26
- methods: {
27
- open (row) {
28
- if (row.data.name === '资源管理') {
29
- this.$parent.changeMain(row.data.id)
30
- return
31
- }
32
- console.log(row.data.navigate)
33
- if (row.data.navigate) {
34
-
35
- let isExist = false
36
- this.tbcg.forEach((tab) => {
37
- if(tab.comp.name == row.data.link) {
38
- isExist = true
39
- }
40
- })
41
- if (!isExist){
42
- this.$goto('embbed-page', {domainName: row.data.navigate, title: row.data.name, compName: row.data.link, login: Vue.$login, param: Vue.$appdata}, 'main')
43
- }else {
44
- console.log(isExist,'aa')
45
- this.$emit('isnodo',row.data.link)
46
- }
47
- } else if (row.data.link) {
48
- let isExist = false
49
- this.tbcg.forEach((tab) => {
50
- if(tab.comp.name == row.data.link) {
51
- isExist = true
52
- }
53
- })
54
- if (!isExist){
55
- this.$goto(row.data.link, {f: this.functions}, 'main')
56
- }else {
57
- console.log(isExist,'saaa')
58
- this.$emit('isnodo',row.data.link)
59
- }
60
- }
61
- },
62
- changeSelect(name) {
63
- if (!name) {
64
- this.$refs.tree.selectStore.select(null)
65
- return
66
- }
67
- this.name = name
68
- let index = this.selfFindIndex(name)
69
- this.index = index
70
- // 当前激活页签有,index为-1,说明菜单收缩
71
- this.changeSelected(index)
72
- },
73
- selfFindIndex (name) {
74
-
75
- return this.$refs.tree.toNode.findIndex((item) => {
76
- return item.data.link === name
77
- })
78
- },
79
- changeSelected (index) {
80
-
81
- if (index === -1) {
82
- this.$refs.tree.selectStore.select(null)
83
- }else {
84
- this.$refs.tree.selectStore.select(this.$refs.tree.toNode[index])
85
- }
86
-
87
- },
88
- toggled () {
89
-
90
- if (this.name && this.index === -1) {
91
- let index = this.selfFindIndex(this.name)
92
- if (index !== -1) {
93
- this.changeSelected(index)
94
- }
95
- }
96
- }
97
- },
98
- events: {
99
- 'select-changed': function (data) {
100
-
101
- // 事件回调内的 `this` 自动绑定到注册它的实例上
102
- this.open(data.val)
103
- }
104
- },
105
- watch:{
106
- 'tabs'(val){
107
- this.tbcg = val
108
- }
109
- }
110
- }
111
- </script>
1
+ <template>
2
+ <div class='over' style="display: inline-block; width: 100%;">
3
+ <tree :model='functions' :flagres="false" :is-click="false" v-ref:tree @toggle="toggled" >
4
+ <span partial class="row" :class="{ 'tree-img': isFolder(row), 'tree-span': !isFolder(row) }">
5
+ <div class="col-sm-2" >
6
+ <img v-if="isFolder(row)" :src="row.data.icon" alt="">
7
+ </div>
8
+ <div class="col-sm-8" style="padding-left:6%;text-align: left">{{row.data.name}}</div>
9
+ </span>
10
+ </tree>
11
+ </div>
12
+ </template>
13
+ <script>
14
+ import Vue from 'vue'
15
+
16
+ export default {
17
+ props: ['functions', 'userid','tabs'],
18
+ title: '左侧树菜单',
19
+ data () {
20
+ return {
21
+ index: -1,
22
+ name: null,
23
+ tbcg:[]
24
+ }
25
+ },
26
+ methods: {
27
+ open (row) {
28
+ if (row.data.name === '资源管理') {
29
+ this.$parent.changeMain(row.data.id)
30
+ return
31
+ }
32
+ console.log(row.data.navigate)
33
+ if (row.data.navigate) {
34
+
35
+ let isExist = false
36
+ this.tbcg.forEach((tab) => {
37
+ if(tab.comp.name == row.data.link) {
38
+ isExist = true
39
+ }
40
+ })
41
+ if (!isExist){
42
+ this.$goto('embbed-page', {domainName: row.data.navigate, title: row.data.name, compName: row.data.link, login: Vue.$login, param: Vue.$appdata}, 'main')
43
+ }else {
44
+ console.log(isExist,'aa')
45
+ this.$emit('isnodo',row.data.link)
46
+ }
47
+ } else if (row.data.link) {
48
+ let isExist = false
49
+ this.tbcg.forEach((tab) => {
50
+ if(tab.comp.name == row.data.link) {
51
+ isExist = true
52
+ }
53
+ })
54
+ if (!isExist){
55
+ this.$goto(row.data.link, {f: this.functions}, 'main')
56
+ }else {
57
+ console.log(isExist,'saaa')
58
+ this.$emit('isnodo',row.data.link)
59
+ }
60
+ }
61
+ },
62
+ changeSelect(name) {
63
+ if (!name) {
64
+ this.$refs.tree.selectStore.select(null)
65
+ return
66
+ }
67
+ this.name = name
68
+ let index = this.selfFindIndex(name)
69
+ this.index = index
70
+ // 当前激活页签有,index为-1,说明菜单收缩
71
+ this.changeSelected(index)
72
+ },
73
+ selfFindIndex (name) {
74
+
75
+ return this.$refs.tree.toNode.findIndex((item) => {
76
+ return item.data.link === name
77
+ })
78
+ },
79
+ changeSelected (index) {
80
+
81
+ if (index === -1) {
82
+ this.$refs.tree.selectStore.select(null)
83
+ }else {
84
+ this.$refs.tree.selectStore.select(this.$refs.tree.toNode[index])
85
+ }
86
+
87
+ },
88
+ toggled () {
89
+
90
+ if (this.name && this.index === -1) {
91
+ let index = this.selfFindIndex(this.name)
92
+ if (index !== -1) {
93
+ this.changeSelected(index)
94
+ }
95
+ }
96
+ }
97
+ },
98
+ events: {
99
+ 'select-changed': function (data) {
100
+
101
+ // 事件回调内的 `this` 自动绑定到注册它的实例上
102
+ this.open(data.val)
103
+ }
104
+ },
105
+ watch:{
106
+ 'tabs'(val){
107
+ this.tbcg = val
108
+ }
109
+ }
110
+ }
111
+ </script>