apply-clients 3.3.201 → 3.3.205
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 +1 -1
- package/package.json +1 -1
- package/src/apply.js +90 -89
- package/src/components/android/Process/Processes/AppChargeManagement.vue +468 -468
- package/src/components/product/Order/OrderApplyList.vue +8 -2
- package/src/components/product/Order/OrderMessage.vue +2 -2
- package/src/components/product/Process/Processes/chargeManagement.vue +638 -638
- package/src/components/product/Process/Service/ServiceControl.vue +883 -830
- package/src/components/product/ServiceView.vue +741 -638
- package/src/components/product/Supervisory/Service/printChargeNode.vue +873 -0
- package/src/components/product/Supervisory/SupervisoryControl.vue +108 -100
- package/src/components/product/Supervisory/SupervisoryList.vue +29 -2
|
@@ -1,100 +1,108 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="flex-row">
|
|
3
|
-
<div class="basic-main">
|
|
4
|
-
<div :class="showData ? 'top' : 'auto'">
|
|
5
|
-
<supervisory-list v-ref:query :show-data="showData"></supervisory-list>
|
|
6
|
-
</div>
|
|
7
|
-
<div v-if="showtotal" style="height: 89%">
|
|
8
|
-
<div class="col-sm-2" style="margin-top: 20px">
|
|
9
|
-
<supervisory-chart :selectdata="selectdata"></supervisory-chart>
|
|
10
|
-
</div>
|
|
11
|
-
<div class="col-sm-10" style="margin-top: 20px">
|
|
12
|
-
<tabset v-ref:tabs :close="false">
|
|
13
|
-
<tab :header='selectdata.defname'>
|
|
14
|
-
<supervisory-service-control :selectdata="selectdata" :node-snapshot="true"></supervisory-service-control>
|
|
15
|
-
</tab>
|
|
16
|
-
<tab header='附件'>
|
|
17
|
-
<apply-upload :blodid="selectdata.f_process_id"
|
|
18
|
-
:isupload = "false"
|
|
19
|
-
:isdelete="false"
|
|
20
|
-
:isusetype="true"
|
|
21
|
-
:isremark = "true"
|
|
22
|
-
:takeimg="true"
|
|
23
|
-
:issearch="true"
|
|
24
|
-
:defname="selectdata.defname">
|
|
25
|
-
</apply-upload>
|
|
26
|
-
</tab>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
</
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
this.showtotal =
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
this.showData =
|
|
90
|
-
|
|
91
|
-
this
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex-row">
|
|
3
|
+
<div class="basic-main">
|
|
4
|
+
<div :class="showData ? 'top' : 'auto'">
|
|
5
|
+
<supervisory-list v-ref:query :show-data="showData"></supervisory-list>
|
|
6
|
+
</div>
|
|
7
|
+
<div v-if="showtotal" style="height: 89%">
|
|
8
|
+
<div class="col-sm-2" style="margin-top: 20px">
|
|
9
|
+
<supervisory-chart :selectdata="selectdata"></supervisory-chart>
|
|
10
|
+
</div>
|
|
11
|
+
<div class="col-sm-10" style="margin-top: 20px">
|
|
12
|
+
<tabset v-ref:tabs :close="false">
|
|
13
|
+
<tab :header='selectdata.defname'>
|
|
14
|
+
<supervisory-service-control :selectdata="selectdata" :node-snapshot="true"></supervisory-service-control>
|
|
15
|
+
</tab>
|
|
16
|
+
<tab header='附件'>
|
|
17
|
+
<apply-upload :blodid="selectdata.f_process_id"
|
|
18
|
+
:isupload = "false"
|
|
19
|
+
:isdelete="false"
|
|
20
|
+
:isusetype="true"
|
|
21
|
+
:isremark = "true"
|
|
22
|
+
:takeimg="true"
|
|
23
|
+
:issearch="true"
|
|
24
|
+
:defname="selectdata.defname">
|
|
25
|
+
</apply-upload>
|
|
26
|
+
</tab>
|
|
27
|
+
<div>
|
|
28
|
+
<tab header='打印预览'>
|
|
29
|
+
<apply-print-charge-node :selectdata="selectdata" :charge="charge" v-ref:print></apply-print-charge-node>
|
|
30
|
+
</tab>
|
|
31
|
+
</div>
|
|
32
|
+
</tabset>
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
</div>
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
</template>
|
|
39
|
+
<script>
|
|
40
|
+
import Vue from 'vue'
|
|
41
|
+
import {HttpResetClass} from 'vue-client'
|
|
42
|
+
export default {
|
|
43
|
+
title: '流程监控',
|
|
44
|
+
data () {
|
|
45
|
+
return {
|
|
46
|
+
showtotal: false, // 控制详细信息显示
|
|
47
|
+
showData: true,
|
|
48
|
+
selectdata: {},
|
|
49
|
+
xmlname: '' // 配置文件名称
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
created () {
|
|
53
|
+
},
|
|
54
|
+
methods: {
|
|
55
|
+
print () {
|
|
56
|
+
this.$refs.print.$refs.print.PrintTable()
|
|
57
|
+
},
|
|
58
|
+
// 获取页面配置json文件
|
|
59
|
+
async loadName () {
|
|
60
|
+
let data = {
|
|
61
|
+
workname: this.selectdata.processname
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
let res = await this.$resetpost(
|
|
65
|
+
'rs/logic/ApplyGetConfigs',
|
|
66
|
+
{data: data},
|
|
67
|
+
{resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
Vue.prototype.$workflow_vue = res.data
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
events: {
|
|
74
|
+
'onMessage' (data) {
|
|
75
|
+
console.log('接收消息')
|
|
76
|
+
console.log(data)
|
|
77
|
+
if (data.type === 'apply-task') {
|
|
78
|
+
this.$refs.queryuser.$refs.cp.$refs.cri.search()
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
async 'apply' (val) {
|
|
82
|
+
this.selectdata = val
|
|
83
|
+
this.showtotal = false
|
|
84
|
+
|
|
85
|
+
// 获取配置文件
|
|
86
|
+
await this.loadName()
|
|
87
|
+
|
|
88
|
+
this.$refs.query.$refs.cp.pager = false
|
|
89
|
+
this.showData = false
|
|
90
|
+
|
|
91
|
+
this.showtotal = true
|
|
92
|
+
},
|
|
93
|
+
'search' () {
|
|
94
|
+
// 关闭详细
|
|
95
|
+
this.showtotal = false
|
|
96
|
+
// 显示列表数据
|
|
97
|
+
this.showData = true
|
|
98
|
+
// 显示分页
|
|
99
|
+
this.$refs.query.$refs.cp.pager = true
|
|
100
|
+
// 调用查询
|
|
101
|
+
this.$refs.query.$refs.cp.$refs.cri.search()
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
|
|
105
|
+
watch: {
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
</script>
|
|
@@ -168,6 +168,33 @@
|
|
|
168
168
|
title: '勘探详情',
|
|
169
169
|
props: ['showData'],
|
|
170
170
|
data () {
|
|
171
|
+
if(this.$login.f.orgs==='华东大区' || this.$login.f.orgs==='华中大区'|| this.$login.f.orgs==='华北大区' || this.$login.f.orgs==='东北大区'
|
|
172
|
+
||this.$login.f.orgs==='鲁北区域'|| this.$login.f.orgs==='广西区域' || this.$login.f.orgs==='苏皖区域'|| this.$login.f.orgs === '奥德装备集团'||
|
|
173
|
+
this.$login.f.orgs==='黑龙江区域'
|
|
174
|
+
){
|
|
175
|
+
return {
|
|
176
|
+
model: new PagedList('rs/sql/supervisorydq', 20, {
|
|
177
|
+
data: {
|
|
178
|
+
orgs: this.$login.f.orgs
|
|
179
|
+
}
|
|
180
|
+
}),
|
|
181
|
+
curorgid: [this.$login.f.orgid],
|
|
182
|
+
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
|
|
183
|
+
defnames: [{label: '全部', value: ''}], // 流程节点
|
|
184
|
+
criteriaShow: false
|
|
185
|
+
}}
|
|
186
|
+
if(this.$login.f.orgs==='设计院'){
|
|
187
|
+
return {
|
|
188
|
+
model: new PagedList('rs/sql/supervisorysjy', 20, {
|
|
189
|
+
data: {
|
|
190
|
+
orgid: this.$login.f.orgid
|
|
191
|
+
}
|
|
192
|
+
}),
|
|
193
|
+
curorgid: [this.$login.f.orgid],
|
|
194
|
+
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
|
|
195
|
+
defnames: [{label: '全部', value: ''}], // 流程节点
|
|
196
|
+
criteriaShow: false
|
|
197
|
+
}}
|
|
171
198
|
return {
|
|
172
199
|
model: new PagedList('rs/sql/supervisory', 20, {
|
|
173
200
|
data: {
|
|
@@ -178,8 +205,8 @@
|
|
|
178
205
|
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
|
|
179
206
|
defnames: [{label: '全部', value: ''}], // 流程节点
|
|
180
207
|
criteriaShow: false
|
|
181
|
-
|
|
182
|
-
|
|
208
|
+
}
|
|
209
|
+
},
|
|
183
210
|
ready () {
|
|
184
211
|
// 调用查询
|
|
185
212
|
this.search()
|