safecheck-client 3.0.34-1 → 3.0.34-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.
Files changed (42) hide show
  1. package/package.json +1 -1
  2. package/src/components/android/ImgSelfAndroid.vue +181 -181
  3. package/src/components/android/SafePlanItem.vue +509 -509
  4. package/src/components/safecheckNew/android/SafecheckOrderV.vue +2731 -2731
  5. package/src/filiale/baiyin/android/AndroidDefectDeal.vue +633 -633
  6. package/src/filiale/baiyin/android.js +10 -10
  7. package/src/filiale/baiyin/pc/CheckPlanAreaList.vue +485 -485
  8. package/src/filiale/baiyin/pc/CheckSearchUser.vue +1067 -1067
  9. package/src/filiale/baiyin/pc/DefectListNew.vue +597 -597
  10. package/src/filiale/baiyin/pc/DefectMainNew.vue +63 -63
  11. package/src/filiale/baiyin/pc/DefectPaperNew.vue +1052 -1052
  12. package/src/filiale/baiyin/pc/PaperList.vue +790 -790
  13. package/src/filiale/baiyin/pc/PlanChooser.vue +167 -167
  14. package/src/filiale/baiyin/pc/PlanManage.vue +834 -834
  15. package/src/filiale/baiyin/pc/RightTreeSafe.vue +348 -348
  16. package/src/filiale/baiyin/pc/RoleSelector.vue +160 -160
  17. package/src/filiale/jiaxian/android/SafecheckDevices.vue +1298 -1298
  18. package/src/filiale/jiaxian/android.js +10 -10
  19. package/src/filiale/jiaxian/pc.js +12 -12
  20. package/src/filiale/qingjian/android/PhoneUpUserinfo.vue +1270 -1270
  21. package/src/filiale/qingjian/android/SafecheckOrderV.vue +2844 -2844
  22. package/src/filiale/rongchuang/android/SafecheckOrderV.vue +2696 -2696
  23. package/src/filiale/siyang/pc/NewCheckpaper.vue +1938 -1938
  24. package/src/filiale/siyang/pc/checkUserList.vue +786 -786
  25. package/src/filiale/siyang/pc.js +16 -16
  26. package/src/filiale/weinan/android/SafecheckDevices.vue +1295 -1295
  27. package/src/filiale/wuan/android/SafecheckOrderV.vue +2240 -2237
  28. package/src/filiale/wuan/android/SafecheckUserInfo.vue +592 -591
  29. package/src/filiale/yangchunboneng/android/NewCheckpaperAndroid.vue +1362 -1362
  30. package/src/filiale/yangchunboneng/android/PaperFeedback.vue +1731 -1731
  31. package/src/filiale/yangchunboneng/android/PhoneUpUserinfo.vue +1235 -1235
  32. package/src/filiale/yangchunboneng/android/SafecheckDevices.vue +1332 -1332
  33. package/src/filiale/yangchunboneng/android/SafecheckOrderV.vue +2845 -2845
  34. package/src/filiale/yangchunboneng/android/SafecheckUserInfo.vue +887 -887
  35. package/src/filiale/yangchunboneng/pc/CheckBookUser.vue +269 -269
  36. package/src/filiale/yangchunboneng/pc/CheckSearchUser.vue +1192 -1192
  37. package/src/filiale/yangchunboneng/pc/DefectPaperNew.vue +1128 -1077
  38. package/src/filiale/yangchunboneng/pc/PaperDefectMain.vue +29 -1
  39. package/src/filiale/yangchunboneng/pc/PaperList.vue +773 -744
  40. package/src/filiale/yuansheng/android/SwitchValve.vue +322 -322
  41. package/src/filiale/yuansheng/android.js +17 -17
  42. package/src/main.js +1 -1
@@ -169,6 +169,30 @@
169
169
  condition="f_repair_date<= '{}'">
170
170
  </datepicker>
171
171
  </div>
172
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
173
+ <label class="font_normal_body">通气开始</label>
174
+ <datepicker
175
+ :value.sync="model.f_gas_start"
176
+ placeholder='首次通气时间' style="width: 60%"
177
+ :disabled-days-of-week="[]"
178
+ :format="'yyyy-MM-dd'"
179
+ :show-rest-button="reset"
180
+ v-model="model.f_gas_start"
181
+ condition="f_uservent_date >='{} 00:00:00'">
182
+ </datepicker>
183
+ </div>
184
+ <div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow">
185
+ <label class="font_normal_body">通气结束</label>
186
+ <datepicker
187
+ :value.sync="model.f_gas_end"
188
+ placeholder='首次通气时间' style="width: 60%"
189
+ :disabled-days-of-week="[]"
190
+ :format="'yyyy-MM-dd'"
191
+ :show-rest-button="reset"
192
+ v-model="model.f_gas_end"
193
+ condition="f_uservent_date <= '{} 23:59:59'">
194
+ </datepicker>
195
+ </div>
172
196
  </div>
173
197
  <modal :show.sync="$parent.$parent.showModal" v-ref:modal>
174
198
  <div slot="modal-header" class="modal-header">
@@ -214,7 +238,9 @@
214
238
  <th>
215
239
  <data-order field="f_address" name="客户地址"></data-order>
216
240
  </th>
217
-
241
+ <th>
242
+ <nobr>通气时间</nobr>
243
+ </th>
218
244
  <th>
219
245
  <data-order field="f_offsite_time" name="安检时间"></data-order>
220
246
  </th>
@@ -254,6 +280,7 @@
254
280
  <td style="text-align: center">{{row.f_user_phone}}</td>
255
281
  <td style="text-align: center">{{row.f_residential_area}}</td>
256
282
  <td style="text-align: center">{{row.f_address}}</td>
283
+ <td style="text-align: center;white-space:nowrap;">{{row.f_uservent_date}}</td>
257
284
  <td style="text-align: center">{{row.f_offsite_time}}</td>
258
285
  <td style="text-align: center">{{row.f_checker_name}}</td>
259
286
  <td style="text-align: center" v-if="row.f_is_repaired == '隐患未处理' && $parent.$parent.$parent.inrole()" @click="$parent.$parent.$parent.showSolve(row)"><a>{{row.f_is_repaired}}</a></td>
@@ -474,6 +501,7 @@
474
501
  'f_user_phone': '客户电话',
475
502
  'f_residential_area': '小区',
476
503
  'f_address': '客户地址',
504
+ 'f_uservent_date': '通气时间',
477
505
  'f_offsite_time': '安检时间',
478
506
  'f_checker_name': '安检员',
479
507
  'f_deal_dispose': '处理方式',