apply-clients 7.1.36-yuchuan-5 → 7.1.36-yuchuan-7
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 +187 -172
- package/index.html +39 -39
- package/package.json +2 -1
- package/src/apply.js +7 -0
- package/src/components/android/AppSign.vue +234 -234
- package/src/components/android/AppUpload.vue +275 -275
- package/src/components/android/Ignition/VentilationIgnitionHandle.vue +462 -462
- package/src/components/android/Process/AppServiceControl.vue +1437 -1437
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +344 -344
- package/src/components/android/Task/ShiGongXinXi/AppShowBuildUser.vue +431 -431
- package/src/components/android/Task/yiban/ShowDone.vue +95 -95
- package/src/components/android/Task/yiban/satisfactionShow.vue +166 -166
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +2 -2
- package/src/components/product/ApplyGaiXianCharge/ApplyGaiXianViewList.vue +272 -272
- package/src/components/product/ApplyGuanXian/GuanXianCaiLiao.vue +236 -236
- package/src/components/product/ApplyGuanXian/GuanXianExplorationSelect.vue +324 -324
- package/src/components/product/ApplyGuanXian/GuanXianSupervisoryhCart.vue +119 -119
- package/src/components/product/ApplyMap/ApplyDragaboutList.vue +223 -223
- package/src/components/product/ApplyMap/ApplyMapLocation.vue +862 -862
- package/src/components/product/ChongZheng/ApplyChongZhengList.vue +2 -2
- package/src/components/product/Function/InstallInfoSelect.vue +2 -2
- package/src/components/product/Function/Service/FunctionServiceControl.vue +586 -586
- package/src/components/product/GongJianPush/ApplyPushDispose.vue +206 -0
- package/src/components/product/GongJianPush/ApplyPushList.vue +196 -0
- package/src/components/product/GongJianPush/ApplyPushManage.vue +90 -0
- package/src/components/product/Ignition/IgnitionListManage.vue +602 -602
- package/src/components/product/Ignition/IgnitionRecord.vue +380 -380
- package/src/components/product/List/OldShowDevices.vue +2 -2
- package/src/components/product/List/ShowAllActivity.vue +2 -2
- package/src/components/product/List/ShowDevices.vue +2 -2
- package/src/components/product/Print/BuildOrder/buildOrderList.vue +1 -1
- package/src/components/product/Process/ExplorationSelect.vue +4 -4
- package/src/components/product/Process/NewExplorationSelect.vue +586 -586
- package/src/components/product/Process/Processes/Print/printCharge.vue +250 -250
- package/src/components/product/Process/Processes/Print/printGaiXianCharge.vue +244 -244
- package/src/components/product/Process/Processes/devicesManagement.vue +393 -393
- package/src/components/product/Process/Processes/newDevicesManagement.vue +413 -413
- package/src/components/product/Stop/StopApplyList.vue +1 -1
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +592 -592
- package/src/components/product/Supervisory/SupervisoryControl.vue +116 -116
- package/src/components/product/Supervisory/SupervisoryList.vue +3 -3
- package/src/components/product/Supervisory/YiBanSupervisoryList.vue +3 -3
- package/src/components/product/VueUtils/ApplyUpload.vue +285 -285
- package/src/components/product/records/AdjustmentRecordList.vue +162 -162
|
@@ -1,116 +1,116 @@
|
|
|
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
|
-
<new-supervisory-chart :selectdata="selectdata"></new-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
|
-
:source="source"
|
|
19
|
-
:isupload = "projectStart"
|
|
20
|
-
:isdelete="false"
|
|
21
|
-
:isusetype="true"
|
|
22
|
-
:isremark = "true"
|
|
23
|
-
:takeimg="false"
|
|
24
|
-
:issearch="true"
|
|
25
|
-
:defname="selectdata.defname">
|
|
26
|
-
</apply-upload>
|
|
27
|
-
</tab>
|
|
28
|
-
</tabset>
|
|
29
|
-
</div>
|
|
30
|
-
</div>
|
|
31
|
-
</div>
|
|
32
|
-
</div>
|
|
33
|
-
|
|
34
|
-
</template>
|
|
35
|
-
<script>
|
|
36
|
-
import Vue from 'vue'
|
|
37
|
-
import {HttpResetClass} from 'vue-client'
|
|
38
|
-
export default {
|
|
39
|
-
title: '流程监控',
|
|
40
|
-
data () {
|
|
41
|
-
return {
|
|
42
|
-
showtotal: false, // 控制详细信息显示
|
|
43
|
-
showData: true,
|
|
44
|
-
selectdata: {},
|
|
45
|
-
source: '流程查看',
|
|
46
|
-
xmlname: '' // 配置文件名称
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
created () {
|
|
50
|
-
},
|
|
51
|
-
methods: {
|
|
52
|
-
// 获取页面配置json文件
|
|
53
|
-
async loadName () {
|
|
54
|
-
let data = {
|
|
55
|
-
workname: this.selectdata.processname
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
let res = await this.$resetpost(
|
|
59
|
-
'rs/logic/ApplyGetConfigs',
|
|
60
|
-
{data: data},
|
|
61
|
-
{resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
|
|
62
|
-
)
|
|
63
|
-
|
|
64
|
-
Vue.prototype.$workflow_vue = res.data
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
events: {
|
|
68
|
-
'onMessage' (data) {
|
|
69
|
-
console.log('接收消息')
|
|
70
|
-
console.log(data)
|
|
71
|
-
if (data.type === 'apply-task') {
|
|
72
|
-
this.$refs.queryuser.$refs.cp.$refs.cri.search()
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
|
-
async 'apply' (val) {
|
|
76
|
-
this.selectdata = val
|
|
77
|
-
this.showtotal = false
|
|
78
|
-
|
|
79
|
-
// 获取配置文件
|
|
80
|
-
await this.loadName()
|
|
81
|
-
|
|
82
|
-
this.$refs.query.$refs.cp.pager = false
|
|
83
|
-
this.showData = false
|
|
84
|
-
|
|
85
|
-
this.showtotal = true
|
|
86
|
-
},
|
|
87
|
-
'search' () {
|
|
88
|
-
// 关闭详细
|
|
89
|
-
this.showtotal = false
|
|
90
|
-
// 显示列表数据
|
|
91
|
-
this.showData = true
|
|
92
|
-
// 显示分页
|
|
93
|
-
this.$refs.query.$refs.cp.pager = true
|
|
94
|
-
// 调用查询
|
|
95
|
-
this.$refs.query.$refs.cp.$refs.cri.search()
|
|
96
|
-
},
|
|
97
|
-
'loadPage' () {
|
|
98
|
-
// 关闭详细
|
|
99
|
-
this.showtotal = false
|
|
100
|
-
// 显示列表数据
|
|
101
|
-
this.showData = true
|
|
102
|
-
// 显示分页
|
|
103
|
-
this.$refs.query.$refs.cp.pager = true
|
|
104
|
-
// 调用查询
|
|
105
|
-
this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
|
|
106
|
-
}
|
|
107
|
-
},
|
|
108
|
-
computed: {
|
|
109
|
-
projectStart () {
|
|
110
|
-
return this.$login.r.includes('报装文件上传')
|
|
111
|
-
}
|
|
112
|
-
},
|
|
113
|
-
watch: {
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
</script>
|
|
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
|
+
<new-supervisory-chart :selectdata="selectdata"></new-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
|
+
:source="source"
|
|
19
|
+
:isupload = "projectStart"
|
|
20
|
+
:isdelete="false"
|
|
21
|
+
:isusetype="true"
|
|
22
|
+
:isremark = "true"
|
|
23
|
+
:takeimg="false"
|
|
24
|
+
:issearch="true"
|
|
25
|
+
:defname="selectdata.defname">
|
|
26
|
+
</apply-upload>
|
|
27
|
+
</tab>
|
|
28
|
+
</tabset>
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
|
|
34
|
+
</template>
|
|
35
|
+
<script>
|
|
36
|
+
import Vue from 'vue'
|
|
37
|
+
import {HttpResetClass} from 'vue-client'
|
|
38
|
+
export default {
|
|
39
|
+
title: '流程监控',
|
|
40
|
+
data () {
|
|
41
|
+
return {
|
|
42
|
+
showtotal: false, // 控制详细信息显示
|
|
43
|
+
showData: true,
|
|
44
|
+
selectdata: {},
|
|
45
|
+
source: '流程查看',
|
|
46
|
+
xmlname: '' // 配置文件名称
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
created () {
|
|
50
|
+
},
|
|
51
|
+
methods: {
|
|
52
|
+
// 获取页面配置json文件
|
|
53
|
+
async loadName () {
|
|
54
|
+
let data = {
|
|
55
|
+
workname: this.selectdata.processname
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
let res = await this.$resetpost(
|
|
59
|
+
'rs/logic/ApplyGetConfigs',
|
|
60
|
+
{data: data},
|
|
61
|
+
{resolveMsg: null, rejectMsg: '配置数据获取失败!!!'}
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
Vue.prototype.$workflow_vue = res.data
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
events: {
|
|
68
|
+
'onMessage' (data) {
|
|
69
|
+
console.log('接收消息')
|
|
70
|
+
console.log(data)
|
|
71
|
+
if (data.type === 'apply-task') {
|
|
72
|
+
this.$refs.queryuser.$refs.cp.$refs.cri.search()
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
async 'apply' (val) {
|
|
76
|
+
this.selectdata = val
|
|
77
|
+
this.showtotal = false
|
|
78
|
+
|
|
79
|
+
// 获取配置文件
|
|
80
|
+
await this.loadName()
|
|
81
|
+
|
|
82
|
+
this.$refs.query.$refs.cp.pager = false
|
|
83
|
+
this.showData = false
|
|
84
|
+
|
|
85
|
+
this.showtotal = true
|
|
86
|
+
},
|
|
87
|
+
'search' () {
|
|
88
|
+
// 关闭详细
|
|
89
|
+
this.showtotal = false
|
|
90
|
+
// 显示列表数据
|
|
91
|
+
this.showData = true
|
|
92
|
+
// 显示分页
|
|
93
|
+
this.$refs.query.$refs.cp.pager = true
|
|
94
|
+
// 调用查询
|
|
95
|
+
this.$refs.query.$refs.cp.$refs.cri.search()
|
|
96
|
+
},
|
|
97
|
+
'loadPage' () {
|
|
98
|
+
// 关闭详细
|
|
99
|
+
this.showtotal = false
|
|
100
|
+
// 显示列表数据
|
|
101
|
+
this.showData = true
|
|
102
|
+
// 显示分页
|
|
103
|
+
this.$refs.query.$refs.cp.pager = true
|
|
104
|
+
// 调用查询
|
|
105
|
+
this.$refs.query.$refs.cp.loadPage(this.$refs.query.model.pageIndex)
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
computed: {
|
|
109
|
+
projectStart () {
|
|
110
|
+
return this.$login.r.includes('报装文件上传')
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
watch: {
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
</script>
|
|
@@ -355,16 +355,16 @@
|
|
|
355
355
|
return {
|
|
356
356
|
model: new PagedList('rs/sql/supervisory', 20, {
|
|
357
357
|
data: {
|
|
358
|
-
f_filiale: this.$login.f.f_fengongsi
|
|
358
|
+
f_filiale: this.$login.f.f_fengongsi?this.$login.f.f_fengongsi:''
|
|
359
359
|
},
|
|
360
360
|
}),
|
|
361
|
-
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
|
|
361
|
+
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')?this.$appdata.getParam('报建类型'):[]],
|
|
362
362
|
defnames: isEmpty(this.$appdata.getParam('办理环节')) ? [{label: '全部', value: ''}] : [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')], // 流程节点
|
|
363
363
|
applyNatures: [{label: '全部', value: ''},{label: '工业', value: '工业'},{label: '商业', value: '商业'},{label: '散户', value: '散户'},{label: '小区', value: '小区'},{label: '分户挂表', value: '分户挂表'}], // 报建性质
|
|
364
364
|
criteriaShow: false,
|
|
365
365
|
sources:[{label: '微信公众号', value: '微信公众号'},{label: '线下发起', value: '线下发起'}],
|
|
366
366
|
filetype:[{label: '已上传图纸', value: 'is not null'}, {label: '未上传图纸', value: 'is null'}],
|
|
367
|
-
UserList:[{label: '全部', value: ''}, ...this.$appdata.getParam('用户分类')],
|
|
367
|
+
UserList:[{label: '全部', value: ''}, ...this.$appdata.getParam('用户分类')?this.$appdata.getParam('用户分类'):[]],
|
|
368
368
|
UserType:[{label: '全部', value: ''}, {label: '普通用户', value: '普通用户'}, {label: '煤改用户', value: '煤改用户'}],
|
|
369
369
|
designerPeoples: this.getDesigner(),
|
|
370
370
|
dispatching: [{label: '全部', value: ''}, {label: '施工工队', value: '施工工队'}, {label: '安检维修中心', value: '安检维修中心'}],
|
|
@@ -338,16 +338,16 @@
|
|
|
338
338
|
return {
|
|
339
339
|
model: new PagedList('rs/sql/yiBanSupervisory', 20, {
|
|
340
340
|
data: {
|
|
341
|
-
f_filiale: this.$login.f.f_fengongsi
|
|
341
|
+
f_filiale: this.$login.f.f_fengongsi?this.$login.f.f_fengongsi:''
|
|
342
342
|
},
|
|
343
343
|
}),
|
|
344
|
-
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
|
|
344
|
+
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')?this.$appdata.getParam('报建类型'):[]],
|
|
345
345
|
defnames: isEmpty(this.$appdata.getParam('办理环节')) ? [{label: '全部', value: ''}] : [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')], // 流程节点
|
|
346
346
|
applyNatures: [{label: '全部', value: ''},{label: '工业', value: '工业'},{label: '商业', value: '商业'},{label: '散户', value: '散户'},{label: '小区', value: '小区'},{label: '分户挂表', value: '分户挂表'}], // 报建性质
|
|
347
347
|
criteriaShow: false,
|
|
348
348
|
sources:[{label: '微信公众号', value: '微信公众号'},{label: '线下发起', value: '线下发起'}],
|
|
349
349
|
filetype:[{label: '已上传图纸', value: 'is not null'}, {label: '未上传图纸', value: 'is null'}],
|
|
350
|
-
UserList:[{label: '全部', value: ''}, ...this.$appdata.getParam('用户分类')],
|
|
350
|
+
UserList:[{label: '全部', value: ''}, ...this.$appdata.getParam('用户分类')?this.$appdata.getParam('用户分类'):[]],
|
|
351
351
|
UserType:[{label: '全部', value: ''}, {label: '普通用户', value: '普通用户'}, {label: '煤改用户', value: '煤改用户'}],
|
|
352
352
|
designerPeoples: this.getDesigner(),
|
|
353
353
|
dispatching: [{label: '全部', value: ''}, {label: '施工工队', value: '施工工队'}, {label: '安检维修中心', value: '安检维修中心'}],
|