apply-clients 3.5.6-2 → 3.5.6-21

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.
Files changed (25) hide show
  1. package/build/dev-server.js +4 -4
  2. package/package.json +1 -1
  3. package/src/filiale/dingcheng/android/AppInstallationDetails.vue +477 -478
  4. package/src/filiale/dingcheng/pc/InstallationDetails.vue +607 -608
  5. package/src/filiale/fugou/android/AppDevicesManagement.vue +516 -521
  6. package/src/filiale/fugou/android/AppInstallationDetails.vue +541 -542
  7. package/src/filiale/fugou/pc/ServiceControl.vue +9 -0
  8. package/src/filiale/gongyi/pc/chargeManagement.vue +765 -765
  9. package/src/filiale/jinhuang/pc/Applybatchdispatch.vue +770 -0
  10. package/src/filiale/jinhuang/pc/ContractList.vue +222 -220
  11. package/src/filiale/jinhuang/pc/ServiceControl.vue +2016 -2016
  12. package/src/filiale/jinhuang/pc/SupervisoryList.vue +478 -459
  13. package/src/filiale/jinhuang/pc.js +2 -1
  14. package/src/filiale/shexian/android/AppServiceControl.vue +18 -1
  15. package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +1 -1
  16. package/src/filiale/yangchunboneng/android/AppInstallationMaterial.vue +1 -1
  17. package/src/filiale/yangchunboneng/android/AppOtherChargeList.vue +281 -0
  18. package/src/filiale/yangchunboneng/android/AppServiceControl.vue +4 -0
  19. package/src/filiale/yangchunboneng/android.js +2 -1
  20. package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +622 -612
  21. package/src/filiale/yangchunboneng/pc/InstallInfoSelect.vue +400 -365
  22. package/src/filiale/yangchunboneng/pc/ServiceControl.vue +4 -0
  23. package/src/filiale/yangchunboneng/pc/SupervisoryList.vue +30 -3
  24. package/src/filiale/yangchunboneng/pc/chargeManagement.vue +9 -6
  25. package/src/main.js +1 -1
@@ -1899,6 +1899,10 @@
1899
1899
  }
1900
1900
  }
1901
1901
  if(this.show_data.defname === '工程派工' ){
1902
+ if(isEmpty(this.show_data.f_budget_people) || this.show_data.f_budget_people.length === 0){
1903
+ this.$showMessage('请选择施工人员!')
1904
+ return
1905
+ }
1902
1906
  this.show_data.f_budget_peoples = []
1903
1907
  for (const item of this.show_data.fields) {
1904
1908
  if (item.label === '施工人') {
@@ -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="actend6.finishtime >= '{}'">
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="actend6.finishtime <= '{}'">
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;">施工人</th>
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.f_budget_people}}</nobr>
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
  }
@@ -619,11 +619,14 @@
619
619
  <div class="form-group col-sm-12">
620
620
  <label class="col-sm-2 control-label">付款方式:</label>
621
621
  <div class="col-sm-10">
622
- <input type="text"
623
- class="form-control input_view"
624
- style="width: 100%"
625
- readonly
626
- v-model="charge.f_payment_method" />
622
+ <input-select
623
+ placeholder='请选择' width="100%"
624
+ v-model="charge.f_payment_method"
625
+ :value.sync="charge.f_payment_method"
626
+ :options='paymentMethod'
627
+ class="select select_list"
628
+ :value-single="true"
629
+ close-on-select ></input-select>
627
630
  </div>
628
631
  </div>
629
632
  <div class="form-group col-sm-12">
@@ -831,7 +834,7 @@ export default {
831
834
  show_data.user = this.$login.f
832
835
  show_data.start_activity ='报装申请'
833
836
  show_data.xmlfilename =this.selectdata.f_apply_type
834
- if (((show_data.f_apply_type == '民用散户报建流程' || show_data.f_apply_type == '民用预留户报建流程') && show_data.defname == '工程审批') || this.show_data.defname === '工程决算'){
837
+ if (((show_data.f_apply_type == '民用散户报建流程' || show_data.f_apply_type == '民用预留户报建流程') && show_data.defname == '工程审批') || show_data.defname === '工程决算'){
835
838
  show_data.button = {button_name:'跳过'}
836
839
  }else {
837
840
  show_data.button = {button_name:'提交'}
package/src/main.js CHANGED
@@ -9,7 +9,7 @@ import {material} from 'material-client'
9
9
  import apply from './apply'
10
10
 
11
11
  all()
12
- apply('fugou')
12
+ apply('jinhuang')
13
13
  ldap()
14
14
  sale()
15
15
  material()