apply-clients 3.5.4-2 → 3.5.4-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 (48) hide show
  1. package/build/dev-server.js +137 -133
  2. package/package.json +1 -1
  3. package/src/App.vue +25 -25
  4. package/src/components/android/Process/AppServiceControl.vue +5 -0
  5. package/src/components/android/Process/Processes/AppAddMaterialScience.vue +493 -493
  6. package/src/components/android/Process/Processes/AppInstallationDetails.vue +1 -3
  7. package/src/components/image/dxf.png +0 -0
  8. package/src/components/product/Process/ExplorationUser.vue +1 -0
  9. package/src/components/product/Process/Processes/addMaterialScience.vue +471 -471
  10. package/src/filiale/baiyin/android/AppServiceControl.vue +1762 -0
  11. package/src/filiale/baiyin/android/ByAddMaterialScience.vue +801 -0
  12. package/src/filiale/baiyin/android/ByDeviceManagement.vue +917 -0
  13. package/src/filiale/baiyin/android.js +8 -0
  14. package/src/filiale/fugou/android/AppChargeManagement.vue +132 -1
  15. package/src/filiale/fugou/pc/ServiceControl.vue +27 -6
  16. package/src/filiale/qianneng/android/AppExplorationUser.vue +38 -0
  17. package/src/filiale/qianneng/android/AppInstallationDetails.vue +20 -11
  18. package/src/filiale/qianneng/pc/ApplyUpload.vue +292 -291
  19. package/src/filiale/qianneng/pc/Applybatchdispatch.vue +11 -6
  20. package/src/filiale/qianneng/pc/InstallationDetails.vue +614 -586
  21. package/src/filiale/qianneng/pc/ServiceControl.vue +1 -0
  22. package/src/filiale/qianneng/pc/printactivatecard.vue +6 -6
  23. package/src/filiale/ruihua/pc/InstallationDetails.vue +610 -0
  24. package/src/filiale/ruihua/pc/ServiceControl.vue +20 -0
  25. package/src/filiale/ruihua/pc/printVentilation.vue +21 -6
  26. package/src/filiale/ruihua/pc.js +1 -0
  27. package/src/filiale/shexian/android/AppServiceControl.vue +1758 -1753
  28. package/src/filiale/shexian/android/AppTakePic.vue +94 -140
  29. package/src/filiale/siyangRH/pc/chargeManagement.vue +810 -0
  30. package/src/filiale/siyangRH/pc.js +1 -0
  31. package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +4 -0
  32. package/src/filiale/yangchunboneng/android/AppExplorationUser.vue +12 -0
  33. package/src/filiale/yangchunboneng/android/AppInstallationMaterial.vue +7 -3
  34. package/src/filiale/yangchunboneng/android/AppServiceControl.vue +17 -1
  35. package/src/filiale/yangchunboneng/android/AppSuperServiceControl.vue +1 -1
  36. package/src/filiale/yangchunboneng/android/AppUpload.vue +50 -8
  37. package/src/filiale/yangchunboneng/pc/ApplyUpload.vue +230 -219
  38. package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +53 -13
  39. package/src/filiale/yangchunboneng/pc/ServiceControl.vue +183 -2
  40. package/src/filiale/yangchunboneng/pc/SupervisoryControlNew.vue +140 -0
  41. package/src/filiale/yangchunboneng/pc/SupervisoryList.vue +54 -13
  42. package/src/filiale/yangchunboneng/pc/SupervisoryListNew.vue +613 -0
  43. package/src/filiale/yangchunboneng/pc/SupervisoryServiceControl.vue +902 -0
  44. package/src/filiale/yangchunboneng/pc/SupervisoryServiceControlNew.vue +901 -0
  45. package/src/filiale/yangchunboneng/pc/SupervisoryServiceView.vue +1117 -0
  46. package/src/filiale/yangchunboneng/pc/chargeManagement.vue +99 -12
  47. package/src/filiale/yangchunboneng/pc.js +6 -1
  48. package/src/main.js +23 -23
@@ -182,6 +182,10 @@
182
182
  <td>注:</td>
183
183
  <td colspan="5" style="color: red" >点火通气时采集信息用。第一联存根联,第二联客户联,第三联安装联。请用户携带客户联和本人身份证复印件前往就近营业厅签订供应气合同并办理开卡充值业务。</td>
184
184
  </tr>
185
+ <tr>
186
+ <td>用户签名:</td>
187
+ <td colspan="5" style="color: red" ><img width="150" height="170" :src="'rs/image/file/'+src"/></td>
188
+ </tr>
185
189
  </table>
186
190
  </div>
187
191
  </article>
@@ -225,12 +229,14 @@ export default {
225
229
  userinfo: {},
226
230
  meterbrands: [],
227
231
  showModal: false,
228
- device: null
232
+ device: null,
233
+ src:''
229
234
  }
230
235
  },
231
236
  ready () {
232
237
  this.getMeterbrands()
233
238
  this.getMaterial()
239
+ this.getfiles()
234
240
  },
235
241
  methods: {
236
242
  async getMaterial() {
@@ -251,8 +257,21 @@ export default {
251
257
  })
252
258
  this.momey=total
253
259
  },
260
+ async getfiles() {
261
+ let data = {
262
+ tablename: `t_files`,
263
+ condition: `f_blobid='${this.selectdata.f_process_id}' and defname = '通气点火' and fusetype = '手机签字' order by f_uploaddate desc `
264
+ }
265
+ await new HttpResetClass().load('post',
266
+ 'rs/sql/apply_singleTable',
267
+ {data: data},
268
+ {resolveMsg: null, rejectMsg: null}
269
+ ).then(res=>{
270
+ this.src = res.data[0].f_filename
271
+ console.log('签字照片', res.data[0].f_filename,this.src)
272
+ })
273
+ },
254
274
  async getdevic() {
255
- debugger
256
275
  let data = {
257
276
  tablename: 't_devices',
258
277
  condition: `f_userfiles_id = '${this.userinfo.userfiles[0].f_userfiles_id}'`
@@ -263,7 +282,6 @@ export default {
263
282
  {resolveMsg: null, rejectMsg: '设备查询失败!!!'}
264
283
  )
265
284
  this.devicesinfo=res.data
266
- debugger
267
285
  },
268
286
  //查询表具信息
269
287
  async getuserfiles() {
@@ -386,9 +404,6 @@ export default {
386
404
  computed: {
387
405
  orgs () {
388
406
  return this.$login.f.f_fengongsi
389
- },
390
- src () {
391
- // return require(`./img/${this.$login.f.number}.png`)
392
407
  }
393
408
  }
394
409
  }
@@ -6,6 +6,7 @@ let specialComp = {
6
6
  'service-view': (resolve) => { require(['./pc/ServiceView'], resolve) },
7
7
  'print-ventilation': (resolve) => { require(['./pc/printVentilation'], resolve) },
8
8
  'service-control': (resolve) => { require(['./pc/ServiceControl'], resolve) },
9
+ 'installation-details': (resolve) => { require(['./pc/InstallationDetails'], resolve) },
9
10
  'exploration-select': (resolve) => { require(['./pc/ExplorationSelect.vue'], resolve) }
10
11
  }
11
12
  exports.specialComp = specialComp