apply-clients 3.4.98-1 → 3.4.98-3
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
CHANGED
|
@@ -8,8 +8,8 @@ var compiler = webpack(config)
|
|
|
8
8
|
// var proxy = httpProxy.createProxyServer()
|
|
9
9
|
// var ldap = 'http://121.36.79.201:8400'
|
|
10
10
|
// var applyinstall = 'http://121.36.79.201:8400'
|
|
11
|
-
var ldap = 'http://
|
|
12
|
-
var applyinstall = 'http://
|
|
11
|
+
var ldap = 'http://192.168.50.4:8400'
|
|
12
|
+
var applyinstall = 'http://192.168.50.4:8400'
|
|
13
13
|
|
|
14
14
|
var proxyTable = {
|
|
15
15
|
'/apply/rs/entity': {
|
package/package.json
CHANGED
|
@@ -1,356 +1,357 @@
|
|
|
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-3">
|
|
8
|
-
<label class="font_normal_body">组织机构:</label>
|
|
9
|
-
<res-select
|
|
10
|
-
restype='organization'
|
|
11
|
-
:initresid='$parent.$parent.curorgid'
|
|
12
|
-
@res-select="$parent.$parent.getorg"
|
|
13
|
-
is-mul="false"
|
|
14
|
-
></res-select>
|
|
15
|
-
</div>
|
|
16
|
-
<div class="form-group col-sm-3">
|
|
17
|
-
<label class="font_normal_body">工程编号:</label>
|
|
18
|
-
<input type="text" style="width:60%" class="input_search" placeholder='工程编号' v-model="model.f_apply_num"
|
|
19
|
-
v-on:keyup.enter="$parent.$parent.search()"
|
|
20
|
-
condition="f_apply_num like '%{}%'">
|
|
21
|
-
</div>
|
|
22
|
-
<div class="form-group col-sm-3">
|
|
23
|
-
<label class="font_normal_body">客户名称:</label>
|
|
24
|
-
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
25
|
-
v-on:keyup.enter="$parent.$parent.search()" condition="f_user_name like '%{}%'" placeholder='客户名称'>
|
|
26
|
-
</div>
|
|
27
|
-
<div class="form-group col-sm-3 button-range">
|
|
28
|
-
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
29
|
-
<button class="button_search button_spacing" @click="$parent.$parent.loadPage()">返回</button>
|
|
30
|
-
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
31
|
-
<div
|
|
32
|
-
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
33
|
-
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
34
|
-
class="button_spacing"
|
|
35
|
-
style="float: right">
|
|
36
|
-
</div>
|
|
37
|
-
</div>
|
|
38
|
-
</div>
|
|
39
|
-
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
40
|
-
<div class="form-group col-sm-3">
|
|
41
|
-
<label class="font_normal_body">用户编号:</label>
|
|
42
|
-
<input type="text" style="width:60%" class="input_search" placeholder='用户编号' v-model="model.f_userinfo_code"
|
|
43
|
-
v-on:keyup.enter="$parent.$parent.search()"
|
|
44
|
-
condition="f_userinfo_code like '%{}%'">
|
|
45
|
-
</div>
|
|
46
|
-
<div class="form-group col-sm-3">
|
|
47
|
-
<label class="font_normal_body">联系电话:</label>
|
|
48
|
-
<input type="text" style="width:60%" class="input_search" placeholder='联系电话' v-model="model.f_phone"
|
|
49
|
-
v-on:keyup.enter="$parent.$parent.search()"
|
|
50
|
-
condition="f_phone like '%{}%'">
|
|
51
|
-
</div>
|
|
52
|
-
<div class="form-group col-sm-3">
|
|
53
|
-
<label class="font_normal_body">身份证号:</label>
|
|
54
|
-
<input type="text" style="width:60%" class="input_search" placeholder='身份证号' v-model="model.f_idnumber"
|
|
55
|
-
v-on:keyup.enter="$parent.$parent.search()"
|
|
56
|
-
condition="f_idnumber like '%{}%'">
|
|
57
|
-
</div>
|
|
58
|
-
<div class="form-group col-sm-3">
|
|
59
|
-
<label class="font_normal_body">合同编号:</label>
|
|
60
|
-
<input type="text" style="width:60%" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
|
|
61
|
-
v-on:keyup.enter="$parent.$parent.search()"
|
|
62
|
-
condition="f_contract_number = '{}'">
|
|
63
|
-
</div>
|
|
64
|
-
<div class="form-group col-sm-3">
|
|
65
|
-
<label class="font_normal_body">报建类型:</label>
|
|
66
|
-
<v-select
|
|
67
|
-
v-model="model.f_apply_type"
|
|
68
|
-
placeholder='报建类型'
|
|
69
|
-
condition="f_apply_type = '{}'"
|
|
70
|
-
:value.sync="model.f_apply_type"
|
|
71
|
-
:options='$parent.$parent.applytype'
|
|
72
|
-
class="select select_list"
|
|
73
|
-
:value-single="true"
|
|
74
|
-
@change="$parent.$parent.applyTypeChange()"
|
|
75
|
-
close-on-select ></v-select>
|
|
76
|
-
</div>
|
|
77
|
-
<div class="form-group col-sm-3">
|
|
78
|
-
<label class="font_normal_body">办理环节:</label>
|
|
79
|
-
<v-select
|
|
80
|
-
v-model="model.defname"
|
|
81
|
-
placeholder='办理环节'
|
|
82
|
-
condition="defname = '{}'"
|
|
83
|
-
:value.sync="model.defname"
|
|
84
|
-
:options='$parent.$parent.defnames'
|
|
85
|
-
class="select select_list"
|
|
86
|
-
:value-single="true"
|
|
87
|
-
close-on-select ></v-select>
|
|
88
|
-
</div>
|
|
89
|
-
<div class="form-group col-sm-3">
|
|
90
|
-
<label class="font_normal_body">报建性质:</label>
|
|
91
|
-
<v-select
|
|
92
|
-
v-model="model.f_apply_nature"
|
|
93
|
-
placeholder='报建性质'
|
|
94
|
-
condition="f_apply_nature = '{}'"
|
|
95
|
-
:value.sync="model.f_apply_nature"
|
|
96
|
-
:options='$parent.$parent.applyNatures'
|
|
97
|
-
class="select select_list"
|
|
98
|
-
:value-single="true"
|
|
99
|
-
close-on-select ></v-select>
|
|
100
|
-
</div>
|
|
101
|
-
<div class="form-group col-sm-3">
|
|
102
|
-
<label class="font_normal_body">用户地址:</label>
|
|
103
|
-
<input type="text" style="width:60%" class="input_search" placeholder='用户地址' v-model="model.f_address"
|
|
104
|
-
v-on:keyup.enter="$parent.$parent.search()"
|
|
105
|
-
condition="f_address like '%{}%'">
|
|
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="f_apply_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="f_apply_date <= '{}'">
|
|
127
|
-
</datepicker>
|
|
128
|
-
</div>
|
|
129
|
-
<div class="form-group col-sm-3">
|
|
130
|
-
<label class="font_normal_body">确认收款:</label>
|
|
131
|
-
<v-select
|
|
132
|
-
v-model="model.confirmtotal"
|
|
133
|
-
placeholder='确认收款'
|
|
134
|
-
:value.sync="model.confirmtotal"
|
|
135
|
-
:options='$parent.$parent.confirmtotals'
|
|
136
|
-
class="select select_list"
|
|
137
|
-
:value-single="true"
|
|
138
|
-
close-on-select ></v-select>
|
|
139
|
-
</div>
|
|
140
|
-
</div>
|
|
141
|
-
</div>
|
|
142
|
-
</criteria>
|
|
143
|
-
<data-grid v-if="$parent.showData" :model="model" partial='list' v-ref:grid class="list_area table_sy">
|
|
144
|
-
<template partial='head'>
|
|
145
|
-
<tr class="title">
|
|
146
|
-
<th style="white-space: nowrap;"
|
|
147
|
-
<th style="white-space: nowrap;"
|
|
148
|
-
<th style="white-space: nowrap;"
|
|
149
|
-
<th style="white-space: nowrap;"
|
|
150
|
-
<th style="white-space: nowrap;"
|
|
151
|
-
<th style="white-space: nowrap;"
|
|
152
|
-
<th style="white-space: nowrap;"
|
|
153
|
-
<th style="white-space: nowrap;"
|
|
154
|
-
<th style="white-space: nowrap;"
|
|
155
|
-
<th style="white-space: nowrap;"
|
|
156
|
-
<th style="white-space: nowrap;"
|
|
157
|
-
<th style="white-space: nowrap;"
|
|
158
|
-
<th style="white-space: nowrap;"
|
|
159
|
-
<th style="white-space: nowrap;"
|
|
160
|
-
</tr>
|
|
161
|
-
</template>
|
|
162
|
-
<template partial='body'>
|
|
163
|
-
<tr>
|
|
164
|
-
<td style="text-align: center;">
|
|
165
|
-
<
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
</td>
|
|
176
|
-
<td style="text-align: center;">
|
|
177
|
-
<nobr>{{
|
|
178
|
-
</td>
|
|
179
|
-
<td style="text-align: center;">
|
|
180
|
-
<nobr>{{row.
|
|
181
|
-
</td>
|
|
182
|
-
<td style="text-align: center;">
|
|
183
|
-
<nobr>{{row.
|
|
184
|
-
</td>
|
|
185
|
-
<td style="text-align: center;">
|
|
186
|
-
<nobr>{{row.
|
|
187
|
-
</td>
|
|
188
|
-
<td style="text-align: center;">
|
|
189
|
-
<nobr>{{row.
|
|
190
|
-
</td>
|
|
191
|
-
<td style="text-align: center;">
|
|
192
|
-
<nobr>{{row.
|
|
193
|
-
</td>
|
|
194
|
-
<td style="text-align: center;">
|
|
195
|
-
<nobr>{{row.
|
|
196
|
-
</td>
|
|
197
|
-
<td style="text-align: center;">
|
|
198
|
-
<nobr>{{row.
|
|
199
|
-
</td>
|
|
200
|
-
<td style="text-align: center;">
|
|
201
|
-
<nobr>{{row.
|
|
202
|
-
</td>
|
|
203
|
-
<td style="text-align: center;">
|
|
204
|
-
<
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
</
|
|
214
|
-
</td>
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
</
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
import {
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
//
|
|
290
|
-
//
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
{
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
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-3">
|
|
8
|
+
<label class="font_normal_body">组织机构:</label>
|
|
9
|
+
<res-select
|
|
10
|
+
restype='organization'
|
|
11
|
+
:initresid='$parent.$parent.curorgid'
|
|
12
|
+
@res-select="$parent.$parent.getorg"
|
|
13
|
+
is-mul="false"
|
|
14
|
+
></res-select>
|
|
15
|
+
</div>
|
|
16
|
+
<div class="form-group col-sm-3">
|
|
17
|
+
<label class="font_normal_body">工程编号:</label>
|
|
18
|
+
<input type="text" style="width:60%" class="input_search" placeholder='工程编号' v-model="model.f_apply_num"
|
|
19
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
20
|
+
condition="f_apply_num like '%{}%'">
|
|
21
|
+
</div>
|
|
22
|
+
<div class="form-group col-sm-3">
|
|
23
|
+
<label class="font_normal_body">客户名称:</label>
|
|
24
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
|
|
25
|
+
v-on:keyup.enter="$parent.$parent.search()" condition="f_user_name like '%{}%'" placeholder='客户名称'>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="form-group col-sm-3 button-range">
|
|
28
|
+
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
29
|
+
<button class="button_search button_spacing" @click="$parent.$parent.loadPage()">返回</button>
|
|
30
|
+
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
31
|
+
<div
|
|
32
|
+
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
33
|
+
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
34
|
+
class="button_spacing"
|
|
35
|
+
style="float: right">
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
40
|
+
<div class="form-group col-sm-3">
|
|
41
|
+
<label class="font_normal_body">用户编号:</label>
|
|
42
|
+
<input type="text" style="width:60%" class="input_search" placeholder='用户编号' v-model="model.f_userinfo_code"
|
|
43
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
44
|
+
condition="f_userinfo_code like '%{}%'">
|
|
45
|
+
</div>
|
|
46
|
+
<div class="form-group col-sm-3">
|
|
47
|
+
<label class="font_normal_body">联系电话:</label>
|
|
48
|
+
<input type="text" style="width:60%" class="input_search" placeholder='联系电话' v-model="model.f_phone"
|
|
49
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
50
|
+
condition="f_phone like '%{}%'">
|
|
51
|
+
</div>
|
|
52
|
+
<div class="form-group col-sm-3">
|
|
53
|
+
<label class="font_normal_body">身份证号:</label>
|
|
54
|
+
<input type="text" style="width:60%" class="input_search" placeholder='身份证号' v-model="model.f_idnumber"
|
|
55
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
56
|
+
condition="f_idnumber like '%{}%'">
|
|
57
|
+
</div>
|
|
58
|
+
<div class="form-group col-sm-3">
|
|
59
|
+
<label class="font_normal_body">合同编号:</label>
|
|
60
|
+
<input type="text" style="width:60%" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
|
|
61
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
62
|
+
condition="f_contract_number = '{}'">
|
|
63
|
+
</div>
|
|
64
|
+
<div class="form-group col-sm-3">
|
|
65
|
+
<label class="font_normal_body">报建类型:</label>
|
|
66
|
+
<v-select
|
|
67
|
+
v-model="model.f_apply_type"
|
|
68
|
+
placeholder='报建类型'
|
|
69
|
+
condition="f_apply_type = '{}'"
|
|
70
|
+
:value.sync="model.f_apply_type"
|
|
71
|
+
:options='$parent.$parent.applytype'
|
|
72
|
+
class="select select_list"
|
|
73
|
+
:value-single="true"
|
|
74
|
+
@change="$parent.$parent.applyTypeChange()"
|
|
75
|
+
close-on-select ></v-select>
|
|
76
|
+
</div>
|
|
77
|
+
<div class="form-group col-sm-3">
|
|
78
|
+
<label class="font_normal_body">办理环节:</label>
|
|
79
|
+
<v-select
|
|
80
|
+
v-model="model.defname"
|
|
81
|
+
placeholder='办理环节'
|
|
82
|
+
condition="defname = '{}'"
|
|
83
|
+
:value.sync="model.defname"
|
|
84
|
+
:options='$parent.$parent.defnames'
|
|
85
|
+
class="select select_list"
|
|
86
|
+
:value-single="true"
|
|
87
|
+
close-on-select ></v-select>
|
|
88
|
+
</div>
|
|
89
|
+
<div class="form-group col-sm-3">
|
|
90
|
+
<label class="font_normal_body">报建性质:</label>
|
|
91
|
+
<v-select
|
|
92
|
+
v-model="model.f_apply_nature"
|
|
93
|
+
placeholder='报建性质'
|
|
94
|
+
condition="f_apply_nature = '{}'"
|
|
95
|
+
:value.sync="model.f_apply_nature"
|
|
96
|
+
:options='$parent.$parent.applyNatures'
|
|
97
|
+
class="select select_list"
|
|
98
|
+
:value-single="true"
|
|
99
|
+
close-on-select ></v-select>
|
|
100
|
+
</div>
|
|
101
|
+
<div class="form-group col-sm-3">
|
|
102
|
+
<label class="font_normal_body">用户地址:</label>
|
|
103
|
+
<input type="text" style="width:60%" class="input_search" placeholder='用户地址' v-model="model.f_address"
|
|
104
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
105
|
+
condition="f_address like '%{}%'">
|
|
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="f_apply_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="f_apply_date <= '{}'">
|
|
127
|
+
</datepicker>
|
|
128
|
+
</div>
|
|
129
|
+
<div class="form-group col-sm-3">
|
|
130
|
+
<label class="font_normal_body">确认收款:</label>
|
|
131
|
+
<v-select
|
|
132
|
+
v-model="model.confirmtotal"
|
|
133
|
+
placeholder='确认收款'
|
|
134
|
+
:value.sync="model.confirmtotal"
|
|
135
|
+
:options='$parent.$parent.confirmtotals'
|
|
136
|
+
class="select select_list"
|
|
137
|
+
:value-single="true"
|
|
138
|
+
close-on-select ></v-select>
|
|
139
|
+
</div>
|
|
140
|
+
</div>
|
|
141
|
+
</div>
|
|
142
|
+
</criteria>
|
|
143
|
+
<data-grid v-if="$parent.showData" :model="model" partial='list' v-ref:grid class="list_area table_sy">
|
|
144
|
+
<template partial='head'>
|
|
145
|
+
<tr class="title">
|
|
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>
|
|
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
|
+
</tr>
|
|
161
|
+
</template>
|
|
162
|
+
<template partial='body'>
|
|
163
|
+
<tr>
|
|
164
|
+
<td style="text-align: center;">
|
|
165
|
+
<dropdown>
|
|
166
|
+
<button @click="$parent.$parent.$parent.checkfuncs(row)" type="button" data-toggle="dropdown" style="border: 0px;background: none;">
|
|
167
|
+
<span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>
|
|
168
|
+
</button>
|
|
169
|
+
<ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-left">
|
|
170
|
+
<li v-for="(index,func) in $parent.$parent.$parent.funcs" v-if="$parent.$parent.$parent.$parent.showFunc(func.personexpression)">
|
|
171
|
+
<a href="#" @click="$parent.$parent.$parent.$parent.func(func,row)">{{func.title}}</a>
|
|
172
|
+
</li>
|
|
173
|
+
</ul>
|
|
174
|
+
</dropdown>
|
|
175
|
+
</td>
|
|
176
|
+
<td style="text-align: center;">
|
|
177
|
+
<nobr>{{$index+1}}</nobr>
|
|
178
|
+
</td>
|
|
179
|
+
<td style="text-align: center;">
|
|
180
|
+
<nobr>{{row.f_apply_num}}</nobr>
|
|
181
|
+
</td>
|
|
182
|
+
<td style="text-align: center;">
|
|
183
|
+
<nobr>{{row.f_user_name}}</nobr>
|
|
184
|
+
</td>
|
|
185
|
+
<td style="text-align: center;">
|
|
186
|
+
<nobr>{{row.f_contract_number}}</nobr>
|
|
187
|
+
</td>
|
|
188
|
+
<td style="text-align: center;">
|
|
189
|
+
<nobr>{{row.f_phone}}</nobr>
|
|
190
|
+
</td>
|
|
191
|
+
<td style="text-align: center;">
|
|
192
|
+
<nobr>{{row.f_address}}</nobr>
|
|
193
|
+
</td>
|
|
194
|
+
<td style="text-align: center;">
|
|
195
|
+
<nobr>{{row.f_idnumber}}</nobr>
|
|
196
|
+
</td>
|
|
197
|
+
<td style="text-align: center;">
|
|
198
|
+
<nobr>{{row.f_apply_type}}</nobr>
|
|
199
|
+
</td>
|
|
200
|
+
<td style="text-align: center;">
|
|
201
|
+
<nobr>{{row.defname}}</nobr>
|
|
202
|
+
</td>
|
|
203
|
+
<td style="text-align: center;">
|
|
204
|
+
<nobr>{{row.f_sub_state}}</nobr>
|
|
205
|
+
</td>
|
|
206
|
+
<td style="text-align: center;">
|
|
207
|
+
<nobr>{{row.f_apply_date}}</nobr>
|
|
208
|
+
</td>
|
|
209
|
+
<td style="text-align: center;">
|
|
210
|
+
<nobr>{{row.total}}</nobr>
|
|
211
|
+
</td>
|
|
212
|
+
<td style="text-align: center;">
|
|
213
|
+
<nobr>{{row.confirmtotal}}</nobr>
|
|
214
|
+
</td>
|
|
215
|
+
|
|
216
|
+
</tr>
|
|
217
|
+
</template>
|
|
218
|
+
</data-grid>
|
|
219
|
+
</criteria-paged>
|
|
220
|
+
</div>
|
|
221
|
+
</template>
|
|
222
|
+
<script>
|
|
223
|
+
import {PagedList} from 'vue-client'
|
|
224
|
+
import {isEmpty} from '../../../components/Util'
|
|
225
|
+
export default {
|
|
226
|
+
title: '报建业务信息',
|
|
227
|
+
props: ['showData'],
|
|
228
|
+
data () {
|
|
229
|
+
return {
|
|
230
|
+
model: new PagedList('rs/sql/checkuserfunction', 20, {
|
|
231
|
+
data: {
|
|
232
|
+
orgid: this.$login.f.orgid
|
|
233
|
+
}
|
|
234
|
+
}),
|
|
235
|
+
funcs: [], // 功能列表
|
|
236
|
+
curorgid: [this.$login.f.orgid],
|
|
237
|
+
applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('报建类型')],
|
|
238
|
+
defnames: [{label: '全部', value: ''}], // 流程节点
|
|
239
|
+
confirmtotals: [{label: '全部', value: ''},{label: '是', value: '是'},{label: '否', value: '否'}],
|
|
240
|
+
applyNatures: [{label: '全部', value: ''}], // 报建性质
|
|
241
|
+
criteriaShow: false
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
ready () {
|
|
245
|
+
// 调用查询
|
|
246
|
+
this.search()
|
|
247
|
+
},
|
|
248
|
+
methods: {
|
|
249
|
+
// 查询
|
|
250
|
+
search () {
|
|
251
|
+
this.$dispatch('search')
|
|
252
|
+
},
|
|
253
|
+
searchCondition (args) {
|
|
254
|
+
if (args.model.confirmtotal){
|
|
255
|
+
if (args.model.confirmtotal=='是'){
|
|
256
|
+
args.condition += ' and total = confirmtotal'
|
|
257
|
+
}else {
|
|
258
|
+
args.condition += ' and (total > confirmtotal or total is null)'
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
this.model.search(args.condition, args.model)
|
|
262
|
+
},
|
|
263
|
+
loadPage () {
|
|
264
|
+
this.$dispatch('loadPage')
|
|
265
|
+
},
|
|
266
|
+
// 获取配置
|
|
267
|
+
async checkfuncs (row) {
|
|
268
|
+
|
|
269
|
+
this.funcs = []
|
|
270
|
+
let functions = JSON.parse(JSON.stringify(this.$function_vue.functions))
|
|
271
|
+
|
|
272
|
+
for (const item of functions) {
|
|
273
|
+
// 显示类型
|
|
274
|
+
if (item.showApplyTypes) {
|
|
275
|
+
if (item.showApplyTypes.indexOf(row.f_apply_type) === -1) {
|
|
276
|
+
continue
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
// 显示节点
|
|
280
|
+
if (item.showDefnames) {
|
|
281
|
+
if (item.showDefnames.indexOf(row.defname) === -1) {
|
|
282
|
+
continue
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
// 显示设备
|
|
286
|
+
if (item.device && item.device !== 'pc') {
|
|
287
|
+
continue
|
|
288
|
+
}
|
|
289
|
+
// if (item.device || item.device !== 'pc') {
|
|
290
|
+
// continue
|
|
291
|
+
// }
|
|
292
|
+
this.funcs.push(item)
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
// 点击功能操作
|
|
296
|
+
func (func, row) {
|
|
297
|
+
this.$dispatch('func', func, row)
|
|
298
|
+
},
|
|
299
|
+
// 权限控制
|
|
300
|
+
showFunc (personexpression) {
|
|
301
|
+
|
|
302
|
+
if (isEmpty(personexpression)) {
|
|
303
|
+
return true
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
let mark = personexpression.charAt(0)
|
|
307
|
+
|
|
308
|
+
let str = personexpression.substring(2, personexpression.length-1)
|
|
309
|
+
|
|
310
|
+
if (mark === 'D' && this.$login.f.f_department_name.includes(str)) {
|
|
311
|
+
return true
|
|
312
|
+
}
|
|
313
|
+
if (mark === 'R' && this.$login.f.f_role_name.includes(str)) {
|
|
314
|
+
return true
|
|
315
|
+
}
|
|
316
|
+
if (mark === 'P' && this.$login.f.id.includes(str)) {
|
|
317
|
+
return true
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
return false
|
|
321
|
+
},
|
|
322
|
+
async applyTypeChange () {
|
|
323
|
+
if (!isEmpty(this.$refs.cp.$refs.cri.model.f_apply_type)) {
|
|
324
|
+
let res = await this.$resetpost('rs/logic/getDefnameByType',
|
|
325
|
+
{ f_apply_type: this.$refs.cp.$refs.cri.model.f_apply_type },
|
|
326
|
+
{resolveMsg: null, rejectMsg: '节点信息获取失败!!!'}
|
|
327
|
+
)
|
|
328
|
+
|
|
329
|
+
this.defnames = [{label: '全部', value: ''}, ...res.data]
|
|
330
|
+
|
|
331
|
+
this.applyNatures = isEmpty(this.$appdata.getParam(`${this.$refs.cp.$refs.cri.model.f_apply_type}性质`)) ? [{label: '全部', value: ''}] : [{label: '全部', value: ''}, ...this.$appdata.getParam(`${this.$refs.cp.$refs.cri.model.f_apply_type}性质`)]
|
|
332
|
+
} else {
|
|
333
|
+
this.defnames = [{label: '全部', value: ''}]
|
|
334
|
+
|
|
335
|
+
this.applyNatures = [{label: '全部', value: ''}]
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
clear () {
|
|
339
|
+
Object.keys(this.$refs.cp.$refs.cri.model).forEach((key) => {
|
|
340
|
+
this.$refs.cp.$refs.cri.model[key] = null
|
|
341
|
+
})
|
|
342
|
+
},
|
|
343
|
+
getorg (val) {
|
|
344
|
+
if (val.length <= 0) {
|
|
345
|
+
return
|
|
346
|
+
}
|
|
347
|
+
this.model.params.data.orgid = val[0]
|
|
348
|
+
}
|
|
349
|
+
},
|
|
350
|
+
computed: {
|
|
351
|
+
},
|
|
352
|
+
events: {
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
</script>
|
|
356
|
+
<style scoped>
|
|
357
|
+
</style>
|
|
@@ -562,8 +562,8 @@
|
|
|
562
562
|
{resolveMsg: null, rejectMsg: '查询失败!!!'}
|
|
563
563
|
)
|
|
564
564
|
for (let i =0;i<res1.data.length;i++){
|
|
565
|
-
if (isEmpty(res1.data[i].f_confirm_person)
|
|
566
|
-
this.$showAlert(`当前${defname}
|
|
565
|
+
if (isEmpty(res1.data[i].f_confirm_person)){
|
|
566
|
+
this.$showAlert(`当前${defname}环节,费用未收费确认,请仔细检查并点击保存`, 'warning', 3000)
|
|
567
567
|
throw null
|
|
568
568
|
}
|
|
569
569
|
}
|
|
@@ -1533,6 +1533,11 @@
|
|
|
1533
1533
|
}
|
|
1534
1534
|
}
|
|
1535
1535
|
},
|
|
1536
|
+
//报建性质改变合同类型
|
|
1537
|
+
'changehetong'(index){
|
|
1538
|
+
let nextindex = parseInt(index) + 1
|
|
1539
|
+
this.setLabelValue(this.show_data.fields[nextindex].label, this.$appdata.getSingleValue(this.show_data.fields[index].value)?this.$appdata.getSingleValue(this.show_data.fields[index].value):'')
|
|
1540
|
+
},
|
|
1536
1541
|
// 团购转散户初始化
|
|
1537
1542
|
'apply2ReadyEvent' () {
|
|
1538
1543
|
if (this.show_data.f_apply_source === '线下发起') {
|
|
@@ -1615,7 +1620,7 @@
|
|
|
1615
1620
|
// let f_room_suffix = f_room ? this.config.f_room_suffix : ''
|
|
1616
1621
|
let f_room_suffix = f_room ? '室' : ''
|
|
1617
1622
|
|
|
1618
|
-
let f_address =
|
|
1623
|
+
let f_address = f_residential_area + f_building + f_building_suffix + f_unit + f_unit_suffix + f_floor + f_floor_suffix + f_room + f_room_suffix
|
|
1619
1624
|
this.setLabelValue("地址", f_address)
|
|
1620
1625
|
}
|
|
1621
1626
|
}
|
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
<data-grid :model="model" v-ref:grid class="list_area table_sy" style="padding: 0px">
|
|
4
4
|
<template partial='head'>
|
|
5
5
|
<tr>
|
|
6
|
+
<th class="textNoLineBreak">
|
|
7
|
+
<button
|
|
8
|
+
type="button"
|
|
9
|
+
class="btn btn-info head-but"
|
|
10
|
+
@click="$parent.$parent.showChargeModal()"
|
|
11
|
+
|
|
12
|
+
>新增收费</button>
|
|
13
|
+
</th>
|
|
6
14
|
<th class="textNoLineBreak">序号</th>
|
|
7
15
|
<th class="textNoLineBreak" v-if="selectdata.f_apply_type !== '开发商集体报建'">地址</th>
|
|
8
16
|
<th class="textNoLineBreak">缴费编号</th>
|
|
@@ -25,18 +33,46 @@
|
|
|
25
33
|
<th class="textNoLineBreak">确认时间</th>
|
|
26
34
|
<th class="textNoLineBreak">审核人</th>
|
|
27
35
|
<th class="textNoLineBreak">审核时间</th>
|
|
28
|
-
<th class="textNoLineBreak">
|
|
29
|
-
<button
|
|
30
|
-
type="button"
|
|
31
|
-
class="btn btn-info head-but"
|
|
32
|
-
@click="$parent.$parent.showChargeModal()"
|
|
33
|
-
|
|
34
|
-
>新增收费</button>
|
|
35
|
-
</th>
|
|
36
36
|
</tr>
|
|
37
37
|
</template>
|
|
38
38
|
<template partial='body'>
|
|
39
39
|
<tr>
|
|
40
|
+
<td style="text-align: center;">
|
|
41
|
+
<nobr v-if="row.f_charge_status !== '退款'&& row.f_charge_status !== '作废' && row.f_confirm_person==null">
|
|
42
|
+
<button
|
|
43
|
+
type="button"
|
|
44
|
+
name="button"
|
|
45
|
+
class="btn btn-link"
|
|
46
|
+
:disabled="$parent.$parent.mark === 1 || row.f_charge_status === '作废'"
|
|
47
|
+
@click="$parent.$parent.showConfirmModal(row,'确认收款')"
|
|
48
|
+
>确认收款</button>
|
|
49
|
+
</nobr>
|
|
50
|
+
<!-- <nobr v-if="row.f_charge_status !== '退款'&& row.f_charge_status !== '作废' && row.f_confirm_person!=null&& row.f_auditor_person==null">
|
|
51
|
+
<button
|
|
52
|
+
type="button"
|
|
53
|
+
name="button"
|
|
54
|
+
class="btn btn-link"
|
|
55
|
+
:disabled="$parent.$parent.mark === 1 || row.f_charge_status === '作废'"
|
|
56
|
+
@click="$parent.$parent.showConfirmModal(row,'确认审核')"
|
|
57
|
+
>确认审核</button>
|
|
58
|
+
</nobr>-->
|
|
59
|
+
<nobr v-if="row.f_charge_status !== '退款'">
|
|
60
|
+
<button
|
|
61
|
+
type="button"
|
|
62
|
+
name="button"
|
|
63
|
+
class="btn btn-link"
|
|
64
|
+
:disabled="$parent.$parent.mark === 1 || row.f_charge_status === '作废'"
|
|
65
|
+
@click="$parent.$parent.showInvalidModal(row)"
|
|
66
|
+
>作废</button>
|
|
67
|
+
|
|
68
|
+
<button
|
|
69
|
+
type="button"
|
|
70
|
+
name="button"
|
|
71
|
+
class="btn btn-link"
|
|
72
|
+
@click="$parent.$parent.showPrintModal(row)"
|
|
73
|
+
>打印预览</button>
|
|
74
|
+
</nobr>
|
|
75
|
+
</td>
|
|
40
76
|
<td style="text-align: center;">
|
|
41
77
|
<nobr>{{$index+1}}</nobr>
|
|
42
78
|
</td>
|
|
@@ -103,42 +139,6 @@
|
|
|
103
139
|
<td style="text-align: center;">
|
|
104
140
|
<nobr>{{row.f_auditor_date}}</nobr>
|
|
105
141
|
</td>
|
|
106
|
-
<td style="text-align: center;">
|
|
107
|
-
<nobr v-if="row.f_charge_status !== '退款'&& row.f_charge_status !== '作废' && row.f_confirm_person==null">
|
|
108
|
-
<button
|
|
109
|
-
type="button"
|
|
110
|
-
name="button"
|
|
111
|
-
class="btn btn-link"
|
|
112
|
-
:disabled="$parent.$parent.mark === 1 || row.f_charge_status === '作废'"
|
|
113
|
-
@click="$parent.$parent.showConfirmModal(row,'确认收款')"
|
|
114
|
-
>确认收款</button>
|
|
115
|
-
</nobr>
|
|
116
|
-
<nobr v-if="row.f_charge_status !== '退款'&& row.f_charge_status !== '作废' && row.f_confirm_person!=null&& row.f_auditor_person==null">
|
|
117
|
-
<button
|
|
118
|
-
type="button"
|
|
119
|
-
name="button"
|
|
120
|
-
class="btn btn-link"
|
|
121
|
-
:disabled="$parent.$parent.mark === 1 || row.f_charge_status === '作废'"
|
|
122
|
-
@click="$parent.$parent.showConfirmModal(row,'确认审核')"
|
|
123
|
-
>确认审核</button>
|
|
124
|
-
</nobr>
|
|
125
|
-
<nobr v-if="row.f_charge_status !== '退款'">
|
|
126
|
-
<button
|
|
127
|
-
type="button"
|
|
128
|
-
name="button"
|
|
129
|
-
class="btn btn-link"
|
|
130
|
-
:disabled="$parent.$parent.mark === 1 || row.f_charge_status === '作废'"
|
|
131
|
-
@click="$parent.$parent.showInvalidModal(row)"
|
|
132
|
-
>作废</button>
|
|
133
|
-
|
|
134
|
-
<button
|
|
135
|
-
type="button"
|
|
136
|
-
name="button"
|
|
137
|
-
class="btn btn-link"
|
|
138
|
-
@click="$parent.$parent.showPrintModal(row)"
|
|
139
|
-
>打印预览</button>
|
|
140
|
-
</nobr>
|
|
141
|
-
</td>
|
|
142
142
|
</tr>
|
|
143
143
|
</template>
|
|
144
144
|
</data-grid>
|
|
@@ -520,7 +520,7 @@
|
|
|
520
520
|
<button type="button" class="btn btn-primary" @click="ConfirmPayment()">确认收款</button>
|
|
521
521
|
</footer>
|
|
522
522
|
</modal>
|
|
523
|
-
<modal v-if="showauditor" :show.sync="showauditor" v-ref:modal :backdrop="false" title="确认审核">
|
|
523
|
+
<!-- <modal v-if="showauditor" :show.sync="showauditor" v-ref:modal :backdrop="false" title="确认审核">
|
|
524
524
|
<header slot="modal-header" class="modal-header">
|
|
525
525
|
<button type="button" class="close" @click="closeModal"><span>×</span></button>
|
|
526
526
|
<h4 class="modal-title">确认审核</h4>
|
|
@@ -637,7 +637,7 @@
|
|
|
637
637
|
<footer slot="modal-footer" class="modal-footer">
|
|
638
638
|
<button type="button" class="btn btn-primary" @click="ConfirmPayment()">确认收款</button>
|
|
639
639
|
</footer>
|
|
640
|
-
</modal
|
|
640
|
+
</modal>-->
|
|
641
641
|
<modal v-if="showPrint" :show.sync="showPrint" v-ref:modal :large="true" :backdrop="false" title="打印预览">
|
|
642
642
|
<header slot="modal-header" class="modal-header">
|
|
643
643
|
<button type="button" class="close" @click="closeModal"><span>×</span></button>
|
|
@@ -794,7 +794,7 @@ export default {
|
|
|
794
794
|
{resolveMsg: null, rejectMsg: '查询失败!!!'}
|
|
795
795
|
)
|
|
796
796
|
for (let i =0;i<res1.data.length;i++){
|
|
797
|
-
if (isEmpty(res1.data[i].f_confirm_person)
|
|
797
|
+
if (isEmpty(res1.data[i].f_confirm_person)){
|
|
798
798
|
flag = false
|
|
799
799
|
}
|
|
800
800
|
}
|
|
@@ -831,6 +831,9 @@ export default {
|
|
|
831
831
|
},
|
|
832
832
|
// 新增收费
|
|
833
833
|
async saveCharge() {
|
|
834
|
+
if(this.charge.charges.length <= 0){
|
|
835
|
+
return this.$showMessage('收费项目不能为空,请添加收费项目!!')
|
|
836
|
+
}
|
|
834
837
|
let http = new HttpResetClass()
|
|
835
838
|
this.charge.defname = this.selectdata.defname
|
|
836
839
|
let data = {
|