system-clients 3.2.82 → 3.2.83-yangchun
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/.gradle/7.4/checksums/checksums.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.4/fileChanges/last-build.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.4/gc.properties +0 -0
- package/.gradle/8.5/checksums/checksums.lock +0 -0
- package/.gradle/8.5/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/8.5/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.5/fileChanges/last-build.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.5/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/.gradle/file-system.probe +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/gradlew +249 -0
- package/gradlew.bat +92 -0
- package/package.json +105 -105
- package/src/components/Main.vue +923 -819
- package/src/components/parammanage/ParamPage.vue +7 -7
- package/src/components/parammanage/SinglePage.vue +3 -3
- package/src/components/server/Login.vue +5 -3
- package/src/components/server/ModifyPw.vue +1 -1
- package/src/components/server/ResSelect.vue +12 -1
- package/src/components/server/ResSelectGroup.vue +6 -0
- package/src/components/server/RightTree.vue +1 -1
- package/src/filiale/qianneng/Login.vue +566 -0
- package/src/filiale/qianneng/ModifyPw.vue +2 -2
- package/src/filiale/qianneng/system.js +3 -0
- package/src/filiale/shiquan/Login.vue +564 -0
- package/src/filiale/shiquan/system.js +8 -0
- package/src/filiale/tongchuan/Main.vue +1019 -0
- package/src/filiale/tongchuan/system.js +1 -1
- package/src/plugins/GetLoginInfoService.js +3 -0
- package/src/plugins/validation.js +1 -1
- package/src/stores/AppData.js +1 -1
- package/src/styles/less/aofeng/standard.less +4 -4
- package/src/styles/less/aofeng/themeOne/BinaryTemplate.less +5 -1
- package/static/newStyle/1959d3b6480f4485b2e32446f762960c.jpg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="flex">
|
|
3
3
|
<p class="bg-info text-center" style="padding: 8px;">参数管理
|
|
4
|
-
<button type="button" name="button" class="button_search button_spacing width-60" @click="add('t_parameter')" style="float:right">新增</button>
|
|
4
|
+
<button type="button" name="button" class="button_search button_spacing width-60" @click="add('t_parameter')" style="float:right" v-if="this.$login.r.includes('参数管理新增')">新增</button>
|
|
5
5
|
</p>
|
|
6
6
|
<div class="auto">
|
|
7
7
|
<form class="form-horizontal" style="margin-bottom: 5px;">
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
<td style="text-align:center">{{row.orgname ? row.orgname + '专用' : '全局'}}</td>
|
|
41
41
|
<td class="flex-around">
|
|
42
42
|
<button type="button" name="button" class="button_search button_spacing width-60"
|
|
43
|
-
@click.stop="$parent.$parent.modifyParam(row, 't_parameter')">修改</button>
|
|
43
|
+
@click.stop="$parent.$parent.modifyParam(row, 't_parameter')" v-if="this.$login.r.includes('参数管理修改')">修改</button>
|
|
44
44
|
<button type="button" name="button" class="btn btn-danger"
|
|
45
|
-
@click.stop="$parent.$parent.deleteParam(row, 't_parameter')">删除</button>
|
|
45
|
+
@click.stop="$parent.$parent.deleteParam(row, 't_parameter')" v-if="this.$login.r.includes('参数管理删除')">删除</button>
|
|
46
46
|
</td>
|
|
47
47
|
</template>
|
|
48
48
|
</data-grid>
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
|
|
51
51
|
<p v-if="selectItem" class="bg-info text-center" style="padding: 8px;margin: 8px 0px;">
|
|
52
52
|
{{selectItem.name}}
|
|
53
|
-
<button type="button" name="button" class="button_search button_spacing width-60" @click="add('t_paramvalue')" style="float:right">新增</button>
|
|
53
|
+
<button type="button" name="button" class="button_search button_spacing width-60" @click="add('t_paramvalue')" style="float:right" v-if="this.$login.r.includes('参数管理二级新增')">新增</button>
|
|
54
54
|
</p>
|
|
55
55
|
<div v-if="selectItem" class="span">
|
|
56
56
|
<data-grid :model="params" v-ref:selects >
|
|
@@ -65,9 +65,9 @@
|
|
|
65
65
|
<td style="text-align:center">{{$index+1}}</td>
|
|
66
66
|
<td style="text-align:center">{{row.name}}</td>
|
|
67
67
|
<td class="flex-around col-sm-3">
|
|
68
|
-
<button type="button" name="button" class="button_search" @click.stop="$parent.$parent.modifyParam(row, 't_paramvalue')">修改</button>
|
|
69
|
-
<button type="button" name="button" class="button_search" v-if="$index!=0" @click.stop="$parent.$parent.move(row,$index)">上移</button>
|
|
70
|
-
<button type="button" name="button" class="btn btn-danger" @click.stop="$parent.$parent.deleteParam(row, 't_paramvalue')">删除</button>
|
|
68
|
+
<button type="button" name="button" class="button_search" v-if="this.$login.r.includes('参数管理二级修改')" @click.stop="$parent.$parent.modifyParam(row, 't_paramvalue')">修改</button>
|
|
69
|
+
<button type="button" name="button" class="button_search" v-if="$index != 0 && $login.r.includes('参数管理二级排序')" @click.stop="$parent.$parent.move(row,$index)">上移</button>
|
|
70
|
+
<button type="button" name="button" class="btn btn-danger" v-if="this.$login.r.includes('参数管理二级删除')" @click.stop="$parent.$parent.deleteParam(row, 't_paramvalue')">删除</button>
|
|
71
71
|
</td>
|
|
72
72
|
</template>
|
|
73
73
|
</data-grid>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="flex">
|
|
3
3
|
<p class="bg-info text-center" style="padding: 8px;">
|
|
4
4
|
单值管理
|
|
5
|
-
<button type="button" name="button" class="button_search button_spacing width-60 " @click="add()" style="float:right">新增</button>
|
|
5
|
+
<button type="button" name="button" class="button_search button_spacing width-60 " @click="add()" style="float:right" v-if="this.$login.r.includes('单值管理新增')">新增</button>
|
|
6
6
|
</p>
|
|
7
7
|
<div class="auto">
|
|
8
8
|
<form class="form-horizontal" style="margin-bottom: 5px;">
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
<td style="text-align:center">{{row.orgname ? row.orgname + '专用' : '全局'}}</td>
|
|
45
45
|
<td class="flex-around">
|
|
46
46
|
<button type="button" name="button" class="button_search button_spacing width-60"
|
|
47
|
-
@click.stop="$parent.$parent.$parent.modifyParam(row)">修改</button>
|
|
47
|
+
@click.stop="$parent.$parent.$parent.modifyParam(row)" v-if="this.$login.r.includes('单值管理修改')">修改</button>
|
|
48
48
|
<button type="button" name="button" class="btn btn-danger"
|
|
49
|
-
@click.stop="$parent.$parent.$parent.deleteItem(row)">删除</button>
|
|
49
|
+
@click.stop="$parent.$parent.$parent.deleteItem(row)" v-if="this.$login.r.includes('单值管理删除')">删除</button>
|
|
50
50
|
</td>
|
|
51
51
|
</template>
|
|
52
52
|
</data-grid>
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<img
|
|
9
9
|
src="../../assets/clear-cookie.png" style="height: 25px; width: 95px;margin-bottom: 3px;">
|
|
10
10
|
</button>
|
|
11
|
-
<span v-if="$login.versionTime"
|
|
11
|
+
<span v-if="$login.versionTime">构建时间:{{ vTime }}</span>
|
|
12
12
|
<div v-if="titleShow">
|
|
13
13
|
<img src="../../../static/newStyle/login-info.png"/>
|
|
14
14
|
<span @click="showus=true">关于我们</span>
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
技术支持:西安奥枫软件有限公司
|
|
86
86
|
</div>
|
|
87
87
|
<div class="login-foot" v-show="$login.BAinformation">
|
|
88
|
-
{{ $login.BAinformation }}
|
|
88
|
+
{{{ $login.BAinformation }}}
|
|
89
89
|
</div>
|
|
90
90
|
|
|
91
91
|
<modal v-if="depPromptShow" :show.sync="depPromptShow" :backdrop="false" v-ref:modal >
|
|
@@ -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 && !(/^(
|
|
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
|
})
|
|
@@ -314,6 +314,8 @@ export default {
|
|
|
314
314
|
msgRole : '预约处理人员',
|
|
315
315
|
// 定时获取提示间隔 单位:分钟
|
|
316
316
|
times: 25,
|
|
317
|
+
approve: false, // 是否获取审核提醒
|
|
318
|
+
approveTimes: 1 // 审核时间见间隔
|
|
317
319
|
},
|
|
318
320
|
titleShow: true, //标题显示
|
|
319
321
|
otherLogin:false,
|
|
@@ -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
|
|
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.
|
|
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,
|