apply-clients 3.5.6-13 → 3.5.6-15
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/filiale/yangchunboneng/android/AppOtherChargeList.vue +281 -0
- package/src/filiale/yangchunboneng/android.js +2 -1
- package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +622 -612
- package/src/filiale/yangchunboneng/pc/InstallInfoSelect.vue +36 -1
- package/src/filiale/yangchunboneng/pc/SupervisoryList.vue +30 -3
|
@@ -126,7 +126,28 @@
|
|
|
126
126
|
condition="f_apply_date <= '{}'">
|
|
127
127
|
</datepicker>
|
|
128
128
|
</div>
|
|
129
|
-
|
|
129
|
+
<div class="form-group col-sm-3">
|
|
130
|
+
<label for="checkstart" class="font_normal_body">派工时间:</label>
|
|
131
|
+
<datepicker id="checkstart" placeholder="开始日期"
|
|
132
|
+
style="width: 60%!important;"
|
|
133
|
+
v-model="model.paigongstartDate"
|
|
134
|
+
:value.sync="model.paigongstartDate"
|
|
135
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
|
136
|
+
:show-reset-button="true"
|
|
137
|
+
condition="actend.finishtime >= '{}'">
|
|
138
|
+
</datepicker>
|
|
139
|
+
</div>
|
|
140
|
+
<div class="form-group col-sm-3">
|
|
141
|
+
<label for="checkend" class="font_normal_body">派工时间:</label>
|
|
142
|
+
<datepicker id="checkend" placeholder="结束日期"
|
|
143
|
+
style="width: 60%!important;"
|
|
144
|
+
v-model="model.paigongendDate"
|
|
145
|
+
:value.sync="model.paigongendDate"
|
|
146
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
|
147
|
+
:show-reset-button="true"
|
|
148
|
+
condition="actend.finishtime <= '{}'">
|
|
149
|
+
</datepicker>
|
|
150
|
+
</div>
|
|
130
151
|
<div class="form-group col-sm-3">
|
|
131
152
|
<label class="font_normal_body">确认收款:</label>
|
|
132
153
|
<v-select
|
|
@@ -138,6 +159,12 @@
|
|
|
138
159
|
:value-single="true"
|
|
139
160
|
close-on-select ></v-select>
|
|
140
161
|
</div>
|
|
162
|
+
<div class="form-group col-sm-3">
|
|
163
|
+
<label class="font_normal_body">发起人:</label>
|
|
164
|
+
<input type="text" style="width:60%" class="input_search" placeholder='发起人' v-model="model.f_operator"
|
|
165
|
+
v-on:keyup.enter="$parent.$parent.search()"
|
|
166
|
+
condition="u.f_operator like '%{}%'">
|
|
167
|
+
</div>
|
|
141
168
|
</div>
|
|
142
169
|
</div>
|
|
143
170
|
</criteria>
|
|
@@ -156,10 +183,12 @@
|
|
|
156
183
|
<th style="white-space: nowrap;">办理环节</th>
|
|
157
184
|
<th style="white-space: nowrap;">流程状态</th>
|
|
158
185
|
<th style="white-space: nowrap;">报建日期</th>
|
|
186
|
+
<th style="white-space: nowrap;">派工时间</th>
|
|
159
187
|
<th style="white-space: nowrap;">付款笔数</th>
|
|
160
188
|
<th style="white-space: nowrap;">确认付款笔数</th>
|
|
161
189
|
<th style="white-space: nowrap;">合同金额</th>
|
|
162
190
|
<th style="white-space: nowrap;">缴费金额</th>
|
|
191
|
+
<th style="white-space: nowrap;">发起人</th>
|
|
163
192
|
</tr>
|
|
164
193
|
</template>
|
|
165
194
|
<template partial='body'>
|
|
@@ -209,6 +238,9 @@
|
|
|
209
238
|
<td style="text-align: center;">
|
|
210
239
|
<nobr>{{row.f_apply_date}}</nobr>
|
|
211
240
|
</td>
|
|
241
|
+
<td style="text-align: center;">
|
|
242
|
+
<nobr>{{row.f_gongcheng_tijiao}}</nobr>
|
|
243
|
+
</td>
|
|
212
244
|
<td style="text-align: center;">
|
|
213
245
|
<nobr>{{row.total}}</nobr>
|
|
214
246
|
</td>
|
|
@@ -221,6 +253,9 @@
|
|
|
221
253
|
<td style="text-align: center;">
|
|
222
254
|
<nobr>{{row.f_charge_money}}</nobr>
|
|
223
255
|
</td>
|
|
256
|
+
<td style="text-align: center;">
|
|
257
|
+
<nobr>{{row.f_operator}}</nobr>
|
|
258
|
+
</td>
|
|
224
259
|
</tr>
|
|
225
260
|
</template>
|
|
226
261
|
</data-grid>
|
|
@@ -279,6 +279,28 @@
|
|
|
279
279
|
condition="f_acceptance_time <= '{}'">
|
|
280
280
|
</datepicker>
|
|
281
281
|
</div>
|
|
282
|
+
<div class="form-group col-sm-3">
|
|
283
|
+
<label for="checkstart" class="font_normal_body">派工时间:</label>
|
|
284
|
+
<datepicker id="checkstart" placeholder="开始日期"
|
|
285
|
+
style="width: 60%!important;"
|
|
286
|
+
v-model="model.paigongstartDate"
|
|
287
|
+
:value.sync="model.paigongstartDate"
|
|
288
|
+
:format="'yyyy-MM-dd 00:00:00'"
|
|
289
|
+
:show-reset-button="true"
|
|
290
|
+
condition="f_gongcheng_tijiao >= '{}'">
|
|
291
|
+
</datepicker>
|
|
292
|
+
</div>
|
|
293
|
+
<div class="form-group col-sm-3">
|
|
294
|
+
<label for="checkend" class="font_normal_body">派工时间:</label>
|
|
295
|
+
<datepicker id="checkend" placeholder="结束日期"
|
|
296
|
+
style="width: 60%!important;"
|
|
297
|
+
v-model="model.paigongendDate"
|
|
298
|
+
:value.sync="model.paigongendDate"
|
|
299
|
+
:format="'yyyy-MM-dd 23:59:59'"
|
|
300
|
+
:show-reset-button="true"
|
|
301
|
+
condition="f_gongcheng_tijiao <= '{}'">
|
|
302
|
+
</datepicker>
|
|
303
|
+
</div>
|
|
282
304
|
<div class="form-group col-sm-3">
|
|
283
305
|
<label class="font_normal_body">施工人:</label>
|
|
284
306
|
<input type="text" style="width:60%" class="input_search" placeholder='施工人' v-model="model.f_budget_people"
|
|
@@ -323,6 +345,7 @@
|
|
|
323
345
|
<th style="white-space: nowrap;">流程状态</th>
|
|
324
346
|
<th style="white-space: nowrap;">报建日期</th>
|
|
325
347
|
<th style="white-space: nowrap;">完工日期</th>
|
|
348
|
+
<th style="white-space: nowrap;">施工人</th>
|
|
326
349
|
<th style="white-space: nowrap;">通气申请人</th>
|
|
327
350
|
<th style="white-space: nowrap;">通气施工人</th>
|
|
328
351
|
<th style="white-space: nowrap;">合同审批人</th>
|
|
@@ -339,7 +362,7 @@
|
|
|
339
362
|
<th style="white-space: nowrap;">缴费金额</th>
|
|
340
363
|
<th style="white-space: nowrap;">验收时间</th>
|
|
341
364
|
<th style="white-space: nowrap;">开工时间</th>
|
|
342
|
-
<th style="white-space: nowrap;"
|
|
365
|
+
<th style="white-space: nowrap;">派工时间</th>
|
|
343
366
|
<th style="white-space: nowrap;">用户评价</th>
|
|
344
367
|
<th style="white-space: nowrap;">发起人</th>
|
|
345
368
|
</tr>
|
|
@@ -388,6 +411,9 @@
|
|
|
388
411
|
<td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
389
412
|
<nobr>{{row.f_finish_date}}</nobr>
|
|
390
413
|
</td>
|
|
414
|
+
<td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
415
|
+
<nobr>{{row.f_budget_people}}</nobr>
|
|
416
|
+
</td>
|
|
391
417
|
<td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
392
418
|
<nobr>{{row.f_shenqing_person}}</nobr>
|
|
393
419
|
</td>
|
|
@@ -437,7 +463,7 @@
|
|
|
437
463
|
<nobr>{{row.f_completion_time}}</nobr>
|
|
438
464
|
</td>
|
|
439
465
|
<td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
440
|
-
<nobr>{{row.
|
|
466
|
+
<nobr>{{row.f_gongcheng_tijiao}}</nobr>
|
|
441
467
|
</td>
|
|
442
468
|
<td @dblclick="$parent.$parent.$parent.check(row)" style="text-align: center;">
|
|
443
469
|
<nobr>{{row.f_user_appraise}}</nobr>
|
|
@@ -513,7 +539,8 @@
|
|
|
513
539
|
'f_completion_time': '开工时间',
|
|
514
540
|
'f_budget_people':'施工人',
|
|
515
541
|
'f_acceptance_time':'验收时间',
|
|
516
|
-
'f_user_satisfied':'服务评价'
|
|
542
|
+
'f_user_satisfied':'服务评价',
|
|
543
|
+
'f_operator':'发起人',
|
|
517
544
|
|
|
518
545
|
}
|
|
519
546
|
}
|