apply-clients 3.3.49 → 3.3.50
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 +131 -130
- package/package.json +1 -1
- package/src/AndroidApp.vue +35 -35
- package/src/apply.js +93 -93
- package/src/applyAndroid.js +31 -31
- package/src/components/android/AppOnetomany.vue +301 -301
- package/src/components/android/AppServiceView.vue +566 -566
- package/src/components/android/AppSign.vue +142 -142
- package/src/components/android/Function/AppInstallFunction.vue +366 -366
- package/src/components/android/Process/AppExplorationUser.vue +340 -340
- package/src/components/android/Process/AppServiceControl.vue +761 -761
- package/src/components/android/Process/Processes/AppBuildSign.vue +46 -46
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +300 -300
- package/src/components/android/Supervisory/AppSupervisoryCart.vue +119 -119
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +11 -1
- package/src/components/product/Function/InstallFunction.vue +132 -132
- package/src/components/product/Function/InstallInfoSelect.vue +320 -310
- package/src/components/product/Function/Service/FunctionServiceControl.vue +445 -445
- package/src/components/product/Material/MaterialDetailed.vue +235 -235
- package/src/components/product/OldApply/Monitor/MonitorApply.vue +329 -329
- package/src/components/product/OldApply/OldApply.vue +150 -150
- package/src/components/product/Onetomany.vue +377 -377
- package/src/components/product/Print/BuildOrder/buildOrderList.vue +264 -264
- package/src/components/product/Print/BuildOrder/printBuildOrder.vue +153 -153
- package/src/components/product/Process/ExplorationSelect.vue +457 -457
- package/src/components/product/Process/ExplorationUser.vue +147 -147
- package/src/components/product/Process/Processes/InstallationDetails.vue +592 -592
- package/src/components/product/Process/Processes/Print/printCharge.vue +142 -142
- package/src/components/product/Process/Processes/Print/printRefund.vue +196 -196
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +207 -207
- package/src/components/product/Process/Processes/chargeManagement.vue +656 -656
- package/src/components/product/Process/Service/ServiceControl.vue +1265 -1265
- package/src/components/product/ServiceView.vue +631 -631
- package/src/components/product/Supervisory/SupervisoryControl.vue +137 -137
- package/src/components/product/Supervisory/SupervisoryList.vue +296 -296
- package/src/components/product/Supervisory/SupervisoryhCart.vue +130 -130
- package/src/components/product/VueUtils/ApplyUpload.vue +273 -273
- package/src/components/product/VueUtils/HighMeter.vue +208 -208
|
@@ -1,329 +1,329 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="flex-row">
|
|
3
|
-
<div class="basic-main">
|
|
4
|
-
<criteria-paged :model="model" v-ref:cp>
|
|
5
|
-
<criteria partial='criteria' @condition-changed='$parent.searchCondition' v-ref:cri>
|
|
6
|
-
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
7
|
-
<div class="row">
|
|
8
|
-
<div class="form-group col-sm-3">
|
|
9
|
-
<label class="font_normal_body">组织机构:</label>
|
|
10
|
-
<res-select
|
|
11
|
-
restype='organization'
|
|
12
|
-
:initresid='$parent.$parent.curorgid'
|
|
13
|
-
@res-select="$parent.$parent.getorg"
|
|
14
|
-
is-mul="false"
|
|
15
|
-
></res-select>
|
|
16
|
-
</div>
|
|
17
|
-
<div class="form-group col-sm-3">
|
|
18
|
-
<label class="font_normal_body">工程编号:</label>
|
|
19
|
-
<input type="text" style="width:60%" class="input_search" placeholder='工程编号' v-model="model.f_apply_num"
|
|
20
|
-
v-on:keyup.enter="$parent.$parent.search()"
|
|
21
|
-
condition="f_apply_num like '%{}%'">
|
|
22
|
-
</div>
|
|
23
|
-
<div class="form-group col-sm-3">
|
|
24
|
-
<label class="font_normal_body">客户名称:</label>
|
|
25
|
-
<input type="text" style="width:60%" class="input_search" placeholder='客户名称' v-model="model.f_user_name"
|
|
26
|
-
v-on:keyup.enter="$parent.$parent.search()"
|
|
27
|
-
condition="f_user_name like '%{}%'">
|
|
28
|
-
</div>
|
|
29
|
-
<div class="form-group col-sm-3 button-range">
|
|
30
|
-
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
31
|
-
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
32
|
-
<export-excel :data="$parent.$parent.getCondition"
|
|
33
|
-
:field="$parent.$parent.getfield"
|
|
34
|
-
sqlurl="rs/logic/applyExportfile"
|
|
35
|
-
sql-name="getOldApply"
|
|
36
|
-
template-name='旧报装信息导出'
|
|
37
|
-
:choose-col="true"></export-excel>
|
|
38
|
-
<div
|
|
39
|
-
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
40
|
-
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
41
|
-
class="button_spacing"
|
|
42
|
-
style="float: right">
|
|
43
|
-
</div>
|
|
44
|
-
</div>
|
|
45
|
-
</div>
|
|
46
|
-
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
47
|
-
<div class="form-group col-sm-3">
|
|
48
|
-
<label class="font_normal_body">客户编号:</label>
|
|
49
|
-
<input type="text" style="width:60%" class="input_search" placeholder='客户编号' v-model="model.f_userinfo_code"
|
|
50
|
-
v-on:keyup.enter="$parent.$parent.search()"
|
|
51
|
-
condition="f_userinfo_code = '{}'">
|
|
52
|
-
</div>
|
|
53
|
-
<div class="form-group col-sm-3">
|
|
54
|
-
<label class="font_normal_body">联系电话:</label>
|
|
55
|
-
<input type="text" style="width:60%" class="input_search" placeholder='联系电话' v-model="model.f_phone"
|
|
56
|
-
v-on:keyup.enter="$parent.$parent.search()"
|
|
57
|
-
condition="f_phone like '%{}%'">
|
|
58
|
-
</div>
|
|
59
|
-
<div class="form-group col-sm-3">
|
|
60
|
-
<label class="font_normal_body">地  址:</label>
|
|
61
|
-
<input type="text" style="width:60%" class="input_search" placeholder='地址' v-model="model.f_address"
|
|
62
|
-
v-on:keyup.enter="$parent.$parent.search()"
|
|
63
|
-
condition="f_address like '%{}%'">
|
|
64
|
-
</div>
|
|
65
|
-
<div class="form-group col-sm-3">
|
|
66
|
-
<label class="font_normal_body">表  号:</label>
|
|
67
|
-
<input type="text" style="width:60%" class="input_search" placeholder='表号' v-model="model.f_meternumber"
|
|
68
|
-
v-on:keyup.enter="$parent.$parent.search()"
|
|
69
|
-
condition="f_meternumber like '%{}%'">
|
|
70
|
-
</div>
|
|
71
|
-
<div class="form-group col-sm-3">
|
|
72
|
-
<label class="font_normal_body">报建类型:</label>
|
|
73
|
-
<v-select
|
|
74
|
-
v-model="model.f_apply_type"
|
|
75
|
-
placeholder='报建类型'
|
|
76
|
-
condition="f_apply_type like '%{}%'"
|
|
77
|
-
:value.sync="model.f_apply_type"
|
|
78
|
-
:options='$parent.$parent.applyTypes'
|
|
79
|
-
class="select select_list"
|
|
80
|
-
:value-single="true"
|
|
81
|
-
close-on-select ></v-select>
|
|
82
|
-
</div>
|
|
83
|
-
<div class="form-group col-sm-3">
|
|
84
|
-
<label class="font_normal_body">流程状态:</label>
|
|
85
|
-
<v-select
|
|
86
|
-
v-model="model.f_sub_state"
|
|
87
|
-
placeholder='流程状态'
|
|
88
|
-
condition="f_sub_state = '{}'"
|
|
89
|
-
:value.sync="model.f_sub_state"
|
|
90
|
-
:options='$parent.$parent.subStates'
|
|
91
|
-
class="select select_list"
|
|
92
|
-
:value-single="true"
|
|
93
|
-
close-on-select ></v-select>
|
|
94
|
-
</div>
|
|
95
|
-
<div class="form-group col-sm-3">
|
|
96
|
-
<label class="font_normal_body">用气性质:</label>
|
|
97
|
-
<v-select
|
|
98
|
-
v-model="model.f_gas_nature"
|
|
99
|
-
placeholder='用气性质'
|
|
100
|
-
condition="f_gas_nature = '{}'"
|
|
101
|
-
:value.sync="model.f_gas_nature"
|
|
102
|
-
:options='$parent.$parent.gasNatures'
|
|
103
|
-
class="select select_list"
|
|
104
|
-
:value-single="true"
|
|
105
|
-
close-on-select ></v-select>
|
|
106
|
-
</div>
|
|
107
|
-
<div class="form-group col-sm-3">
|
|
108
|
-
<label class="font_normal_body">终止原因:</label>
|
|
109
|
-
<v-select
|
|
110
|
-
v-model="model.f_stop_reason"
|
|
111
|
-
placeholder='终止原因'
|
|
112
|
-
condition="f_stop_reason = '{}'"
|
|
113
|
-
:value.sync="model.f_stop_reason"
|
|
114
|
-
:options='$parent.$parent.stopReasons'
|
|
115
|
-
class="select select_list"
|
|
116
|
-
:value-single="true"
|
|
117
|
-
close-on-select ></v-select>
|
|
118
|
-
</div>
|
|
119
|
-
<div class="form-group col-sm-3">
|
|
120
|
-
<label for="startDate" class="font_normal_body">开始时间:</label>
|
|
121
|
-
<datepicker id="startDate" placeholder="开始日期"
|
|
122
|
-
style="width: 60%!important;"
|
|
123
|
-
v-model="model.startDate"
|
|
124
|
-
:value.sync="model.startDate"
|
|
125
|
-
:format="'yyyy-MM-dd 00:00:00'"
|
|
126
|
-
:show-reset-button="true"
|
|
127
|
-
condition="f_apply_date >= '{}'">
|
|
128
|
-
</datepicker>
|
|
129
|
-
</div>
|
|
130
|
-
<div class="form-group col-sm-3">
|
|
131
|
-
<label for="endDate" class="font_normal_body">结束时间:</label>
|
|
132
|
-
<datepicker id="endDate" placeholder="结束日期"
|
|
133
|
-
style="width: 60%!important;"
|
|
134
|
-
v-model="model.endDate"
|
|
135
|
-
:value.sync="model.endDate"
|
|
136
|
-
:format="'yyyy-MM-dd 23:59:59'"
|
|
137
|
-
:show-reset-button="true"
|
|
138
|
-
condition="f_apply_date <= '{}'">
|
|
139
|
-
</datepicker>
|
|
140
|
-
</div>
|
|
141
|
-
</div>
|
|
142
|
-
</div>
|
|
143
|
-
</criteria>
|
|
144
|
-
<data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy" style="height: 100%">
|
|
145
|
-
<template partial='head'>
|
|
146
|
-
<tr>
|
|
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>
|
|
154
|
-
<th style="white-space: nowrap;">流程状态</th>
|
|
155
|
-
<th style="white-space: nowrap;">收费项目</th>
|
|
156
|
-
<th style="white-space: nowrap;">合同金额</th>
|
|
157
|
-
<th style="white-space: nowrap;">表号</th>
|
|
158
|
-
<th style="white-space: nowrap;">防盗卡号</th>
|
|
159
|
-
<th style="white-space: nowrap;">报建日期</th>
|
|
160
|
-
<th style="white-space: nowrap;">客户编号</th>
|
|
161
|
-
</tr>
|
|
162
|
-
</template>
|
|
163
|
-
<template partial='body'>
|
|
164
|
-
<tr>
|
|
165
|
-
<td @click.stop="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
166
|
-
<nobr><font>{{$index+1}}</font></nobr>
|
|
167
|
-
</td>
|
|
168
|
-
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
169
|
-
<nobr><font>{{row.f_apply_num}}</font></nobr>
|
|
170
|
-
</td>
|
|
171
|
-
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
172
|
-
<nobr><font>{{row.f_user_name}}</font></nobr>
|
|
173
|
-
</td>
|
|
174
|
-
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
175
|
-
<nobr><font>{{row.f_phone}}</font></nobr>
|
|
176
|
-
</td>
|
|
177
|
-
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
178
|
-
<nobr><font>{{row.f_address}}</font></nobr>
|
|
179
|
-
</td>
|
|
180
|
-
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
181
|
-
<nobr><font>{{row.f_apply_type}}</font></nobr>
|
|
182
|
-
</td>
|
|
183
|
-
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
184
|
-
<nobr><font>{{row.f_gas_nature}}</font></nobr>
|
|
185
|
-
</td>
|
|
186
|
-
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
187
|
-
<nobr><font>{{row.f_sub_state}}</font></nobr>
|
|
188
|
-
</td>
|
|
189
|
-
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
190
|
-
<nobr><font>{{row.f_payment_term}}</font></nobr>
|
|
191
|
-
</td>
|
|
192
|
-
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
193
|
-
<nobr><font>{{row.f_contract_money}}</font></nobr>
|
|
194
|
-
</td>
|
|
195
|
-
<td style="text-align: center;">
|
|
196
|
-
<nobr><font>{{row.f_meternumber}}</font></nobr>
|
|
197
|
-
</td>
|
|
198
|
-
<td style="text-align: center;">
|
|
199
|
-
<nobr><font>{{row.f_card_number}}</font></nobr>
|
|
200
|
-
</td>
|
|
201
|
-
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
202
|
-
<nobr><font>{{row.f_apply_date}}</font></nobr>
|
|
203
|
-
</td>
|
|
204
|
-
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
205
|
-
<nobr><font>{{row.f_userinfo_code}}</font></nobr>
|
|
206
|
-
</td>
|
|
207
|
-
</tr>
|
|
208
|
-
</template>
|
|
209
|
-
</data-grid>
|
|
210
|
-
</criteria-paged>
|
|
211
|
-
</div>
|
|
212
|
-
</div>
|
|
213
|
-
</template>
|
|
214
|
-
|
|
215
|
-
<script>
|
|
216
|
-
import {PagedList} from 'vue-client'
|
|
217
|
-
|
|
218
|
-
export default {
|
|
219
|
-
title: '数据查看',
|
|
220
|
-
data () {
|
|
221
|
-
return {
|
|
222
|
-
model: new PagedList('rs/sql/getOldApply', 20, null),
|
|
223
|
-
criteriaShow: false,
|
|
224
|
-
curorgid: [this.$login.f.orgid],
|
|
225
|
-
applyTypes: [
|
|
226
|
-
{label: '全部', value: ''},
|
|
227
|
-
{label: '学校报装', value: '学校报装'},
|
|
228
|
-
{label: '散户报装', value: '散户报装'},
|
|
229
|
-
{label: '工商业报装', value: '工商业报装'},
|
|
230
|
-
{label: 'CNG车辆', value: 'CNG车辆'},
|
|
231
|
-
{label: '团购报装', value: '团购报装'},
|
|
232
|
-
{label: '乡镇', value: '乡镇'}
|
|
233
|
-
],
|
|
234
|
-
subStates: [
|
|
235
|
-
{label: '全部', value: ''},
|
|
236
|
-
{label: '待受理', value: '待受理'},
|
|
237
|
-
{label: '待安装', value: '待安装'},
|
|
238
|
-
{label: '待点火', value: '待点火'},
|
|
239
|
-
{label: '完工', value: '完工'},
|
|
240
|
-
{label: '终止', value: '终止'}
|
|
241
|
-
],
|
|
242
|
-
gasNatures: [
|
|
243
|
-
{label: '全部', value: ''},
|
|
244
|
-
{label: '民用', value: '民用'},
|
|
245
|
-
{label: '商业', value: '商业'},
|
|
246
|
-
{label: '工业', value: '工业'}
|
|
247
|
-
],
|
|
248
|
-
stopReasons: [{label: '全部', value: ''}, ...this.$appdata.getParam('终止原因')],
|
|
249
|
-
getfield: {
|
|
250
|
-
'f_userinfo_code': '用户编号',
|
|
251
|
-
'f_apply_num': '工程编号',
|
|
252
|
-
'f_apply_type': '报建类型',
|
|
253
|
-
'f_sub_state': '流程状态',
|
|
254
|
-
'f_user_name': '单位名称',
|
|
255
|
-
'f_contact': '联系人',
|
|
256
|
-
'f_phone': '电话',
|
|
257
|
-
'f_idnumber': '身份证号',
|
|
258
|
-
'f_gas_nature': '用气性质',
|
|
259
|
-
'f_apply_date': '报建接收时间',
|
|
260
|
-
'f_apply_check_date': '报建审核日期',
|
|
261
|
-
'f_contract_money': '合同价格',
|
|
262
|
-
'f_payment_term': '收费项目',
|
|
263
|
-
'f_unit_name': '集收单位',
|
|
264
|
-
'f_address': '地址',
|
|
265
|
-
'f_apply_remarks': '报建备注',
|
|
266
|
-
'f_construction_unit': '施工项目部',
|
|
267
|
-
'f_construction_worker': '施工负责人',
|
|
268
|
-
'f_completion_time': '施工完成时间',
|
|
269
|
-
'f_meternumber': '表号',
|
|
270
|
-
'f_card_number': '防盗卡号',
|
|
271
|
-
'f_construction_check_time': '施工审核时间',
|
|
272
|
-
'f_plan_date': '计划通气时间',
|
|
273
|
-
'f_gas_price_name': '计划气价名称',
|
|
274
|
-
'f_remark_stask': '计划通气备注',
|
|
275
|
-
'f_ventilate_date': '通气日期',
|
|
276
|
-
'f_gas_remarks': '通气备注',
|
|
277
|
-
'f_acceptor': '验收人',
|
|
278
|
-
'f_acceptor_date': '验收日期',
|
|
279
|
-
'f_acceptance_is_qualified': '验收结果',
|
|
280
|
-
'f_price_name': '气价名称',
|
|
281
|
-
'f_stop_reason': '终止原因',
|
|
282
|
-
'f_stop_user': '终止人员',
|
|
283
|
-
'f_stop_date': '终止时间',
|
|
284
|
-
'f_stop_remarks': '终止备注'
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
},
|
|
288
|
-
ready () {
|
|
289
|
-
this.search()
|
|
290
|
-
},
|
|
291
|
-
methods: {
|
|
292
|
-
click (row) {
|
|
293
|
-
this.$dispatch('openApply', row, 'monitor')
|
|
294
|
-
},
|
|
295
|
-
searchCondition (args) {
|
|
296
|
-
args.condition = args.condition + ` and f_orgid = '${this.curorgid[0]}'`
|
|
297
|
-
this.model.search(args.condition, args.model)
|
|
298
|
-
},
|
|
299
|
-
search () {
|
|
300
|
-
this.$refs.cp.$refs.cri.search()
|
|
301
|
-
},
|
|
302
|
-
loadPage () {
|
|
303
|
-
this.$refs.cp.loadPage(this.model.pageIndex)
|
|
304
|
-
},
|
|
305
|
-
clear () {
|
|
306
|
-
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
307
|
-
this.$refs.cp.$refs.cri.model[key] = null
|
|
308
|
-
})
|
|
309
|
-
},
|
|
310
|
-
getorg (val) {
|
|
311
|
-
if (val.length <= 0) {
|
|
312
|
-
return
|
|
313
|
-
}
|
|
314
|
-
this.curorgid = val
|
|
315
|
-
}
|
|
316
|
-
},
|
|
317
|
-
computed: {
|
|
318
|
-
getCondition () {
|
|
319
|
-
return {
|
|
320
|
-
condition: this.model.condition
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
}
|
|
325
|
-
</script>
|
|
326
|
-
|
|
327
|
-
<style scoped>
|
|
328
|
-
|
|
329
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex-row">
|
|
3
|
+
<div class="basic-main">
|
|
4
|
+
<criteria-paged :model="model" v-ref:cp>
|
|
5
|
+
<criteria partial='criteria' @condition-changed='$parent.searchCondition' v-ref:cri>
|
|
6
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
7
|
+
<div class="row">
|
|
8
|
+
<div class="form-group col-sm-3">
|
|
9
|
+
<label class="font_normal_body">组织机构:</label>
|
|
10
|
+
<res-select
|
|
11
|
+
restype='organization'
|
|
12
|
+
:initresid='$parent.$parent.curorgid'
|
|
13
|
+
@res-select="$parent.$parent.getorg"
|
|
14
|
+
is-mul="false"
|
|
15
|
+
></res-select>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="form-group col-sm-3">
|
|
18
|
+
<label class="font_normal_body">工程编号:</label>
|
|
19
|
+
<input type="text" style="width:60%" class="input_search" placeholder='工程编号' v-model="model.f_apply_num"
|
|
20
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
21
|
+
condition="f_apply_num like '%{}%'">
|
|
22
|
+
</div>
|
|
23
|
+
<div class="form-group col-sm-3">
|
|
24
|
+
<label class="font_normal_body">客户名称:</label>
|
|
25
|
+
<input type="text" style="width:60%" class="input_search" placeholder='客户名称' v-model="model.f_user_name"
|
|
26
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
27
|
+
condition="f_user_name like '%{}%'">
|
|
28
|
+
</div>
|
|
29
|
+
<div class="form-group col-sm-3 button-range">
|
|
30
|
+
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
31
|
+
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
32
|
+
<export-excel :data="$parent.$parent.getCondition"
|
|
33
|
+
:field="$parent.$parent.getfield"
|
|
34
|
+
sqlurl="rs/logic/applyExportfile"
|
|
35
|
+
sql-name="getOldApply"
|
|
36
|
+
template-name='旧报装信息导出'
|
|
37
|
+
:choose-col="true"></export-excel>
|
|
38
|
+
<div
|
|
39
|
+
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
40
|
+
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
41
|
+
class="button_spacing"
|
|
42
|
+
style="float: right">
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
47
|
+
<div class="form-group col-sm-3">
|
|
48
|
+
<label class="font_normal_body">客户编号:</label>
|
|
49
|
+
<input type="text" style="width:60%" class="input_search" placeholder='客户编号' v-model="model.f_userinfo_code"
|
|
50
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
51
|
+
condition="f_userinfo_code = '{}'">
|
|
52
|
+
</div>
|
|
53
|
+
<div class="form-group col-sm-3">
|
|
54
|
+
<label class="font_normal_body">联系电话:</label>
|
|
55
|
+
<input type="text" style="width:60%" class="input_search" placeholder='联系电话' v-model="model.f_phone"
|
|
56
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
57
|
+
condition="f_phone like '%{}%'">
|
|
58
|
+
</div>
|
|
59
|
+
<div class="form-group col-sm-3">
|
|
60
|
+
<label class="font_normal_body">地  址:</label>
|
|
61
|
+
<input type="text" style="width:60%" class="input_search" placeholder='地址' v-model="model.f_address"
|
|
62
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
63
|
+
condition="f_address like '%{}%'">
|
|
64
|
+
</div>
|
|
65
|
+
<div class="form-group col-sm-3">
|
|
66
|
+
<label class="font_normal_body">表  号:</label>
|
|
67
|
+
<input type="text" style="width:60%" class="input_search" placeholder='表号' v-model="model.f_meternumber"
|
|
68
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
69
|
+
condition="f_meternumber like '%{}%'">
|
|
70
|
+
</div>
|
|
71
|
+
<div class="form-group col-sm-3">
|
|
72
|
+
<label class="font_normal_body">报建类型:</label>
|
|
73
|
+
<v-select
|
|
74
|
+
v-model="model.f_apply_type"
|
|
75
|
+
placeholder='报建类型'
|
|
76
|
+
condition="f_apply_type like '%{}%'"
|
|
77
|
+
:value.sync="model.f_apply_type"
|
|
78
|
+
:options='$parent.$parent.applyTypes'
|
|
79
|
+
class="select select_list"
|
|
80
|
+
:value-single="true"
|
|
81
|
+
close-on-select ></v-select>
|
|
82
|
+
</div>
|
|
83
|
+
<div class="form-group col-sm-3">
|
|
84
|
+
<label class="font_normal_body">流程状态:</label>
|
|
85
|
+
<v-select
|
|
86
|
+
v-model="model.f_sub_state"
|
|
87
|
+
placeholder='流程状态'
|
|
88
|
+
condition="f_sub_state = '{}'"
|
|
89
|
+
:value.sync="model.f_sub_state"
|
|
90
|
+
:options='$parent.$parent.subStates'
|
|
91
|
+
class="select select_list"
|
|
92
|
+
:value-single="true"
|
|
93
|
+
close-on-select ></v-select>
|
|
94
|
+
</div>
|
|
95
|
+
<div class="form-group col-sm-3">
|
|
96
|
+
<label class="font_normal_body">用气性质:</label>
|
|
97
|
+
<v-select
|
|
98
|
+
v-model="model.f_gas_nature"
|
|
99
|
+
placeholder='用气性质'
|
|
100
|
+
condition="f_gas_nature = '{}'"
|
|
101
|
+
:value.sync="model.f_gas_nature"
|
|
102
|
+
:options='$parent.$parent.gasNatures'
|
|
103
|
+
class="select select_list"
|
|
104
|
+
:value-single="true"
|
|
105
|
+
close-on-select ></v-select>
|
|
106
|
+
</div>
|
|
107
|
+
<div class="form-group col-sm-3">
|
|
108
|
+
<label class="font_normal_body">终止原因:</label>
|
|
109
|
+
<v-select
|
|
110
|
+
v-model="model.f_stop_reason"
|
|
111
|
+
placeholder='终止原因'
|
|
112
|
+
condition="f_stop_reason = '{}'"
|
|
113
|
+
:value.sync="model.f_stop_reason"
|
|
114
|
+
:options='$parent.$parent.stopReasons'
|
|
115
|
+
class="select select_list"
|
|
116
|
+
:value-single="true"
|
|
117
|
+
close-on-select ></v-select>
|
|
118
|
+
</div>
|
|
119
|
+
<div class="form-group col-sm-3">
|
|
120
|
+
<label for="startDate" class="font_normal_body">开始时间:</label>
|
|
121
|
+
<datepicker id="startDate" placeholder="开始日期"
|
|
122
|
+
style="width: 60%!important;"
|
|
123
|
+
v-model="model.startDate"
|
|
124
|
+
:value.sync="model.startDate"
|
|
125
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
|
126
|
+
:show-reset-button="true"
|
|
127
|
+
condition="f_apply_date >= '{}'">
|
|
128
|
+
</datepicker>
|
|
129
|
+
</div>
|
|
130
|
+
<div class="form-group col-sm-3">
|
|
131
|
+
<label for="endDate" class="font_normal_body">结束时间:</label>
|
|
132
|
+
<datepicker id="endDate" placeholder="结束日期"
|
|
133
|
+
style="width: 60%!important;"
|
|
134
|
+
v-model="model.endDate"
|
|
135
|
+
:value.sync="model.endDate"
|
|
136
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
|
137
|
+
:show-reset-button="true"
|
|
138
|
+
condition="f_apply_date <= '{}'">
|
|
139
|
+
</datepicker>
|
|
140
|
+
</div>
|
|
141
|
+
</div>
|
|
142
|
+
</div>
|
|
143
|
+
</criteria>
|
|
144
|
+
<data-grid :model="model" partial='list' v-ref:grid class="list_area table_sy" style="height: 100%">
|
|
145
|
+
<template partial='head'>
|
|
146
|
+
<tr>
|
|
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>
|
|
154
|
+
<th style="white-space: nowrap;">流程状态</th>
|
|
155
|
+
<th style="white-space: nowrap;">收费项目</th>
|
|
156
|
+
<th style="white-space: nowrap;">合同金额</th>
|
|
157
|
+
<th style="white-space: nowrap;">表号</th>
|
|
158
|
+
<th style="white-space: nowrap;">防盗卡号</th>
|
|
159
|
+
<th style="white-space: nowrap;">报建日期</th>
|
|
160
|
+
<th style="white-space: nowrap;">客户编号</th>
|
|
161
|
+
</tr>
|
|
162
|
+
</template>
|
|
163
|
+
<template partial='body'>
|
|
164
|
+
<tr>
|
|
165
|
+
<td @click.stop="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
166
|
+
<nobr><font>{{$index+1}}</font></nobr>
|
|
167
|
+
</td>
|
|
168
|
+
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
169
|
+
<nobr><font>{{row.f_apply_num}}</font></nobr>
|
|
170
|
+
</td>
|
|
171
|
+
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
172
|
+
<nobr><font>{{row.f_user_name}}</font></nobr>
|
|
173
|
+
</td>
|
|
174
|
+
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
175
|
+
<nobr><font>{{row.f_phone}}</font></nobr>
|
|
176
|
+
</td>
|
|
177
|
+
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
178
|
+
<nobr><font>{{row.f_address}}</font></nobr>
|
|
179
|
+
</td>
|
|
180
|
+
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
181
|
+
<nobr><font>{{row.f_apply_type}}</font></nobr>
|
|
182
|
+
</td>
|
|
183
|
+
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
184
|
+
<nobr><font>{{row.f_gas_nature}}</font></nobr>
|
|
185
|
+
</td>
|
|
186
|
+
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
187
|
+
<nobr><font>{{row.f_sub_state}}</font></nobr>
|
|
188
|
+
</td>
|
|
189
|
+
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
190
|
+
<nobr><font>{{row.f_payment_term}}</font></nobr>
|
|
191
|
+
</td>
|
|
192
|
+
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
193
|
+
<nobr><font>{{row.f_contract_money}}</font></nobr>
|
|
194
|
+
</td>
|
|
195
|
+
<td style="text-align: center;">
|
|
196
|
+
<nobr><font>{{row.f_meternumber}}</font></nobr>
|
|
197
|
+
</td>
|
|
198
|
+
<td style="text-align: center;">
|
|
199
|
+
<nobr><font>{{row.f_card_number}}</font></nobr>
|
|
200
|
+
</td>
|
|
201
|
+
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
202
|
+
<nobr><font>{{row.f_apply_date}}</font></nobr>
|
|
203
|
+
</td>
|
|
204
|
+
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
205
|
+
<nobr><font>{{row.f_userinfo_code}}</font></nobr>
|
|
206
|
+
</td>
|
|
207
|
+
</tr>
|
|
208
|
+
</template>
|
|
209
|
+
</data-grid>
|
|
210
|
+
</criteria-paged>
|
|
211
|
+
</div>
|
|
212
|
+
</div>
|
|
213
|
+
</template>
|
|
214
|
+
|
|
215
|
+
<script>
|
|
216
|
+
import {PagedList} from 'vue-client'
|
|
217
|
+
|
|
218
|
+
export default {
|
|
219
|
+
title: '数据查看',
|
|
220
|
+
data () {
|
|
221
|
+
return {
|
|
222
|
+
model: new PagedList('rs/sql/getOldApply', 20, null),
|
|
223
|
+
criteriaShow: false,
|
|
224
|
+
curorgid: [this.$login.f.orgid],
|
|
225
|
+
applyTypes: [
|
|
226
|
+
{label: '全部', value: ''},
|
|
227
|
+
{label: '学校报装', value: '学校报装'},
|
|
228
|
+
{label: '散户报装', value: '散户报装'},
|
|
229
|
+
{label: '工商业报装', value: '工商业报装'},
|
|
230
|
+
{label: 'CNG车辆', value: 'CNG车辆'},
|
|
231
|
+
{label: '团购报装', value: '团购报装'},
|
|
232
|
+
{label: '乡镇', value: '乡镇'}
|
|
233
|
+
],
|
|
234
|
+
subStates: [
|
|
235
|
+
{label: '全部', value: ''},
|
|
236
|
+
{label: '待受理', value: '待受理'},
|
|
237
|
+
{label: '待安装', value: '待安装'},
|
|
238
|
+
{label: '待点火', value: '待点火'},
|
|
239
|
+
{label: '完工', value: '完工'},
|
|
240
|
+
{label: '终止', value: '终止'}
|
|
241
|
+
],
|
|
242
|
+
gasNatures: [
|
|
243
|
+
{label: '全部', value: ''},
|
|
244
|
+
{label: '民用', value: '民用'},
|
|
245
|
+
{label: '商业', value: '商业'},
|
|
246
|
+
{label: '工业', value: '工业'}
|
|
247
|
+
],
|
|
248
|
+
stopReasons: [{label: '全部', value: ''}, ...this.$appdata.getParam('终止原因')],
|
|
249
|
+
getfield: {
|
|
250
|
+
'f_userinfo_code': '用户编号',
|
|
251
|
+
'f_apply_num': '工程编号',
|
|
252
|
+
'f_apply_type': '报建类型',
|
|
253
|
+
'f_sub_state': '流程状态',
|
|
254
|
+
'f_user_name': '单位名称',
|
|
255
|
+
'f_contact': '联系人',
|
|
256
|
+
'f_phone': '电话',
|
|
257
|
+
'f_idnumber': '身份证号',
|
|
258
|
+
'f_gas_nature': '用气性质',
|
|
259
|
+
'f_apply_date': '报建接收时间',
|
|
260
|
+
'f_apply_check_date': '报建审核日期',
|
|
261
|
+
'f_contract_money': '合同价格',
|
|
262
|
+
'f_payment_term': '收费项目',
|
|
263
|
+
'f_unit_name': '集收单位',
|
|
264
|
+
'f_address': '地址',
|
|
265
|
+
'f_apply_remarks': '报建备注',
|
|
266
|
+
'f_construction_unit': '施工项目部',
|
|
267
|
+
'f_construction_worker': '施工负责人',
|
|
268
|
+
'f_completion_time': '施工完成时间',
|
|
269
|
+
'f_meternumber': '表号',
|
|
270
|
+
'f_card_number': '防盗卡号',
|
|
271
|
+
'f_construction_check_time': '施工审核时间',
|
|
272
|
+
'f_plan_date': '计划通气时间',
|
|
273
|
+
'f_gas_price_name': '计划气价名称',
|
|
274
|
+
'f_remark_stask': '计划通气备注',
|
|
275
|
+
'f_ventilate_date': '通气日期',
|
|
276
|
+
'f_gas_remarks': '通气备注',
|
|
277
|
+
'f_acceptor': '验收人',
|
|
278
|
+
'f_acceptor_date': '验收日期',
|
|
279
|
+
'f_acceptance_is_qualified': '验收结果',
|
|
280
|
+
'f_price_name': '气价名称',
|
|
281
|
+
'f_stop_reason': '终止原因',
|
|
282
|
+
'f_stop_user': '终止人员',
|
|
283
|
+
'f_stop_date': '终止时间',
|
|
284
|
+
'f_stop_remarks': '终止备注'
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
ready () {
|
|
289
|
+
this.search()
|
|
290
|
+
},
|
|
291
|
+
methods: {
|
|
292
|
+
click (row) {
|
|
293
|
+
this.$dispatch('openApply', row, 'monitor')
|
|
294
|
+
},
|
|
295
|
+
searchCondition (args) {
|
|
296
|
+
args.condition = args.condition + ` and f_orgid = '${this.curorgid[0]}'`
|
|
297
|
+
this.model.search(args.condition, args.model)
|
|
298
|
+
},
|
|
299
|
+
search () {
|
|
300
|
+
this.$refs.cp.$refs.cri.search()
|
|
301
|
+
},
|
|
302
|
+
loadPage () {
|
|
303
|
+
this.$refs.cp.loadPage(this.model.pageIndex)
|
|
304
|
+
},
|
|
305
|
+
clear () {
|
|
306
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
307
|
+
this.$refs.cp.$refs.cri.model[key] = null
|
|
308
|
+
})
|
|
309
|
+
},
|
|
310
|
+
getorg (val) {
|
|
311
|
+
if (val.length <= 0) {
|
|
312
|
+
return
|
|
313
|
+
}
|
|
314
|
+
this.curorgid = val
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
computed: {
|
|
318
|
+
getCondition () {
|
|
319
|
+
return {
|
|
320
|
+
condition: this.model.condition
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
</script>
|
|
326
|
+
|
|
327
|
+
<style scoped>
|
|
328
|
+
|
|
329
|
+
</style>
|