apply-clients 3.5.5-87 → 3.5.5-89
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/build/dev-server.js +5 -5
- package/package.json +1 -1
- package/src/App.vue +25 -25
- package/src/components/product/Function/Service/FunctionServiceControl.vue +4 -4
- package/src/components/product/Install/ContractCharge.vue +210 -210
- package/src/filiale/fugou/android/AppAddReplacement.vue +512 -512
- package/src/filiale/fugou/android/AppServiceControl.vue +1894 -1894
- package/src/filiale/fugou/android/AppZhihuanManagement.vue +8 -1
- package/src/filiale/fugou/pc/AddReplacement.vue +511 -511
- package/src/filiale/fugou/pc/ApplyChargeList.vue +487 -487
- package/src/filiale/fugou/pc/Applybatchdispatch.vue +754 -754
- package/src/filiale/fugou/pc/InstallationDetails.vue +646 -646
- package/src/filiale/fugou/pc/ServiceControl.vue +1732 -1732
- package/src/filiale/fugou/pc.js +19 -19
- package/src/filiale/gongyi/pc/addressAndUserinfoManagement.vue +187 -187
- package/src/filiale/gongyi/pc.js +25 -25
- package/src/filiale/hongda/pc/addMaterialScience.vue +723 -723
- package/src/filiale/jinhuang/android/AppAddMaterialScience.vue +2 -2
- package/src/filiale/jinhuang/pc/ExplorationSelect.vue +523 -523
- package/src/filiale/jinhuang/pc/addMaterialScience.vue +2 -2
- package/src/filiale/qianneng/pc/Applybatchdispatch.vue +786 -786
- package/src/filiale/qianneng/pc/ServiceControl.vue +1387 -1387
- package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +527 -527
- package/src/filiale/yangchunboneng/android/AppContractCharge.vue +210 -210
- package/src/filiale/yangchunboneng/android.js +21 -21
- package/src/filiale/yangchunboneng/pc/ApplyUpload.vue +392 -392
- package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +612 -612
- package/src/filiale/yangchunboneng/pc/SupervisoryControl.vue +141 -141
- package/src/filiale/yangchunboneng/pc/buildOrderList.vue +411 -411
- package/src/filiale/yangchunboneng/pc/printBuildOrder.vue +175 -175
- package/src/filiale/yangchunboneng/pc.js +29 -29
- package/src/main.js +3 -3
|
@@ -162,7 +162,11 @@ export default {
|
|
|
162
162
|
this.savelist = []
|
|
163
163
|
let checkList
|
|
164
164
|
if (this.selectdata.f_apply_type == '工商户报建'){
|
|
165
|
-
|
|
165
|
+
if(this.selectdata.defname == '质检'){
|
|
166
|
+
checkList = this.$appdata.getParam("工商业质检")
|
|
167
|
+
}else {
|
|
168
|
+
checkList = this.$appdata.getParam("报建非民用检查项目")
|
|
169
|
+
}
|
|
166
170
|
}else if(this.selectdata.f_apply_type == '团购报建'){
|
|
167
171
|
checkList = this.$appdata.getParam("团购报建主流程质检项")
|
|
168
172
|
} else if(this.selectdata.f_apply_type == '团购转散户'){
|
|
@@ -193,6 +197,9 @@ export default {
|
|
|
193
197
|
},
|
|
194
198
|
//查询
|
|
195
199
|
async search() {
|
|
200
|
+
if (this.selectdata.f_apply_type == '工商户报建' && this.selectdata.defname == '质检'){
|
|
201
|
+
await this.saveCheck()
|
|
202
|
+
}
|
|
196
203
|
let http = new HttpResetClass()
|
|
197
204
|
let data = {
|
|
198
205
|
tablename: 't_apply_check',
|