apply-clients 3.3.16 → 3.3.17
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/index.html +33 -33
- package/package.json +1 -1
- package/src/AndroidApp.vue +30 -30
- package/src/android.js +21 -21
- package/src/apply.js +3 -6
- package/src/applyAndroid.js +35 -35
- package/src/components/android/AppOnetomany.vue +285 -285
- package/src/components/android/AppServiceView.vue +570 -570
- package/src/components/android/AppTakePic.vue +143 -143
- package/src/components/android/Function/AppFunctionServiceControl.vue +329 -329
- package/src/components/android/Function/AppInstallFunction.vue +327 -327
- package/src/components/android/Process/AppExplorationUser.vue +268 -268
- package/src/components/android/Process/AppServiceControl.vue +711 -686
- package/src/components/android/Process/Processes/AppChargeManagement.vue +468 -468
- package/src/components/android/Process/Processes/AppDevicesManagement.vue +490 -490
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +466 -466
- package/src/components/android/Process/Processes/AppSupplementalAgreement.vue +297 -297
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +261 -261
- package/src/components/android/Supervisory/AppSupervisoryCart.vue +115 -115
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +265 -265
- package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +30 -30
- package/src/components/product/Function/InstallFunction.vue +122 -122
- package/src/components/product/Function/InstallInfoSelect.vue +289 -289
- package/src/components/product/Function/Service/FunctionServiceControl.vue +254 -254
- package/src/components/product/Onetomany.vue +296 -296
- package/src/components/product/Order/OrderApply.vue +47 -47
- package/src/components/product/Order/OrderApplyList.vue +62 -62
- package/src/components/product/Order/OrderMessage.vue +237 -237
- package/src/components/product/Process/ExplorationSelect.vue +145 -143
- package/src/components/product/Process/ExplorationUser.vue +128 -128
- package/src/components/product/Process/Processes/InstallationDetails.vue +421 -352
- package/src/components/product/Process/Processes/Print/img/10101.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010109.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010110.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010111.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010112.png +0 -0
- package/src/components/product/Process/Processes/{printCharge.vue → Print/printCharge.vue} +139 -121
- package/src/components/product/Process/Processes/Print/printRefund.vue +193 -0
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +181 -181
- package/src/components/product/Process/Processes/chargeManagement.vue +639 -639
- package/src/components/product/Process/Processes/devicesManagement.vue +458 -458
- package/src/components/product/Process/Processes/selectApply.vue +250 -250
- package/src/components/product/Process/Processes/selectUserinfo.vue +182 -182
- package/src/components/product/Process/Processes/supplementalAgreement.vue +298 -298
- package/src/components/product/Process/Service/ServiceControl.vue +916 -810
- package/src/components/product/Process/ShowBackReason.vue +33 -33
- package/src/components/product/ServiceView.vue +301 -307
- package/src/components/product/Stop/StopApplyList.vue +254 -254
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +512 -517
- package/src/components/product/Supervisory/SupervisoryControl.vue +100 -100
- package/src/components/product/Supervisory/SupervisoryList.vue +226 -226
- package/src/components/product/Supervisory/SupervisoryhCart.vue +124 -124
- package/src/components/product/VueUtils/ApplyUpload.vue +262 -262
- package/src/components/product/VueUtils/GaoPaiYi/HighMeter.vue +1090 -1090
- package/src/main.js +23 -23
- package/src/components/product/Function/Inform.vue +0 -74
- package/src/components/product/Function/MarketSurvey.vue +0 -80
|
@@ -1,124 +1,124 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div style="overflow: auto;background-color: #FFFFFF;">
|
|
3
|
-
<div class="row" v-for="(i,row) in defnames">
|
|
4
|
-
<div :class="row.id === selectdata.actid ? 'item selectIndex' : 'item'" @click="getdefname(row)" >
|
|
5
|
-
{{ row.defname }}
|
|
6
|
-
<br>
|
|
7
|
-
{{i === (defnames.length) - 1 ? row.sendtime : row.finishtime}}
|
|
8
|
-
</div>
|
|
9
|
-
<div class="arrow glyphicon glyphicon-menu-down" v-if="i !== defnames.length-1" aria-hidden="true"></div>
|
|
10
|
-
</div>
|
|
11
|
-
</div>
|
|
12
|
-
</template>
|
|
13
|
-
|
|
14
|
-
<script>
|
|
15
|
-
import {HttpResetClass} from 'vue-client'
|
|
16
|
-
import {isEmpty} from "../../Util";
|
|
17
|
-
export default {
|
|
18
|
-
title: "流程节点",
|
|
19
|
-
props:['selectdata'],
|
|
20
|
-
data(){
|
|
21
|
-
return{
|
|
22
|
-
defnames: [] // 所有节点
|
|
23
|
-
}
|
|
24
|
-
},
|
|
25
|
-
created () {
|
|
26
|
-
this.initial()
|
|
27
|
-
},
|
|
28
|
-
methods :{
|
|
29
|
-
async initial () {
|
|
30
|
-
// 获取流程节点信息
|
|
31
|
-
let http = new HttpResetClass()
|
|
32
|
-
let data = {
|
|
33
|
-
processid: this.selectdata.f_process_id
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
let res = await http.load(
|
|
37
|
-
'POST',
|
|
38
|
-
'rs/sql/getAllNode',
|
|
39
|
-
{data: data},
|
|
40
|
-
{resolveMsg: null, rejectMsg: '流程节点信息获取失败!!!'})
|
|
41
|
-
|
|
42
|
-
this.defnames = res.data
|
|
43
|
-
},
|
|
44
|
-
//点击获取节点名
|
|
45
|
-
getdefname (row) {
|
|
46
|
-
// 发起节点都可查看
|
|
47
|
-
// if(row.defname === this.$workflow_vue.start_activity){
|
|
48
|
-
// row = Object.assign({},this.selectdata,row)
|
|
49
|
-
// this.$dispatch('apply', row)
|
|
50
|
-
// return
|
|
51
|
-
// }
|
|
52
|
-
// if(this.check(row.actorexpression)){
|
|
53
|
-
// row = Object.assign({},this.selectdata,row)
|
|
54
|
-
// this.$dispatch('apply', row)
|
|
55
|
-
// return
|
|
56
|
-
// }
|
|
57
|
-
// this.$showMessage("对不起,您没有查看此节点的权限!")
|
|
58
|
-
|
|
59
|
-
row = Object.assign({},this.selectdata,row)
|
|
60
|
-
this.$dispatch('apply', row)
|
|
61
|
-
},
|
|
62
|
-
// 检测是否有权限
|
|
63
|
-
check (actorexpression){
|
|
64
|
-
|
|
65
|
-
let str = null
|
|
66
|
-
|
|
67
|
-
if (isEmpty(actorexpression)) {
|
|
68
|
-
return true
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
if (actorexpression.indexOf('D') === 0) {
|
|
72
|
-
str = actorexpression.substring(2, actorexpression.length-1)
|
|
73
|
-
return this.$login.f.f_department_name.includes(str)
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
if (actorexpression.indexOf('RS') === 0) {
|
|
77
|
-
for (str of actorexpression.substring(3, actorexpression.length-1).split(',')) {
|
|
78
|
-
return this.$login.f.f_role_name.includes(str)
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
if (actorexpression.indexOf('R') === 0) {
|
|
83
|
-
str = actorexpression.substring(2, actorexpression.length-1)
|
|
84
|
-
return this.$login.f.f_role_name.includes(str)
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
if (actorexpression.indexOf('PI') === 0) {
|
|
88
|
-
str = actorexpression.substring(3, actorexpression.length-1)
|
|
89
|
-
return this.$login.f.id.includes(str)
|
|
90
|
-
}
|
|
91
|
-
if (actorexpression.indexOf('P') === 0) {
|
|
92
|
-
str = actorexpression.substring(2, actorexpression.length-1)
|
|
93
|
-
return this.$login.f.name.includes(str)
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
return this.$login.f.f_role_name.includes('流程监控')
|
|
97
|
-
}
|
|
98
|
-
},
|
|
99
|
-
watch:{
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
</script>
|
|
103
|
-
|
|
104
|
-
<style scoped>
|
|
105
|
-
.row{
|
|
106
|
-
text-align: center;
|
|
107
|
-
height: auto;
|
|
108
|
-
margin-right: 20px;
|
|
109
|
-
}
|
|
110
|
-
.item{
|
|
111
|
-
border-radius: 2em;
|
|
112
|
-
border: 1px solid silver;
|
|
113
|
-
line-height: 25px;
|
|
114
|
-
}
|
|
115
|
-
.arrow{
|
|
116
|
-
width: 100%;
|
|
117
|
-
color: #5ac0d9;
|
|
118
|
-
font-weight: bold;
|
|
119
|
-
}
|
|
120
|
-
.selectIndex{
|
|
121
|
-
background-color: #5ac0d9;
|
|
122
|
-
color: #ffffff;
|
|
123
|
-
}
|
|
124
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div style="overflow: auto;background-color: #FFFFFF;">
|
|
3
|
+
<div class="row" v-for="(i,row) in defnames">
|
|
4
|
+
<div :class="row.id === selectdata.actid ? 'item selectIndex' : 'item'" @click="getdefname(row)" >
|
|
5
|
+
{{ row.defname }}
|
|
6
|
+
<br>
|
|
7
|
+
{{i === (defnames.length) - 1 ? row.sendtime : row.finishtime}}
|
|
8
|
+
</div>
|
|
9
|
+
<div class="arrow glyphicon glyphicon-menu-down" v-if="i !== defnames.length-1" aria-hidden="true"></div>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
</template>
|
|
13
|
+
|
|
14
|
+
<script>
|
|
15
|
+
import {HttpResetClass} from 'vue-client'
|
|
16
|
+
import {isEmpty} from "../../Util";
|
|
17
|
+
export default {
|
|
18
|
+
title: "流程节点",
|
|
19
|
+
props:['selectdata'],
|
|
20
|
+
data(){
|
|
21
|
+
return{
|
|
22
|
+
defnames: [] // 所有节点
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
created () {
|
|
26
|
+
this.initial()
|
|
27
|
+
},
|
|
28
|
+
methods :{
|
|
29
|
+
async initial () {
|
|
30
|
+
// 获取流程节点信息
|
|
31
|
+
let http = new HttpResetClass()
|
|
32
|
+
let data = {
|
|
33
|
+
processid: this.selectdata.f_process_id
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
let res = await http.load(
|
|
37
|
+
'POST',
|
|
38
|
+
'rs/sql/getAllNode',
|
|
39
|
+
{data: data},
|
|
40
|
+
{resolveMsg: null, rejectMsg: '流程节点信息获取失败!!!'})
|
|
41
|
+
|
|
42
|
+
this.defnames = res.data
|
|
43
|
+
},
|
|
44
|
+
//点击获取节点名
|
|
45
|
+
getdefname (row) {
|
|
46
|
+
// 发起节点都可查看
|
|
47
|
+
// if(row.defname === this.$workflow_vue.start_activity){
|
|
48
|
+
// row = Object.assign({},this.selectdata,row)
|
|
49
|
+
// this.$dispatch('apply', row)
|
|
50
|
+
// return
|
|
51
|
+
// }
|
|
52
|
+
// if(this.check(row.actorexpression)){
|
|
53
|
+
// row = Object.assign({},this.selectdata,row)
|
|
54
|
+
// this.$dispatch('apply', row)
|
|
55
|
+
// return
|
|
56
|
+
// }
|
|
57
|
+
// this.$showMessage("对不起,您没有查看此节点的权限!")
|
|
58
|
+
|
|
59
|
+
row = Object.assign({},this.selectdata,row)
|
|
60
|
+
this.$dispatch('apply', row)
|
|
61
|
+
},
|
|
62
|
+
// 检测是否有权限
|
|
63
|
+
check (actorexpression){
|
|
64
|
+
|
|
65
|
+
let str = null
|
|
66
|
+
|
|
67
|
+
if (isEmpty(actorexpression)) {
|
|
68
|
+
return true
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (actorexpression.indexOf('D') === 0) {
|
|
72
|
+
str = actorexpression.substring(2, actorexpression.length-1)
|
|
73
|
+
return this.$login.f.f_department_name.includes(str)
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
if (actorexpression.indexOf('RS') === 0) {
|
|
77
|
+
for (str of actorexpression.substring(3, actorexpression.length-1).split(',')) {
|
|
78
|
+
return this.$login.f.f_role_name.includes(str)
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
if (actorexpression.indexOf('R') === 0) {
|
|
83
|
+
str = actorexpression.substring(2, actorexpression.length-1)
|
|
84
|
+
return this.$login.f.f_role_name.includes(str)
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
if (actorexpression.indexOf('PI') === 0) {
|
|
88
|
+
str = actorexpression.substring(3, actorexpression.length-1)
|
|
89
|
+
return this.$login.f.id.includes(str)
|
|
90
|
+
}
|
|
91
|
+
if (actorexpression.indexOf('P') === 0) {
|
|
92
|
+
str = actorexpression.substring(2, actorexpression.length-1)
|
|
93
|
+
return this.$login.f.name.includes(str)
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
return this.$login.f.f_role_name.includes('流程监控')
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
watch:{
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
</script>
|
|
103
|
+
|
|
104
|
+
<style scoped>
|
|
105
|
+
.row{
|
|
106
|
+
text-align: center;
|
|
107
|
+
height: auto;
|
|
108
|
+
margin-right: 20px;
|
|
109
|
+
}
|
|
110
|
+
.item{
|
|
111
|
+
border-radius: 2em;
|
|
112
|
+
border: 1px solid silver;
|
|
113
|
+
line-height: 25px;
|
|
114
|
+
}
|
|
115
|
+
.arrow{
|
|
116
|
+
width: 100%;
|
|
117
|
+
color: #5ac0d9;
|
|
118
|
+
font-weight: bold;
|
|
119
|
+
}
|
|
120
|
+
.selectIndex{
|
|
121
|
+
background-color: #5ac0d9;
|
|
122
|
+
color: #ffffff;
|
|
123
|
+
}
|
|
124
|
+
</style>
|