apply-clients 5.0.35-4 → 5.0.35-42

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 (68) hide show
  1. package/package.json +3 -3
  2. package/src/AndroidApp.vue +28 -28
  3. package/src/android.js +1 -1
  4. package/src/apply.js +6 -1
  5. package/src/assets//347/224/250/346/210/267/345/234/260/345/235/200.png +0 -0
  6. package/src/assets//347/224/250/346/210/267/345/247/223/345/220/215.png +0 -0
  7. package/src/assets//347/224/250/346/210/267/347/224/265/350/257/235.png +0 -0
  8. package/src/components/app_apply/ApplyDownList.vue +168 -164
  9. package/src/components/app_apply/ApplyInfo.vue +2 -2
  10. package/src/components/app_apply/ApplyListUpload.vue +268 -268
  11. package/src/components/app_apply/ApplyToDoList.vue +2822 -170
  12. package/src/components/app_apply/OneToMany.vue +194 -0
  13. package/src/components/app_apply/PlaceControler.vue +228 -185
  14. package/src/components/app_apply/ServiceControl.vue +350 -335
  15. package/src/components/app_apply/ServiceView.vue +383 -383
  16. package/src/components/app_apply/ezhou/FeiMinYongV.vue +109 -109
  17. package/src/components/app_apply/ezhou/FeiMinYongVV.vue +100 -100
  18. package/src/components/app_apply/ezhou/MinYong.vue +92 -92
  19. package/src/components/app_apply/ezhou/ServiceView.vue +371 -201
  20. package/src/components/product/Common/ApplyValidateBill.vue +13 -6
  21. package/src/components/product/Function/InstallInfoSelect.vue +1 -1
  22. package/src/components/product/Function/Service/FunctionServiceControl.vue +37 -1
  23. package/src/components/product/Function/functions/ApplyUpload.vue +556 -0
  24. package/src/components/product/Function/functions/InstallFee.vue +506 -342
  25. package/src/components/product/Process/ExplorationSelect.vue +8 -3
  26. package/src/components/product/Process/Processes/CustomerRecordMessage.vue +2 -5
  27. package/src/components/product/Process/Processes/Service/ApplyChargeSearch.vue +123 -37
  28. package/src/components/product/Process/Processes/Service/PaperTicketBill.vue +85 -0
  29. package/src/components/product/Process/Processes/Service/ServiceControl.vue +24 -5
  30. package/src/components/product/ServiceView.vue +10 -6
  31. package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +54 -6
  32. package/src/components/product/Supervisory/SupervisoryList.vue +1 -1
  33. package/src/components/product/applyReport/ApplyReport.vue +205 -0
  34. package/src/components/product/applyReport/PrintApplyReport.vue +116 -0
  35. package/src/ezhouAndroid.js +11 -10
  36. package/src/index.js +8 -8
  37. package/src/main.js +1 -1
  38. package/src/plugins/commonService.js +11 -7
  39. package/static/newStyle/clear.png +0 -0
  40. package/static/newStyle/fife.png +0 -0
  41. package/static/newStyle/hidden.png +0 -0
  42. package/static/newStyle/label-clear.png +0 -0
  43. package/static/newStyle/left-img.png +0 -0
  44. package/static/newStyle/list_ok.png +0 -0
  45. package/static/newStyle/login-check.png +0 -0
  46. package/static/newStyle/login-con.png +0 -0
  47. package/static/newStyle/login-do.gif +0 -0
  48. package/static/newStyle/login-f.png +0 -0
  49. package/static/newStyle/login-info.png +0 -0
  50. package/static/newStyle/login-left.png +0 -0
  51. package/static/newStyle/login-org.png +0 -0
  52. package/static/newStyle/login-pwd.png +0 -0
  53. package/static/newStyle/login-user.png +0 -0
  54. package/static/newStyle/loginbg.gif +0 -0
  55. package/static/newStyle/loginbg1280.gif +0 -0
  56. package/static/newStyle/loginbg1366.gif +0 -0
  57. package/static/newStyle/loginbg_1.gif +0 -0
  58. package/static/newStyle/searchin.png +0 -0
  59. package/static/newStyle/searchout.png +0 -0
  60. package/static/newStyle/setting.png +0 -0
  61. package/static/newStyle/setting1.png +0 -0
  62. package/static/newStyle/shirk.png +0 -0
  63. package/static/newStyle/stretch_bottom.png +0 -0
  64. package/static/newStyle/stretch_left.png +0 -0
  65. package/static/newStyle/stretch_right.png +0 -0
  66. package/static/newStyle/stretch_top.png +0 -0
  67. package/static/newStyle/system-off.png +0 -0
  68. package/static/newStyle//350/261/252/344/275/263/347/207/203/346/260/224.png +0 -0
@@ -13,6 +13,7 @@
13
13
 
14
14
  let http = new HttpResetClass()
15
15
  let param = {
16
+ f_process_id:self.data.f_process_id,
16
17
  f_bill_user: self.$login.f.name, // 票据使用人
17
18
  f_bill_type: self.data.f_bill_type, // 票据类型
18
19
  f_filialeids: self.$login.f.f_orgids, //所属分公司
@@ -37,17 +38,23 @@
37
38
  }
38
39
  },
39
40
  props: ['data','show'],
