apply-clients 3.2.32 → 3.2.37
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/package.json +1 -1
- package/src/AndroidApp.vue +26 -26
- package/src/App.vue +20 -20
- package/src/apply.js +67 -67
- package/src/applyAndroid.js +24 -24
- package/src/components/Util.js +359 -359
- package/src/components/app_apply/AppOnetomany.vue +90 -90
- package/src/components/app_apply/AppServiceView.vue +664 -664
- package/src/components/app_apply/AppTakePic.vue +112 -112
- package/src/components/app_apply/Process/AppExplorationUser.vue +310 -310
- package/src/components/app_apply/Process/AppServiceControl.vue +409 -409
- package/src/components/app_apply/Process/Processes/AppInstallationDetails.vue +456 -456
- package/src/components/app_apply/Supervisory/AppProcessSupervisory.vue +300 -300
- package/src/components/app_apply/Supervisory/AppSupervisoryCart.vue +121 -121
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +251 -251
- package/src/components/product/ApplyCharge/ApplyChargeReport.vue +107 -107
- package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +30 -30
- package/src/components/product/Function/InstallFunction.vue +147 -147
- package/src/components/product/Function/InstallInfoSelect.vue +281 -281
- package/src/components/product/Function/Service/FunctionServiceControl.vue +245 -245
- package/src/components/product/Function/StopApplyCrrdList.vue +176 -176
- package/src/components/product/Function/functions/StopInstall.vue +106 -106
- package/src/components/product/Process/ExplorationSelect.vue +346 -346
- package/src/components/product/Process/ExplorationUser.vue +134 -134
- package/src/components/product/Process/Processes/InstallationDetails.vue +243 -233
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +201 -201
- package/src/components/product/Process/Processes/chargeManagement.vue +555 -555
- package/src/components/product/Process/Processes/printCharge.vue +133 -133
- package/src/components/product/Process/Processes/supplementalAgreement.vue +297 -297
- package/src/components/product/Process/ShowBackReason.vue +32 -32
- package/src/components/product/ServiceView.vue +759 -759
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +199 -199
- package/src/components/product/Supervisory/SupervisoryControl.vue +119 -119
- package/src/components/product/Supervisory/SupervisoryList.vue +208 -208
- package/src/components/product/Supervisory/SupervisoryhCart.vue +103 -103
- package/src/components/product/VueUtils/ApplyUpload.vue +261 -261
- package/src/main.js +23 -23
|
@@ -1,121 +1,121 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div style="padding: 10px">
|
|
3
|
-
<div partial class="auto app-text panel" style="margin-bottom: 20px">
|
|
4
|
-
<div class="panel-body panel-self">
|
|
5
|
-
<div class="col-xs-6">
|
|
6
|
-
<p class="col-xs-6 text-left font"><b>工程编号:</b></p>
|
|
7
|
-
<p class="col-xs-6 text-left input-font">{{ selectdata.f_project_number }}</p>
|
|
8
|
-
</div>
|
|
9
|
-
<div class="col-xs-6">
|
|
10
|
-
<p class="col-xs-6 text-left font"><b>CEA号:</b></p>
|
|
11
|
-
<p class="col-xs-6 text-left input-font">{{ selectdata.f_cea_number }}</p>
|
|
12
|
-
</div>
|
|
13
|
-
<div class="col-xs-12">
|
|
14
|
-
<p class="col-xs-3 text-left font"><b>项目名称:</b></p>
|
|
15
|
-
<p class="col-xs-9 text-left input-font">{{ selectdata.f_entry_name }}</p>
|
|
16
|
-
</div>
|
|
17
|
-
<div class="col-xs-6">
|
|
18
|
-
<p class="col-xs-6 text-left font"><b>项目类型:</b></p>
|
|
19
|
-
<p class="col-xs-6 text-left input-font">{{ selectdata.f_apply_type }}</p>
|
|
20
|
-
</div>
|
|
21
|
-
<div class="col-xs-6">
|
|
22
|
-
<p class="col-xs-6 text-left font"><b>工程类型:</b></p>
|
|
23
|
-
<p class="col-xs-6 text-left input-font">{{ selectdata.f_project_type }}</p>
|
|
24
|
-
</div>
|
|
25
|
-
<div class="col-xs-6">
|
|
26
|
-
<p class="col-xs-6 text-left font"><b>项目区域:</b></p>
|
|
27
|
-
<p class="col-xs-6 text-left input-font">{{ selectdata.f_project_area }}</p>
|
|
28
|
-
</div>
|
|
29
|
-
<div class="col-xs-6">
|
|
30
|
-
<p class="col-xs-6 text-left font"><b>联系人:</b></p>
|
|
31
|
-
<p class="col-xs-6 text-left input-font">{{ selectdata.f_contact }}</p>
|
|
32
|
-
</div>
|
|
33
|
-
<div class="col-xs-6">
|
|
34
|
-
<p class="col-xs-6 text-left font"><b>联系电话:</b></p>
|
|
35
|
-
<p class="col-xs-6 text-left input-font">{{ selectdata.f_phone }}</p>
|
|
36
|
-
</div>
|
|
37
|
-
<div class="col-xs-6">
|
|
38
|
-
<p class="col-xs-6 text-left font"><b>办理环节:</b></p>
|
|
39
|
-
<p class="col-xs-6 text-left input-font">{{ selectdata.defname }}</p>
|
|
40
|
-
</div>
|
|
41
|
-
<div class="col-xs-12">
|
|
42
|
-
<p class="col-xs-3 text-left font"><b>项目地址:</b></p>
|
|
43
|
-
<p class="col-xs-9 text-left input-font">{{ selectdata.f_address }}</p>
|
|
44
|
-
</div>
|
|
45
|
-
</div>
|
|
46
|
-
</div>
|
|
47
|
-
<div class="row" v-for="(i,row) in defnames">
|
|
48
|
-
<div :class="row.id === selectdata.actid ? 'item selectIndex' : 'item'">
|
|
49
|
-
{{row.defname}}
|
|
50
|
-
<br>
|
|
51
|
-
{{ row.finishtime ? row.finishtime : row.sendtime }}
|
|
52
|
-
</div>
|
|
53
|
-
<div class="arrow glyphicon glyphicon-menu-down" v-if="i != defnames.length-1" aria-hidden="true"></div>
|
|
54
|
-
</div>
|
|
55
|
-
</div>
|
|
56
|
-
</template>
|
|
57
|
-
|
|
58
|
-
<script>
|
|
59
|
-
import {HttpResetClass} from 'vue-client'
|
|
60
|
-
export default {
|
|
61
|
-
title: '流程节点',
|
|
62
|
-
props: ['selectdata'],
|
|
63
|
-
data () {
|
|
64
|
-
return {
|
|
65
|
-
defnames: []
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
|
-
ready () {
|
|
69
|
-
this.initial()
|
|
70
|
-
},
|
|
71
|
-
methods: {
|
|
72
|
-
async initial() {
|
|
73
|
-
// 获取流程节点信息
|
|
74
|
-
let http = new HttpResetClass()
|
|
75
|
-
let data = {
|
|
76
|
-
processid: this.selectdata.f_process_id
|
|
77
|
-
}
|
|
78
|
-
let res = await http.load(
|
|
79
|
-
'POST',`${this.$androidUtil.getProxyUrl()}/rs/sql/getAllNode`,
|
|
80
|
-
{data: data},
|
|
81
|
-
{
|
|
82
|
-
resolveMsg:null,
|
|
83
|
-
rejectMsg:null
|
|
84
|
-
})
|
|
85
|
-
this.defnames = res.data
|
|
86
|
-
},
|
|
87
|
-
},
|
|
88
|
-
watch: {
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
</script>
|
|
92
|
-
|
|
93
|
-
<style scoped>
|
|
94
|
-
.app-text {
|
|
95
|
-
font-size: 12px;
|
|
96
|
-
}
|
|
97
|
-
.panel-self{
|
|
98
|
-
border-radius: 10px;
|
|
99
|
-
border:1px solid #499EDF;
|
|
100
|
-
background-color: #F8F8F8;
|
|
101
|
-
}
|
|
102
|
-
.row{
|
|
103
|
-
padding: 0 40px;
|
|
104
|
-
text-align: center;
|
|
105
|
-
height: auto;
|
|
106
|
-
}
|
|
107
|
-
.item{
|
|
108
|
-
border-radius: 2em;
|
|
109
|
-
border: 1px solid silver;
|
|
110
|
-
line-height: 25px;
|
|
111
|
-
}
|
|
112
|
-
.arrow{
|
|
113
|
-
width: 100%;
|
|
114
|
-
color: #5ac0d9;
|
|
115
|
-
font-weight: bold;
|
|
116
|
-
}
|
|
117
|
-
.selectIndex{
|
|
118
|
-
background-color: #5ac0d9;
|
|
119
|
-
color: #ffffff;
|
|
120
|
-
}
|
|
121
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div style="padding: 10px">
|
|
3
|
+
<div partial class="auto app-text panel" style="margin-bottom: 20px">
|
|
4
|
+
<div class="panel-body panel-self">
|
|
5
|
+
<div class="col-xs-6">
|
|
6
|
+
<p class="col-xs-6 text-left font"><b>工程编号:</b></p>
|
|
7
|
+
<p class="col-xs-6 text-left input-font">{{ selectdata.f_project_number }}</p>
|
|
8
|
+
</div>
|
|
9
|
+
<div class="col-xs-6">
|
|
10
|
+
<p class="col-xs-6 text-left font"><b>CEA号:</b></p>
|
|
11
|
+
<p class="col-xs-6 text-left input-font">{{ selectdata.f_cea_number }}</p>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="col-xs-12">
|
|
14
|
+
<p class="col-xs-3 text-left font"><b>项目名称:</b></p>
|
|
15
|
+
<p class="col-xs-9 text-left input-font">{{ selectdata.f_entry_name }}</p>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="col-xs-6">
|
|
18
|
+
<p class="col-xs-6 text-left font"><b>项目类型:</b></p>
|
|
19
|
+
<p class="col-xs-6 text-left input-font">{{ selectdata.f_apply_type }}</p>
|
|
20
|
+
</div>
|
|
21
|
+
<div class="col-xs-6">
|
|
22
|
+
<p class="col-xs-6 text-left font"><b>工程类型:</b></p>
|
|
23
|
+
<p class="col-xs-6 text-left input-font">{{ selectdata.f_project_type }}</p>
|
|
24
|
+
</div>
|
|
25
|
+
<div class="col-xs-6">
|
|
26
|
+
<p class="col-xs-6 text-left font"><b>项目区域:</b></p>
|
|
27
|
+
<p class="col-xs-6 text-left input-font">{{ selectdata.f_project_area }}</p>
|
|
28
|
+
</div>
|
|
29
|
+
<div class="col-xs-6">
|
|
30
|
+
<p class="col-xs-6 text-left font"><b>联系人:</b></p>
|
|
31
|
+
<p class="col-xs-6 text-left input-font">{{ selectdata.f_contact }}</p>
|
|
32
|
+
</div>
|
|
33
|
+
<div class="col-xs-6">
|
|
34
|
+
<p class="col-xs-6 text-left font"><b>联系电话:</b></p>
|
|
35
|
+
<p class="col-xs-6 text-left input-font">{{ selectdata.f_phone }}</p>
|
|
36
|
+
</div>
|
|
37
|
+
<div class="col-xs-6">
|
|
38
|
+
<p class="col-xs-6 text-left font"><b>办理环节:</b></p>
|
|
39
|
+
<p class="col-xs-6 text-left input-font">{{ selectdata.defname }}</p>
|
|
40
|
+
</div>
|
|
41
|
+
<div class="col-xs-12">
|
|
42
|
+
<p class="col-xs-3 text-left font"><b>项目地址:</b></p>
|
|
43
|
+
<p class="col-xs-9 text-left input-font">{{ selectdata.f_address }}</p>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
47
|
+
<div class="row" v-for="(i,row) in defnames">
|
|
48
|
+
<div :class="row.id === selectdata.actid ? 'item selectIndex' : 'item'">
|
|
49
|
+
{{row.defname}}
|
|
50
|
+
<br>
|
|
51
|
+
{{ row.finishtime ? row.finishtime : row.sendtime }}
|
|
52
|
+
</div>
|
|
53
|
+
<div class="arrow glyphicon glyphicon-menu-down" v-if="i != defnames.length-1" aria-hidden="true"></div>
|
|
54
|
+
</div>
|
|
55
|
+
</div>
|
|
56
|
+
</template>
|
|
57
|
+
|
|
58
|
+
<script>
|
|
59
|
+
import {HttpResetClass} from 'vue-client'
|
|
60
|
+
export default {
|
|
61
|
+
title: '流程节点',
|
|
62
|
+
props: ['selectdata'],
|
|
63
|
+
data () {
|
|
64
|
+
return {
|
|
65
|
+
defnames: []
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
ready () {
|
|
69
|
+
this.initial()
|
|
70
|
+
},
|
|
71
|
+
methods: {
|
|
72
|
+
async initial() {
|
|
73
|
+
// 获取流程节点信息
|
|
74
|
+
let http = new HttpResetClass()
|
|
75
|
+
let data = {
|
|
76
|
+
processid: this.selectdata.f_process_id
|
|
77
|
+
}
|
|
78
|
+
let res = await http.load(
|
|
79
|
+
'POST',`${this.$androidUtil.getProxyUrl()}/rs/sql/getAllNode`,
|
|
80
|
+
{data: data},
|
|
81
|
+
{
|
|
82
|
+
resolveMsg:null,
|
|
83
|
+
rejectMsg:null
|
|
84
|
+
})
|
|
85
|
+
this.defnames = res.data
|
|
86
|
+
},
|
|
87
|
+
},
|
|
88
|
+
watch: {
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
</script>
|
|
92
|
+
|
|
93
|
+
<style scoped>
|
|
94
|
+
.app-text {
|
|
95
|
+
font-size: 12px;
|
|
96
|
+
}
|
|
97
|
+
.panel-self{
|
|
98
|
+
border-radius: 10px;
|
|
99
|
+
border:1px solid #499EDF;
|
|
100
|
+
background-color: #F8F8F8;
|
|
101
|
+
}
|
|
102
|
+
.row{
|
|
103
|
+
padding: 0 40px;
|
|
104
|
+
text-align: center;
|
|
105
|
+
height: auto;
|
|
106
|
+
}
|
|
107
|
+
.item{
|
|
108
|
+
border-radius: 2em;
|
|
109
|
+
border: 1px solid silver;
|
|
110
|
+
line-height: 25px;
|
|
111
|
+
}
|
|
112
|
+
.arrow{
|
|
113
|
+
width: 100%;
|
|
114
|
+
color: #5ac0d9;
|
|
115
|
+
font-weight: bold;
|
|
116
|
+
}
|
|
117
|
+
.selectIndex{
|
|
118
|
+
background-color: #5ac0d9;
|
|
119
|
+
color: #ffffff;
|
|
120
|
+
}
|
|
121
|
+
</style>
|