apply-clients 7.1.36-1 → 7.1.36-yuchuan-1
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/build/dev-server.js +8 -2
- package/dist-android.7z +0 -0
- package/dist.7z +0 -0
- package/package.json +1 -1
- package/src/apply.js +31 -4
- package/src/applyAndroid.js +5 -0
- package/src/components/android/AppSign.vue +13 -10
- package/src/components/android/Process/AppExplorationUser.vue +454 -454
- package/src/components/android/Process/AppServiceControl.vue +3 -3
- package/src/components/android/Process/Processes/AppChaiChuInfo.vue +546 -0
- package/src/components/android/Process/Processes/AppDevicesManagement.vue +2 -1
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +69 -20
- package/src/components/android/Process/Processes/newAppDevicesManagement.vue +2 -1
- package/src/components/android/Process/Processes/newAppInstallationDetails.vue +5 -5
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +334 -298
- package/src/components/android/Task/ShenHe/BuZhangShenHe.vue +64 -0
- package/src/components/android/Task/ShenHe/JingLiShenHe.vue +64 -0
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +27 -0
- package/src/components/product/ApplyGaiXianCharge/ApplyGaiXianChargeList.vue +198 -0
- package/src/components/product/ApplyGaiXianCharge/ApplyGaiXianChargeSearch.vue +30 -0
- package/src/components/product/ApplyGuanXian/GuanXianCaiLiao.vue +235 -0
- package/src/components/product/ApplyGuanXian/GuanXianExplorationSelect.vue +323 -0
- package/src/components/product/ApplyGuanXian/GuanXianExplorationUser.vue +144 -0
- package/src/components/product/ApplyGuanXian/GuanXianSupervisoryhCart.vue +119 -0
- package/src/components/product/ApplyGuanXian/TabButton.vue +157 -0
- package/src/components/product/ApplyGuanXian/Tabs.vue +67 -0
- package/src/components/product/Function/InstallInfoSelect.vue +3 -4
- package/src/components/product/Function/Service/FunctionServiceControl.vue +475 -475
- package/src/components/product/Ignition/IgnitionList.vue +236 -232
- package/src/components/product/Ignition/IgnitionListManage.vue +69 -28
- package/src/components/product/Ignition/IgnitionRecord.vue +56 -17
- package/src/components/product/List/ShowDevices.vue +279 -277
- package/src/components/product/Print/OrderPrint/printChaiChuOrder.vue +260 -0
- package/src/components/product/Process/ExplorationSelect.vue +580 -566
- package/src/components/product/Process/ExplorationUser.vue +158 -155
- package/src/components/product/Process/NewExplorationUser.vue +184 -0
- package/src/components/product/Process/Processes/ApplyChaiChuInfo.vue +587 -0
- package/src/components/product/Process/Processes/InstallationDetails.vue +86 -33
- package/src/components/product/Process/Processes/Print/printCharge.vue +5 -1
- package/src/components/product/Process/Processes/Print/printPaymentApproval.vue +224 -221
- package/src/components/product/Process/Processes/Print/printPaymentSubject.vue +170 -0
- package/src/components/product/Process/Processes/chargeManagement.vue +24 -6
- package/src/components/product/Process/Processes/devicesManagement.vue +2 -1
- package/src/components/product/Process/Processes/newInstallationDetails.vue +3 -3
- package/src/components/product/Process/Processes/selectChaiChuUserinfo.vue +230 -0
- package/src/components/product/Process/Service/ServiceControl.vue +169 -14
- package/src/components/product/Report/ReportItems.vue +79 -0
- package/src/components/product/Report/apply-stair-anzhuang.vue +361 -0
- package/src/components/product/Report/apply-stair-kaifa.vue +138 -0
- package/src/components/product/Report/apply-stair-tongqi.vue +137 -0
- package/src/components/product/Report/apply-stair-wtongqi.vue +138 -0
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +37 -8
- package/src/components/product/Supervisory/SupervisoryList.vue +77 -26
- package/static/images/lefticon//347/273/274/345/220/210/344/270/232/345/212/241.png +0 -0
- package/static/images/lefticon//347/273/274/345/220/210/346/237/245/350/257/242.png +0 -0
|
@@ -0,0 +1,323 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
4
|
+
<criteria partial='criteria' @condition-changed='$parent.searchCondition' v-ref:cri>
|
|
5
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
6
|
+
<div class="row">
|
|
7
|
+
<div class="form-group col-sm-2">
|
|
8
|
+
<label class="font_normal_body">管线编号:</label>
|
|
9
|
+
<input type="text" style="width:60%" class="input_search" placeholder='管线编号' v-model="model.f_apply_num"
|
|
10
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
11
|
+
condition="f_apply_num like '%{}%'">
|
|
12
|
+
</div>
|
|
13
|
+
<div class="form-group col-sm-2">
|
|
14
|
+
<label class="font_normal_body">工程名称:</label>
|
|
15
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
16
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="f_address_name like '%{}%'" placeholder='道路名'>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="form-group col-sm-2">
|
|
19
|
+
<label class="font_normal_body">办理环节:</label>
|
|
20
|
+
<v-select
|
|
21
|
+
v-model="model.defname"
|
|
22
|
+
placeholder='办理环节'
|
|
23
|
+
condition="defname = '{}'"
|
|
24
|
+
:value.sync="model.defname"
|
|
25
|
+
:options='$parent.$parent.defnames'
|
|
26
|
+
class="select select_list"
|
|
27
|
+
:value-single="true"
|
|
28
|
+
close-on-select ></v-select>
|
|
29
|
+
</div>
|
|
30
|
+
<div class="form-group col-sm-3 button-range">
|
|
31
|
+
<button class="button_new button_spacing" style="width: max-content"
|
|
32
|
+
v-if="$parent.$parent.projectStart"
|
|
33
|
+
@click="$parent.$parent.showModal = !$parent.$parent.showModal">工程发起</button>
|
|
34
|
+
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
35
|
+
<button class="button_search button_spacing" @click="$parent.$parent.loadPage()">返回</button>
|
|
36
|
+
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
</criteria>
|
|
41
|
+
<data-grid v-if="$parent.showData" :model="model" partial='list' v-ref:grid class="list_area table_sy" style="height: 100%">
|
|
42
|
+
<template partial='head'>
|
|
43
|
+
<tr>
|
|
44
|
+
<th style="white-space: nowrap;">序号</th>
|
|
45
|
+
<th style="white-space: nowrap;">完成状态</th>
|
|
46
|
+
<th style="white-space: nowrap;">管线编号</th>
|
|
47
|
+
<th style="white-space: nowrap;">工程名称</th>
|
|
48
|
+
<th style="white-space: nowrap;">办理环节</th>
|
|
49
|
+
<th style="white-space: nowrap;">流程状态</th>
|
|
50
|
+
<th style="white-space: nowrap;">流程开始时间</th>
|
|
51
|
+
</tr>
|
|
52
|
+
</template>
|
|
53
|
+
<template partial='body'>
|
|
54
|
+
<tr >
|
|
55
|
+
<td @click="$parent.$parent.$parent.click(row)" :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
|
|
56
|
+
<nobr><font>{{$index+1}}</font></nobr>
|
|
57
|
+
</td>
|
|
58
|
+
<td @click="$parent.$parent.$parent.click(row)" :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
|
|
59
|
+
<nobr><font>{{row.f_sub_save_state}}</font></nobr>
|
|
60
|
+
</td>
|
|
61
|
+
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
|
|
62
|
+
<nobr><font>{{row.f_apply_num}}</font></nobr>
|
|
63
|
+
</td>
|
|
64
|
+
<td @click="$parent.$parent.$parent.click(row)" :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
|
|
65
|
+
<nobr><font>{{row.f_address_name}}</font></nobr>
|
|
66
|
+
</td>
|
|
67
|
+
<td @click="$parent.$parent.$parent.click(row)" :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
|
|
68
|
+
<nobr><font>{{row.defname}}</font></nobr>
|
|
69
|
+
</td>
|
|
70
|
+
<td @click="$parent.$parent.$parent.click(row)" :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
|
|
71
|
+
<nobr><font>{{row.f_sub_state}}</font></nobr>
|
|
72
|
+
</td>
|
|
73
|
+
<td @click="$parent.$parent.$parent.click(row)" :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
|
|
74
|
+
<nobr><font>{{row.sendtime}}</font></nobr>
|
|
75
|
+
</td>
|
|
76
|
+
<!-- <td @click="$parent.$parent.$parent.click(row)" :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">-->
|
|
77
|
+
<!-- <dropdown>-->
|
|
78
|
+
<!-- <button type="button" data-toggle="dropdown" style="border: 0px;background: none;">-->
|
|
79
|
+
<!-- <span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>-->
|
|
80
|
+
<!-- </button>-->
|
|
81
|
+
<!-- <ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">-->
|
|
82
|
+
<!-- <li>-->
|
|
83
|
+
<!-- <a href="#" @click="$parent.$parent.$parent.click(row)">{{row.defname}}</a>-->
|
|
84
|
+
<!-- </li>-->
|
|
85
|
+
<!-- </ul>-->
|
|
86
|
+
<!-- </dropdown>-->
|
|
87
|
+
<!-- </td>-->
|
|
88
|
+
</tr>
|
|
89
|
+
</template>
|
|
90
|
+
</data-grid>
|
|
91
|
+
</criteria-paged>
|
|
92
|
+
|
|
93
|
+
<modal
|
|
94
|
+
v-if="showModal"
|
|
95
|
+
:show.sync="showModal"
|
|
96
|
+
backdrop="false"
|
|
97
|
+
title="工程类型"
|
|
98
|
+
cancel-text="取消"
|
|
99
|
+
ok-text="确认"
|
|
100
|
+
:callback="apply"
|
|
101
|
+
>
|
|
102
|
+
<div class="form-horizontal" slot="modal-body">
|
|
103
|
+
<div class="form-group" style="margin: 10px auto">
|
|
104
|
+
<label class="col-sm-3 control-label">报建类型:</label>
|
|
105
|
+
<div class="col-sm-9">
|
|
106
|
+
<v-select
|
|
107
|
+
v-model="applyType"
|
|
108
|
+
placeholder='请选择需要发起的工程类型'
|
|
109
|
+
:value.sync="applyType"
|
|
110
|
+
:options='apply_types'
|
|
111
|
+
:value-single="true"
|
|
112
|
+
class="select select_list"
|
|
113
|
+
:search="false"
|
|
114
|
+
close-on-select ></v-select>
|
|
115
|
+
</div>
|
|
116
|
+
</div>
|
|
117
|
+
</div>
|
|
118
|
+
</modal>
|
|
119
|
+
</div>
|
|
120
|
+
</template>
|
|
121
|
+
<script>
|
|
122
|
+
import {HttpResetClass, PagedList} from 'vue-client'
|
|
123
|
+
import {isEmpty} from '../../Util'
|
|
124
|
+
|
|
125
|
+
export default {
|
|
126
|
+
title: '工程列表',
|
|
127
|
+
props: ['showData'],
|
|
128
|
+
data () {
|
|
129
|
+
return {
|
|
130
|
+
model: new PagedList('rs/sql/getGuanXianApply', 20, {
|
|
131
|
+
data: {
|
|
132
|
+
userid: this.$login.f.id,
|
|
133
|
+
f_filiale: this.$login.f.f_fengongsi
|
|
134
|
+
}
|
|
135
|
+
}),
|
|
136
|
+
showModal: false, // 控制发起类型选择
|
|
137
|
+
defnames: isEmpty(this.$appdata.getParam('管线建设环节')) ? [{label: '全部', value: ''}] : [{label: '全部', value: ''}, ...this.$appdata.getParam('管线建设环节')], // 流程节点
|
|
138
|
+
save_states: [{label: '全部', value: ''},{label: '已完成', value: '已完成'},{label: '已退回', value: '已退回'}], // 报建性质
|
|
139
|
+
apply_types: [{label: '管线建设', value: '管线建设'}],
|
|
140
|
+
designerPeoples: this.getDesigner(),
|
|
141
|
+
criteriaShow: false,
|
|
142
|
+
getfield: {
|
|
143
|
+
'f_apply_num': ' 工 程 编 号 ',
|
|
144
|
+
'f_user_name': ' 客 户 名 称 ',
|
|
145
|
+
'f_contact': ' 联 系 人 ',
|
|
146
|
+
'f_phone': ' 电 话 ',
|
|
147
|
+
'f_user_type': ' 用户类型 ',
|
|
148
|
+
'f_user_classification': ' 用户分类 ',
|
|
149
|
+
'f_address': ' 地 址 ',
|
|
150
|
+
'f_apply_type': ' 报 建 类 型 ',
|
|
151
|
+
'f_apply_nature': ' 报 建 性 质 ',
|
|
152
|
+
'defname': ' 办 理 环 节 ',
|
|
153
|
+
'f_install_count': ' 安装户数 ',
|
|
154
|
+
'f_designer_people':' 设计人员 '
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
ready () {
|
|
159
|
+
// 调用查询
|
|
160
|
+
this.search()
|
|
161
|
+
},
|
|
162
|
+
methods: {
|
|
163
|
+
// 点击操作
|
|
164
|
+
click (val) {
|
|
165
|
+
this.$dispatch('apply', val)
|
|
166
|
+
},
|
|
167
|
+
// 获取流程id
|
|
168
|
+
async getProcessId(processname) {
|
|
169
|
+
let data = {
|
|
170
|
+
workname: processname
|
|
171
|
+
}
|
|
172
|
+
let http = new HttpResetClass()
|
|
173
|
+
let res = await http.load(
|
|
174
|
+
'POST',
|
|
175
|
+
'rs/logic/getProcessId',
|
|
176
|
+
{data: data},
|
|
177
|
+
{resolveMsg: null, rejectMsg: '流程标识获取失败!!!'}
|
|
178
|
+
)
|
|
179
|
+
|
|
180
|
+
return res.data
|
|
181
|
+
},
|
|
182
|
+
// 报装申请
|
|
183
|
+
async apply () {
|
|
184
|
+
if (this.applyType === '' || this.applyType === null) {
|
|
185
|
+
this.$showAlert('请选择需要发起的类型', 'warning', 3000)
|
|
186
|
+
return
|
|
187
|
+
}
|
|
188
|
+
let data = {
|
|
189
|
+
f_apply_type: this.applyType
|
|
190
|
+
}
|
|
191
|
+
if (this.applyType === '管线建设') {
|
|
192
|
+
data.processname = '管线建设流程'
|
|
193
|
+
data.defname = '管线建设登记'
|
|
194
|
+
}
|
|
195
|
+
// if (this.$login.f.rolesnames.includes('工程部派工')){
|
|
196
|
+
// if (this.applyType === '管线建设') {
|
|
197
|
+
// data.processname = '管线建设流程'
|
|
198
|
+
// data.defname = '管线建设登记'
|
|
199
|
+
// } else {
|
|
200
|
+
// this.$showMessage('您没有权限办理此业务,或者暂无此类报装')
|
|
201
|
+
// return
|
|
202
|
+
// }
|
|
203
|
+
// } else {
|
|
204
|
+
// this.$showMessage('您没有权限办理此业务,或者暂无此类报装')
|
|
205
|
+
// return
|
|
206
|
+
// }
|
|
207
|
+
|
|
208
|
+
data.f_sub_state = "新增"
|
|
209
|
+
data.f_apply_source = "线下发起"
|
|
210
|
+
data.f_process_id = await this.getProcessId(data.processname)
|
|
211
|
+
|
|
212
|
+
// 调用ExplorationUser事件
|
|
213
|
+
this.$dispatch('apply', data)
|
|
214
|
+
|
|
215
|
+
this.applyType = null
|
|
216
|
+
this.showModal = false
|
|
217
|
+
},
|
|
218
|
+
loadPage () {
|
|
219
|
+
this.$dispatch('loadPage')
|
|
220
|
+
},
|
|
221
|
+
searchCondition (args) {
|
|
222
|
+
|
|
223
|
+
this.model.search(args.condition, args.model)
|
|
224
|
+
|
|
225
|
+
console.log("当前数据",this.model)
|
|
226
|
+
},
|
|
227
|
+
search () {
|
|
228
|
+
this.$dispatch('search')
|
|
229
|
+
},
|
|
230
|
+
async getDesigner() {
|
|
231
|
+
let data = {
|
|
232
|
+
source: 'this.getParentByType($organization$).getChildByName($设计人员$).getChildren()',
|
|
233
|
+
userid: this.$login.f.id
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
let res = await this.$resetpost(
|
|
237
|
+
'rs/search',
|
|
238
|
+
{data: data},
|
|
239
|
+
{resolveMsg: null, rejectMsg: '设计人员人员查询失败!!!'}
|
|
240
|
+
)
|
|
241
|
+
console.log("ces",res.data.map(item => {
|
|
242
|
+
return {
|
|
243
|
+
label: item.name,
|
|
244
|
+
value: item.name
|
|
245
|
+
}
|
|
246
|
+
}))
|
|
247
|
+
this.designerPeoples = res.data.map(item => {
|
|
248
|
+
return {
|
|
249
|
+
label: item.name,
|
|
250
|
+
value: item.name
|
|
251
|
+
}
|
|
252
|
+
})
|
|
253
|
+
},
|
|
254
|
+
clear () {
|
|
255
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
256
|
+
this.$refs.cp.$refs.cri.model[key] = null
|
|
257
|
+
})
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
computed: {
|
|
261
|
+
projectStart () {
|
|
262
|
+
return this.$login.r.includes('报建发起')
|
|
263
|
+
},
|
|
264
|
+
getLoginDepartment(){
|
|
265
|
+
return this.$login.f.rolesnames.includes('市场部报装')
|
|
266
|
+
},
|
|
267
|
+
getCondition () {
|
|
268
|
+
return {
|
|
269
|
+
condition: this.$refs.cp.$refs.cri.condition,
|
|
270
|
+
data: {
|
|
271
|
+
userid: this.$login.f.id,
|
|
272
|
+
f_filiale: this.$login.f.f_fengongsi
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
watch: {
|
|
278
|
+
'model.rows': {
|
|
279
|
+
handler: function () {
|
|
280
|
+
let isover = [] // 过期(超时)数据
|
|
281
|
+
let isbeforeover = [] // 未过期 提前提醒
|
|
282
|
+
for (let i = 0; i < this.model.rows.length; i++) {
|
|
283
|
+
let item = this.model.rows[i]
|
|
284
|
+
if (item.isover === '过期') {
|
|
285
|
+
isover.push(i + 1)
|
|
286
|
+
}
|
|
287
|
+
if (item.isbeforeover === '预期提醒') {
|
|
288
|
+
isbeforeover.push(i + 1)
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
let msg = null
|
|
292
|
+
if (isover.length > 0) {
|
|
293
|
+
msg = `第${isover.toString()}条数据已过期`
|
|
294
|
+
this.$showAlert(msg, 'warning', 3000)
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
if (isbeforeover.length > 0) {
|
|
298
|
+
msg = `第${isbeforeover.toString()}条数据即将过期`
|
|
299
|
+
if (isover.length > 0) {
|
|
300
|
+
setTimeout(() => {
|
|
301
|
+
this.$showAlert(msg, 'warning', 3000)
|
|
302
|
+
}, 4000)
|
|
303
|
+
} else {
|
|
304
|
+
this.$showAlert(msg, 'warning', 3000)
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
events: {
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
</script>
|
|
314
|
+
<style scoped>
|
|
315
|
+
|
|
316
|
+
.p1 {
|
|
317
|
+
color: #dc0b12;
|
|
318
|
+
font-weight:bold
|
|
319
|
+
}
|
|
320
|
+
.p {
|
|
321
|
+
color: #ffaf4f;
|
|
322
|
+
}
|
|
323
|
+
</style>
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex-row">
|
|
3
|
+
<div class="basic-main">
|
|
4
|
+
<div :class="showData ? 'top' : 'auto'">
|
|
5
|
+
<guan-xian-exploration-select v-ref:query :show-data="showData"></guan-xian-exploration-select>
|
|
6
|
+
</div>
|
|
7
|
+
<div v-if="showtotal" style="height: 89%">
|
|
8
|
+
<div class="col-sm-2" style="margin-top: 20px">
|
|
9
|
+
<guan-xian-supervisoryh-cart :selectdata="selectdata"></guan-xian-supervisoryh-cart>
|
|
10
|
+
</div>
|
|
11
|
+
<tabset v-ref:tabs :close="false" :active.sync="active">
|
|
12
|
+
<tab :header='selectdata.defname'>
|
|
13
|
+
<service-control v-ref:service :selectdata="selectdata"></service-control>
|
|
14
|
+
</tab>
|
|
15
|
+
<tab header='附件'>
|
|
16
|
+
<apply-upload :blodid="selectdata.f_process_id"
|
|
17
|
+
:isupload = "true"
|
|
18
|
+
:isdelete="true"
|
|
19
|
+
:isusetype="true"
|
|
20
|
+
:isremark = "true"
|
|
21
|
+
:takeimg="true"
|
|
22
|
+
:issearch="true"
|
|
23
|
+
:defname="selectdata.defname">
|
|
24
|
+
</apply-upload>
|
|
25
|
+
</tab>
|
|
26
|
+
</tabset>
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
</template>
|
|
31
|
+
<script>
|
|
32
|
+
import Vue from 'vue'
|
|
33
|
+
import {HttpResetClass} from 'vue-client'
|
|
34
|
+
export default {
|
|
35
|
+
title: '管线建设流程',
|
|
36
|
+
data () {
|
|
37
|
+
return {
|
|
38
|
+
showData: true, // 控制列表数据
|
|
39
|
+
showtotal: false, // 详情显示
|
|
40
|
+
selectdata: {},
|
|
41
|
+
xmlname: '', // 配置文件名
|
|
42
|
+
active: 0 // 配置文件名
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
ready () {
|
|
46
|
+
console.log('=============用户信息=================')
|
|
47
|
+
console.log(this.$login.f)
|
|
48
|
+
console.log(this.$login.r)
|
|
49
|
+
},
|
|
50
|
+
methods: {
|
|
51
|
+
// 获取页面配置json文件
|
|
52
|
+
async loadName () {
|
|
53
|
+
|
|
54
|
+
let data = {
|
|
55
|
+
workname: this.selectdata.processname
|
|
56
|
+
}
|
|
57
|
+
let res = await this.$resetpost(
|
|
58
|
+
'rs/logic/ApplyGetConfigs',
|
|
59
|
+
{data: data},
|
|
60
|
+
{resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
|
|
61
|
+
)
|
|
62
|
+
|
|
63
|
+
Vue.prototype.$workflow_vue = res.data
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
events: {
|
|
67
|
+
'onMessage' (data) {
|
|
68
|
+
console.log('接收消息')
|
|
69
|
+
console.log(data)
|
|
70
|
+
if (data.type === 'apply-task') {
|
|
71
|
+
this.$refs.query.$refs.cp.$refs.cri.search()
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
// 刷新控制层
|
|
75
|
+
async 'breakControl' (servicedata) {
|
|
76
|
+
|
|
77
|
+
if (servicedata.id) {
|
|
78
|
+
let data = {
|
|
79
|
+
condition: `u.id = ${servicedata.id}`,
|
|
80
|
+
data: {
|
|
81
|
+
userid: this.$login.f.id,
|
|
82
|
+
f_filiale: this.$login.f.f_fengongsi
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
let res = await this.$resetpost(
|
|
86
|
+
'rs/sql/getGuanXianApply',
|
|
87
|
+
{data: data},
|
|
88
|
+
{resolveMsg: null, rejectMsg: '数据更新失败,请手查询更新!!!'}
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
this.selectdata = res.data[0]
|
|
92
|
+
} else {
|
|
93
|
+
this.selectdata = servicedata
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
this.showtotal = false
|
|
97
|
+
this.$nextTick(() => {
|
|
98
|
+
this.showtotal = true
|
|
99
|
+
})
|
|
100
|
+
|
|
101
|
+
},
|
|
102
|
+
// 初始化
|
|
103
|
+
async 'apply' (val) {
|
|
104
|
+
this.showtotal = false
|
|
105
|
+
this.selectdata = val
|
|
106
|
+
|
|
107
|
+
// 次方法必须同步执行,否则后续会出问题
|
|
108
|
+
// 获取页面json配置文件
|
|
109
|
+
await this.loadName()
|
|
110
|
+
|
|
111
|
+
// 显示详细
|
|
112
|
+
this.showtotal = true
|
|
113
|
+
// 关闭列表数据
|
|
114
|
+
this.showData = false
|
|
115
|
+
// 关闭分页
|
|
116
|
+
this.$refs.query.$refs.cp.pager = false
|
|
117
|
+
},
|
|
118
|
+
'search' () {
|
|
119
|
+
this.selectdata = {}
|
|
120
|
+
// 关闭详细
|
|
121
|
+
this.showtotal = false
|
|
122
|
+
// 显示列表数据
|
|
123
|
+
this.showData = true
|
|
124
|
+
// 显示分页
|
|
125
|
+
this.$refs.query.$refs.cp.pager = true
|
|
126
|
+
// 调用查询
|
|
127
|
+
this.$refs.query.$refs.cp.$refs.cri.search()
|
|
128
|
+
},
|
|
129
|
+
'loadPage' () {
|
|
130
|
+
this.selectdata = {}
|
|
131
|
+
// 关闭详细
|
|
132
|
+
this.showtotal = false
|
|
133
|
+
// 显示列表数据
|
|
134
|
+
this.showData = true
|
|
135
|
+
// 显示分页
|
|
136
|
+
this.$refs.query.$refs.cp.pager = true
|
|
137
|
+
// 调用查询
|
|
138
|
+
this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
watch: {
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
</script>
|
|
@@ -0,0 +1,119 @@
|
|
|
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
|
+
|
|
32
|
+
let data = {
|
|
33
|
+
processid: this.selectdata.f_process_id
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
let res = await this.$resetpost(
|
|
37
|
+
'rs/sql/getAllNode',
|
|
38
|
+
{data: data},
|
|
39
|
+
{resolveMsg: null, rejectMsg: '流程节点信息获取失败!!!'}
|
|
40
|
+
)
|
|
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
|
+
// 检测是否有权限
|
|
60
|
+
check (actorexpression){
|
|
61
|
+
let str = null
|
|
62
|
+
|
|
63
|
+
if (isEmpty(actorexpression)) {
|
|
64
|
+
return true
|
|
65
|
+
}
|
|
66
|
+
return true
|
|
67
|
+
if (actorexpression.indexOf('D') === 0) {
|
|
68
|
+
str = actorexpression.substring(2, actorexpression.length-1)
|
|
69
|
+
return this.$login.f.f_parentname.includes(str)
|
|
70
|
+
}
|
|
71
|
+
if (actorexpression.indexOf('RS') === 0) {
|
|
72
|
+
for (str of actorexpression.substring(3, actorexpression.length-1).split(',')) {
|
|
73
|
+
return this.$login.f.rolesnames.includes(str)
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
if (actorexpression.indexOf('R') === 0) {
|
|
78
|
+
str = actorexpression.substring(2, actorexpression.length-1)
|
|
79
|
+
return this.$login.f.rolesnames.includes(str)
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
if (actorexpression.indexOf('PI') === 0) {
|
|
83
|
+
str = actorexpression.substring(3, actorexpression.length-1)
|
|
84
|
+
return this.$login.f.id.includes(str)
|
|
85
|
+
}
|
|
86
|
+
if (actorexpression.indexOf('P') === 0) {
|
|
87
|
+
str = actorexpression.substring(2, actorexpression.length-1)
|
|
88
|
+
return this.$login.f.name.includes(str)
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
return this.$login.f.rolesnames.includes('流程监控')
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
watch:{
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
</script>
|
|
98
|
+
|
|
99
|
+
<style scoped>
|
|
100
|
+
.row{
|
|
101
|
+
text-align: center;
|
|
102
|
+
height: auto;
|
|
103
|
+
margin-right: 20px;
|
|
104
|
+
}
|
|
105
|
+
.item{
|
|
106
|
+
border-radius: 2em;
|
|
107
|
+
border: 1px solid silver;
|
|
108
|
+
line-height: 25px;
|
|
109
|
+
}
|
|
110
|
+
.arrow{
|
|
111
|
+
width: 100%;
|
|
112
|
+
color: #5ac0d9;
|
|
113
|
+
font-weight: bold;
|
|
114
|
+
}
|
|
115
|
+
.selectIndex{
|
|
116
|
+
background-color: #5ac0d9;
|
|
117
|
+
color: #ffffff;
|
|
118
|
+
}
|
|
119
|
+
</style>
|