40
- ready () {
41
-
41
+ async ready () {
42
+ /*debugger
42
43
  console.log(this.data.f_bill_type)
43
44
  if (this.data.f_bill_type) {
44
- getCurrentBill(this)
45
+ await getCurrentBill(this)
46
+ console.log('打印参数',this.data.f_process_id)
45
47
 
46
- }
48
+ }*/
47
49
  },
48
50
  watch : {
49
- 'show' (val) {
50
- getCurrentBill(this)
51
+ data:{
52
+ deep:true,
53
+ immediate:true,
54
+ async handler(){
55
+ console.log('1111155555')
56
+ await getCurrentBill(this)
57
+ }
51
58
  }
52
59
  }
53
60
  }
@@ -181,7 +181,7 @@
181
181
  <nobr>{{row.f_install_num}}</nobr>
182
182
  </td>
183
183
  <td style="text-align: center;">
184
- <dropdown v-if="row.defname != '完工'">
184
+ <dropdown>
185
185
  <button type="button" data-toggle="dropdown" style="border: 0px;background: none;">
186
186
  <span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>
187
187
  </button>
@@ -20,6 +20,8 @@
20
20
  <stop-install :stopapply="selectdata" v-if="showstop"></stop-install>
21
21
  <!-- 领料记录 -->
22
22
  <material_recording :infee="selectdata" v-if="show_material"></material_recording>
23
+ <!-- APP附件 -->
24
+ <apply-upload :appupload="selectdata" v-if="show_upload"></apply-upload>
23
25
  </div>
24
26
  </template>
25
27
  <script>
@@ -42,7 +44,8 @@
42
44
  showstop: false, // 终止报建
43
45
  showbill: false, // 打印票据
44
46
  showpreparation: false, // 预付款
45
- show_material:false//报建材料
47
+ show_material:false,//报建材料
48
+ show_upload: false //APP附件
46
49
  }
47
50
  },
48
51
  methods: {
@@ -65,6 +68,7 @@
65
68
  this.showcontract = false
66
69
  this.showbill = false
67
70
  this.showpreparation = false
71
+ this.show_upload = false
68
72
  },
69
73
  // 派工单
70
74
  receiveBatch(){
@@ -85,6 +89,7 @@
85
89
  this.showcontract = false
86
90
  this.showbill = false
87
91
  this.showpreparation = false
92
+ this.show_upload = false
88
93
  },
89
94
  // 领料记录
90
95
  materialRecord(){
@@ -105,6 +110,7 @@
105
110
  this.showcontract = false
106
111
  this.showbill = false
107
112
  this.showpreparation = false
113
+ this.show_upload = false
108
114
  },
109
115
  // 预付款
110
116
  preparation(){
@@ -125,6 +131,7 @@
125
131
  this.showcontract = false
126
132
  this.showbill = false
127
133
  this.showpreparation = true
134
+ this.show_upload = false
128
135
  },
129
136
  // 票据打印
130
137
  bill(){
@@ -145,6 +152,7 @@
145
152
  this.showpreparation = false
146
153
  this.showbill = true
147
154
  this.show_material = false
155
+ this.show_upload = false
148
156
  },
149
157
  // 补充合同
150
158
  contract() {
@@ -165,6 +173,7 @@
165
173
  this.showpreparation = false
166
174
  this.showcontract = true
167
175
  this.show_material = false
176
+ this.show_upload = false
168
177
  },
169
178
  // 收费
170
179
  instalfee(str) {
@@ -185,6 +194,7 @@
185
194
  this.showprestorefee = false
186
195
  this.showinfee = false
187
196
  this.show_material = false
197
+ this.show_upload = false
188
198
  // 采用开发商预付款方式收费
189
199
  if(str==='预付扣款'){
190
200
  this.showprestorefee = true
@@ -211,6 +221,28 @@
211
221
  this.showpreparation = false
212
222
  this.showstop = true
213
223
  this.show_material = false
224
+ this.show_upload = false
225
+ },
226
+ // APP附件
227
+ appUpload() {
228
+ this.$parent.$refs.installselect.clifun(this.selectdata)
229
+ // this.selectdata = row
230
+ this.$parent.clishow= true
231
+ this.$parent.show = false
232
+
233
+ this.showreceivebatch = false
234
+ this.showbuyer = false
235
+ this.showview = false
236
+ this.showbill = false
237
+ this.showinfee = false
238
+ this.showprestorefee = false
239
+ this.showupfee = false
240
+ this.showreducefee = false
241
+ this.showcontract = false
242
+ this.showpreparation = false
243
+ this.showstop = false
244
+ this.show_material = false
245
+ this.show_upload = true
214
246
  },
215
247
 
216
248
 
@@ -250,6 +282,7 @@
250
282
  this.showreceivebatch = false
251
283
  this.showbuyer = false
252
284
  this.show_material = false
285
+ this.show_upload = false
253
286
  }else{
254
287
  if(this.funcdata.title==='终止报建'){
255
288
  this.stopInstall()
@@ -278,6 +311,9 @@
278
311
  if(this.funcdata.title==='派工单'){
279
312
  this.receiveBatch()
280
313
  }
314
+ if(this.funcdata.title==='APP附件'){
315
+ this.appUpload()
316
+ }
281
317
  }
282
318
  }
283
319
  },