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
|
@@ -5,25 +5,20 @@
|
|
|
5
5
|
<criteria partial='criteria' @condition-changed='$parent.searchCondition' v-ref:cri>
|
|
6
6
|
<div class="form-horizontal select-overspread container-fluid auto" partial>
|
|
7
7
|
<div class="row">
|
|
8
|
-
<div class="form-group col-sm-
|
|
9
|
-
<label class="font_normal_body">工程编号:</label>
|
|
10
|
-
<input type="text" class="input_search" style="width: 60%" v-model="model.f_applycode"
|
|
11
|
-
v-on:keyup.enter="$parent.$parent.search()" condition="ui.f_applycode = '{}'" placeholder='工程编号'>
|
|
12
|
-
</div>
|
|
13
|
-
<div class="form-group col-sm-3">
|
|
8
|
+
<div class="form-group col-sm-2">
|
|
14
9
|
<label class="font_normal_body">片  区:</label>
|
|
15
10
|
<v-select
|
|
16
|
-
v-model="model.
|
|
11
|
+
v-model="model.f_slice_area"
|
|
17
12
|
placeholder='片区'
|
|
18
|
-
condition="ui.
|
|
19
|
-
:value.sync="model.
|
|
13
|
+
condition="ui.f_slice_area = '{}'"
|
|
14
|
+
:value.sync="model.f_slice_area"
|
|
20
15
|
:options='$parent.$parent.sliceareas'
|
|
21
16
|
class="select select_list"
|
|
22
17
|
:value-single="true"
|
|
23
18
|
close-on-select >
|
|
24
19
|
</v-select>
|
|
25
20
|
</div>
|
|
26
|
-
<div class="form-group col-sm-
|
|
21
|
+
<div class="form-group col-sm-2">
|
|
27
22
|
<label class="font_normal_body">发卡状态:</label>
|
|
28
23
|
<v-select
|
|
29
24
|
v-model="model.f_whether_hairpin"
|
|
@@ -36,6 +31,28 @@
|
|
|
36
31
|
close-on-select >
|
|
37
32
|
</v-select>
|
|
38
33
|
</div>
|
|
34
|
+
<div class="form-group col-sm-2">
|
|
35
|
+
<label for="startDate" class="font_normal_body">发卡时间:</label>
|
|
36
|
+
<datepicker id="startDate" placeholder="开始日期"
|
|
37
|
+
style="width: 60%!important;"
|
|
38
|
+
v-model="model.startDate"
|
|
39
|
+
:value.sync="model.startDate"
|
|
40
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
|
41
|
+
:show-reset-button="true"
|
|
42
|
+
condition="uf.f_open_date >= '{}'">
|
|
43
|
+
</datepicker>
|
|
44
|
+
</div>
|
|
45
|
+
<div class="form-group col-sm-2">
|
|
46
|
+
<label for="endDate" class="font_normal_body">发卡时间:</label>
|
|
47
|
+
<datepicker id="endDate" placeholder="结束日期"
|
|
48
|
+
style="width: 60%!important;"
|
|
49
|
+
v-model="model.endDate"
|
|
50
|
+
:value.sync="model.endDate"
|
|
51
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
|
52
|
+
:show-reset-button="true"
|
|
53
|
+
condition="uf.f_open_date <= '{}'">
|
|
54
|
+
</datepicker>
|
|
55
|
+
</div>
|
|
39
56
|
<div class="form-group col-sm-3 button-range">
|
|
40
57
|
<button class="button_export button_spacing" @click="$parent.$parent.openOperatorModal()">批量派单</button>
|
|
41
58
|
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
@@ -50,7 +67,12 @@
|
|
|
50
67
|
</div>
|
|
51
68
|
</div>
|
|
52
69
|
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
53
|
-
<div class="form-group col-sm-
|
|
70
|
+
<div class="form-group col-sm-2">
|
|
71
|
+
<label class="font_normal_body">工程编号:</label>
|
|
72
|
+
<input type="text" class="input_search" style="width: 60%" v-model="model.f_applycode"
|
|
73
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="ui.f_applycode = '{}'" placeholder='工程编号'>
|
|
74
|
+
</div>
|
|
75
|
+
<div class="form-group col-sm-2">
|
|
54
76
|
<label class="font_normal_body">用户类型:</label>
|
|
55
77
|
<v-select
|
|
56
78
|
v-model="model.f_user_type"
|
|
@@ -63,17 +85,17 @@
|
|
|
63
85
|
close-on-select >
|
|
64
86
|
</v-select>
|
|
65
87
|
</div>
|
|
66
|
-
<div class="form-group col-sm-
|
|
88
|
+
<div class="form-group col-sm-2">
|
|
67
89
|
<label class="font_normal_body">用户编号:</label>
|
|
68
90
|
<input type="text" class="input_search" style="width: 60%" v-model="model.f_userinfo_id"
|
|
69
91
|
v-on:keyup.enter="$parent.$parent.search()" condition="ui.f_userinfo_id = '{}'" placeholder='用户编号'>
|
|
70
92
|
</div>
|
|
71
|
-
<div class="form-group col-sm-
|
|
93
|
+
<div class="form-group col-sm-2">
|
|
72
94
|
<label class="font_normal_body">用 户 名:</label>
|
|
73
95
|
<input type="text" class="input_search" style="width: 60%" v-model="model.f_user_name"
|
|
74
96
|
v-on:keyup.enter="$parent.$parent.search()" condition="ui.f_user_name = '{}'" placeholder='用户名'>
|
|
75
97
|
</div>
|
|
76
|
-
<div class="form-group col-sm-
|
|
98
|
+
<div class="form-group col-sm-2">
|
|
77
99
|
<label class="font_normal_body">电  话:</label>
|
|
78
100
|
<input type="text" class="input_search" style="width: 60%" v-model="model.f_user_phone"
|
|
79
101
|
v-on:keyup.enter="$parent.$parent.search()" condition="ui.f_user_phone = '{}'" placeholder='电话'>
|
|
@@ -84,20 +106,23 @@
|
|
|
84
106
|
<data-grid :model="model" optional partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
|
|
85
107
|
<template partial='head'>
|
|
86
108
|
<tr>
|
|
87
|
-
<th>序号</th>
|
|
88
|
-
<th
|
|
89
|
-
<th
|
|
90
|
-
<th
|
|
91
|
-
<th
|
|
92
|
-
<th
|
|
93
|
-
<th
|
|
109
|
+
<th style="white-space: nowrap;">序号</th>
|
|
110
|
+
<th style="white-space: nowrap;">报建编号</th>
|
|
111
|
+
<th style="white-space: nowrap;">用户编号</th>
|
|
112
|
+
<th style="white-space: nowrap;">用户姓名</th>
|
|
113
|
+
<th style="white-space: nowrap;">联系电话</th>
|
|
114
|
+
<th style="white-space: nowrap;">用户类型</th>
|
|
115
|
+
<th style="white-space: nowrap;">地址</th>
|
|
116
|
+
<th style="white-space: nowrap;">片区</th>
|
|
94
117
|
<!-- <th>定位地址</th>-->
|
|
95
|
-
<th>气表分类</th>
|
|
96
|
-
<th
|
|
97
|
-
<th
|
|
98
|
-
<th
|
|
99
|
-
<th
|
|
100
|
-
<th
|
|
118
|
+
<th style="white-space: nowrap;">气表分类</th>
|
|
119
|
+
<th style="white-space: nowrap;">表号</th>
|
|
120
|
+
<th style="white-space: nowrap;">气表品牌</th>
|
|
121
|
+
<th style="white-space: nowrap;">气表型号</th>
|
|
122
|
+
<th style="white-space: nowrap;">发卡状态</th>
|
|
123
|
+
<th style="white-space: nowrap;">发卡时间</th>
|
|
124
|
+
<th style="white-space: nowrap;">报建人</th>
|
|
125
|
+
<th style="white-space: nowrap;">报建联系电话</th>
|
|
101
126
|
</tr>
|
|
102
127
|
</template>
|
|
103
128
|
<template partial='body'>
|
|
@@ -105,6 +130,9 @@
|
|
|
105
130
|
<td style="text-align: center;">
|
|
106
131
|
<nobr><font>{{$index+1}}</font></nobr>
|
|
107
132
|
</td>
|
|
133
|
+
<td style="text-align: center;">
|
|
134
|
+
<nobr><font>{{row.f_apply_num}}</font></nobr>
|
|
135
|
+
</td>
|
|
108
136
|
<td style="text-align: center;">
|
|
109
137
|
<nobr><font>{{row.f_userinfo_id}}</font></nobr>
|
|
110
138
|
</td>
|
|
@@ -133,6 +161,9 @@
|
|
|
133
161
|
<td style="text-align: center;">
|
|
134
162
|
<nobr><font>{{row.f_meter_classify}}</font></nobr>
|
|
135
163
|
</td>
|
|
164
|
+
<td style="text-align: center;">
|
|
165
|
+
<nobr><font>{{row.f_meternumber}}</font></nobr>
|
|
166
|
+
</td>
|
|
136
167
|
<td style="text-align: center;">
|
|
137
168
|
<nobr><font>{{row.f_meter_brand}}</font></nobr>
|
|
138
169
|
</td>
|
|
@@ -142,6 +173,9 @@
|
|
|
142
173
|
<td style="text-align: center;">
|
|
143
174
|
<nobr><font>{{row.f_whether_hairpin}}</font></nobr>
|
|
144
175
|
</td>
|
|
176
|
+
<td style="text-align: center;">
|
|
177
|
+
<nobr><font>{{row.f_faka_date}}</font></nobr>
|
|
178
|
+
</td>
|
|
145
179
|
<td style="text-align: center;">
|
|
146
180
|
<nobr><font>{{row.f_contact}}</font></nobr>
|
|
147
181
|
</td>
|
|
@@ -270,6 +304,12 @@ export default {
|
|
|
270
304
|
return
|
|
271
305
|
}
|
|
272
306
|
}
|
|
307
|
+
// if(selectdata[i].f_surplus_money > 0 ){
|
|
308
|
+
// let res = await this.$showMessage(`第${selectdata.length}条报建费用未结清,无法派单!`)
|
|
309
|
+
// if (res == 'confirm') {
|
|
310
|
+
// return
|
|
311
|
+
// }
|
|
312
|
+
// }
|
|
273
313
|
}
|
|
274
314
|
let data = {
|
|
275
315
|
operator: this.$login.f,
|
|
@@ -331,7 +371,8 @@ export default {
|
|
|
331
371
|
searchCondition (args) {
|
|
332
372
|
args.condition = args.condition + ` and ir.id is null`
|
|
333
373
|
console.log("this.showDatade",this.showData)
|
|
334
|
-
args.condition = args.condition + ` and ui.f_process_id = '${this.showData.f_process_id}'`
|
|
374
|
+
// args.condition = args.condition + ` and ui.f_process_id = '${this.showData.f_process_id}'`
|
|
375
|
+
args.condition = args.condition + ` and ui.f_process_id is not null`
|
|
335
376
|
this.model.search(args.condition, args.model)
|
|
336
377
|
},
|
|
337
378
|
// 查询
|
|
@@ -77,6 +77,18 @@
|
|
|
77
77
|
close-on-select >
|
|
78
78
|
</v-select>
|
|
79
79
|
</div>
|
|
80
|
+
<div class="form-group col-sm-3">
|
|
81
|
+
<label class="font_normal_body">用户性质:</label>
|
|
82
|
+
<v-select
|
|
83
|
+
v-model="model.f_apply_nature"
|
|
84
|
+
placeholder='用户性质'
|
|
85
|
+
condition="ap.f_apply_nature = '{}'"
|
|
86
|
+
:value.sync="model.f_apply_nature"
|
|
87
|
+
:options='$parent.$parent.applyNatures'
|
|
88
|
+
class="select select_list"
|
|
89
|
+
:value-single="true"
|
|
90
|
+
close-on-select ></v-select>
|
|
91
|
+
</div>
|
|
80
92
|
<div class="form-group col-sm-3">
|
|
81
93
|
<label class="font_normal_body">用 户 名:</label>
|
|
82
94
|
<input type="text" class="input_search" style="width: 60%" v-model="model.f_user_name"
|
|
@@ -92,30 +104,53 @@
|
|
|
92
104
|
<input type="text" class="input_search" style="width: 60%" v-model="model.f_meternumber"
|
|
93
105
|
v-on:keyup.enter="$parent.$parent.search()" condition="uf.f_meternumber = '{}'" placeholder='表号'>
|
|
94
106
|
</div>
|
|
107
|
+
<div class="form-group col-sm-3">
|
|
108
|
+
<label for="startDate" class="font_normal_body">派单时间:</label>
|
|
109
|
+
<datepicker id="startDate" placeholder="开始日期"
|
|
110
|
+
style="width: 60%!important;"
|
|
111
|
+
v-model="model.startDate"
|
|
112
|
+
:value.sync="model.startDate"
|
|
113
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
|
114
|
+
:show-reset-button="true"
|
|
115
|
+
condition="ir.f_date >= '{}'">
|
|
116
|
+
</datepicker>
|
|
117
|
+
</div>
|
|
118
|
+
<div class="form-group col-sm-3">
|
|
119
|
+
<label for="endDate" class="font_normal_body">派单时间:</label>
|
|
120
|
+
<datepicker id="endDate" placeholder="结束日期"
|
|
121
|
+
style="width: 60%!important;"
|
|
122
|
+
v-model="model.endDate"
|
|
123
|
+
:value.sync="model.endDate"
|
|
124
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
|
125
|
+
:show-reset-button="true"
|
|
126
|
+
condition="ir.f_date <= '{}'">
|
|
127
|
+
</datepicker>
|
|
128
|
+
</div>
|
|
95
129
|
</div>
|
|
96
130
|
</div>
|
|
97
131
|
</criteria>
|
|
98
132
|
<data-grid :model="model" partial='list' v-ref:grid style="overflow: auto" class="list_area table_sy">
|
|
99
133
|
<template partial='head'>
|
|
100
134
|
<tr>
|
|
101
|
-
<th>序号</th>
|
|
102
|
-
<th>用户编号</th>
|
|
103
|
-
<th>用户名</th>
|
|
104
|
-
<th>联系电话</th>
|
|
105
|
-
<th>用户类型</th>
|
|
106
|
-
<th>地址</th>
|
|
107
|
-
<th>片区</th>
|
|
135
|
+
<th style="white-space: nowrap;">序号</th>
|
|
136
|
+
<th style="white-space: nowrap;">用户编号</th>
|
|
137
|
+
<th style="white-space: nowrap;">用户名</th>
|
|
138
|
+
<th style="white-space: nowrap;">联系电话</th>
|
|
139
|
+
<th style="white-space: nowrap;">用户类型</th>
|
|
140
|
+
<th style="white-space: nowrap;">地址</th>
|
|
141
|
+
<th style="white-space: nowrap;">片区</th>
|
|
108
142
|
<!-- <th>定位地址</th>-->
|
|
109
|
-
<th>气表类型</th>
|
|
110
|
-
<th>气表品牌</th>
|
|
111
|
-
<th>表号</th>
|
|
112
|
-
<th>派单人</th>
|
|
113
|
-
<th>派单时间</th>
|
|
114
|
-
<th>备注</th>
|
|
115
|
-
<th>点火人</th>
|
|
116
|
-
<th>点火时间</th>
|
|
117
|
-
<th>状态</th>
|
|
118
|
-
<th
|
|
143
|
+
<th style="white-space: nowrap;">气表类型</th>
|
|
144
|
+
<th style="white-space: nowrap;">气表品牌</th>
|
|
145
|
+
<th style="white-space: nowrap;">表号</th>
|
|
146
|
+
<th style="white-space: nowrap;">派单人</th>
|
|
147
|
+
<th style="white-space: nowrap;">派单时间</th>
|
|
148
|
+
<th style="white-space: nowrap;">备注</th>
|
|
149
|
+
<th style="white-space: nowrap;">点火人</th>
|
|
150
|
+
<th style="white-space: nowrap;">点火时间</th>
|
|
151
|
+
<th style="white-space: nowrap;">状态</th>
|
|
152
|
+
<th style="white-space: nowrap;">工程编号</th>
|
|
153
|
+
<th style="white-space: nowrap;">操作</th>
|
|
119
154
|
</tr>
|
|
120
155
|
</template>
|
|
121
156
|
<template partial='body'>
|
|
@@ -175,6 +210,9 @@
|
|
|
175
210
|
<td style="text-align: center;" @click="$parent.$parent.$parent.getFiles(row)">
|
|
176
211
|
<nobr><font>{{row.f_ignition_state}}</font></nobr>
|
|
177
212
|
</td>
|
|
213
|
+
<td style="text-align: center;">
|
|
214
|
+
<nobr><font>{{row.f_apply_num}}</font></nobr>
|
|
215
|
+
</td>
|
|
178
216
|
<td style="text-align: center;">
|
|
179
217
|
<button
|
|
180
218
|
type="button" name="button" class="btn btn-link"
|
|
@@ -216,6 +254,7 @@ export default {
|
|
|
216
254
|
states:[{label: '已通气', value: '结束'},{label: '已派单', value: '正在进行'}],//通气状态
|
|
217
255
|
sliceareas: [], // 片区
|
|
218
256
|
usertype:[{label: "全部", value: ""}, {label: "民用", value: "民用"}, {label: "非民用", value: "非民用"}],//用户类型
|
|
257
|
+
applyNatures: [{label: '全部', value: ''},{label: '工业', value: '工业'},{label: '商业', value: '商业'},{label: '散户', value: '散户'},{label: '小区', value: '小区'},{label: '分户挂表', value: '分户挂表'}], // 报建性质
|
|
219
258
|
getfield: {
|
|
220
259
|
'f_userinfo_id': ' 用户编号 ',
|
|
221
260
|
'f_user_name': ' 用户名称 ',
|