apply-clients 3.5.4-99 → 3.5.5-10
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 +9 -6
- package/package.json +1 -1
- package/src/App.vue +25 -25
- package/src/apply.js +2 -0
- package/src/components/android/AppTakePic.vue +182 -182
- package/src/components/android/Process/AppExplorationUser.vue +508 -508
- package/src/components/product/Material/MaterialDetailed.vue +268 -268
- package/src/components/product/Process/Processes/contractModel.vue +424 -0
- package/src/components/product/ServiceView.vue +1028 -1028
- package/src/filiale/ancheng/android/AppSign.vue +149 -149
- package/src/filiale/ancheng/android/AppTakePic.vue +143 -143
- package/src/filiale/ancheng/android.js +7 -7
- package/src/filiale/baiyin/android/ByAddMaterialScience.vue +858 -858
- package/src/filiale/fugou/android/AppAddMaterialScience.vue +20 -16
- package/src/filiale/fugou/android/AppDevicesManagement.vue +519 -519
- package/src/filiale/fugou/android/AppInstallationDetails.vue +541 -541
- package/src/filiale/fugou/android/AppServiceControl.vue +1836 -1845
- package/src/filiale/fugou/android/printCharge.vue +162 -162
- package/src/filiale/fugou/android.js +16 -16
- package/src/filiale/fugou/pc/ExplorationSelect.vue +525 -525
- package/src/filiale/fugou/pc/ServiceControl.vue +1705 -1705
- package/src/filiale/fugou/pc/ServiceView.vue +941 -941
- package/src/filiale/fugou/pc/SupervisoryServiceControl.vue +881 -0
- package/src/filiale/fugou/pc/devicesManagement.vue +483 -483
- package/src/filiale/fugou/pc/printChargepc.vue +148 -148
- package/src/filiale/fugou/pc.js +17 -16
- package/src/filiale/gongyi/android/AppAddMaterialScience.vue +493 -493
- package/src/filiale/hongda/pc/ApplyDetailsList.vue +329 -329
- package/src/filiale/qianneng/android/AppChargeManagement.vue +686 -686
- package/src/filiale/qianneng/android/AppServiceView.vue +795 -795
- package/src/filiale/qianneng/android.js +15 -15
- package/src/filiale/qianneng/pc/ApplyChargeList.vue +639 -639
- package/src/filiale/qianneng/pc/ApplyMaterialDetailed.vue +261 -261
- package/src/filiale/qianneng/pc/Applybatchdispatch.vue +769 -769
- package/src/filiale/qianneng/pc/Applydetail.vue +417 -417
- package/src/filiale/qianneng/pc/InstallFunction.vue +188 -188
- package/src/filiale/qianneng/pc/InstallInfoSelect.vue +434 -434
- package/src/filiale/qianneng/pc/ServiceControl.vue +1382 -1382
- package/src/filiale/qianneng/pc/StopApplyList.vue +334 -334
- package/src/filiale/qianneng/pc/SupervisoryList.vue +396 -396
- package/src/filiale/qianneng/pc/chargeManagement.vue +813 -813
- package/src/filiale/qianneng/pc.js +29 -29
- package/src/filiale/ruihua/pc/ServiceControl.vue +1967 -1966
- package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +520 -520
- package/src/filiale/yangchunboneng/android/AppDevicesManagement.vue +645 -645
- package/src/filiale/yangchunboneng/android/AppServiceControl.vue +1703 -1706
- package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +547 -547
- package/src/filiale/yangchunboneng/pc/ServiceControl.vue +2112 -2115
- package/src/filiale/yangchunboneng/pc/ServiceView.vue +1007 -1007
- package/src/filiale/yangchunboneng/pc/SupervisoryList.vue +605 -605
- package/src/filiale/yangchunboneng/pc/SupervisoryListNew.vue +683 -683
- package/src/filiale/yangchunboneng/pc/chargeManagement.vue +1053 -1052
- package/src/filiale/yangchunboneng/pc/devicesManagement.vue +574 -574
- package/src/main.js +23 -23
|
@@ -137,12 +137,13 @@
|
|
|
137
137
|
<div class="col-sm-8">
|
|
138
138
|
<input-select
|
|
139
139
|
class="select select_list"
|
|
140
|
-
|
|
141
|
-
|
|
140
|
+
v-model="item.material_unique_value"
|
|
141
|
+
:value.sync="item.material_unique_value"
|
|
142
142
|
:options="meterialOptions"
|
|
143
143
|
:disable="mark === 1"
|
|
144
144
|
@change="modifyOtherValue(i)"
|
|
145
|
-
:valueSingle="true"
|
|
145
|
+
:valueSingle="true">
|
|
146
|
+
</input-select>
|
|
146
147
|
</div>
|
|
147
148
|
</div>
|
|
148
149
|
<div class="form-group col-sm-6" :class="[item.f_material_name ? '' : 'has-error']">
|
|
@@ -319,24 +320,27 @@
|
|
|
319
320
|
)
|
|
320
321
|
|
|
321
322
|
this.meterialOptions = res.data.map(item => {
|
|
323
|
+
const uniqueValue = item.f_material_code || `${item.f_material_name}--${item.f_material_style}`;
|
|
322
324
|
return {
|
|
323
|
-
|
|
324
|
-
|
|
325
|
+
label: `${item.f_material_name}--${item.f_material_style}`,
|
|
326
|
+
value: uniqueValue,
|
|
327
|
+
raw: item
|
|
325
328
|
}
|
|
326
329
|
})
|
|
327
330
|
},
|
|
328
331
|
modifyOtherValue(index) {
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
if(
|
|
332
|
-
|
|
333
|
-
this.materials[index].
|
|
334
|
-
this.materials[index].
|
|
335
|
-
this.materials[index].
|
|
336
|
-
this.materials[index].
|
|
337
|
-
this.materials[index].
|
|
338
|
-
this.materials[index].
|
|
339
|
-
this.materials[index].
|
|
332
|
+
const uniqueValue = this.materials[index].material_unique_value;
|
|
333
|
+
const selected = this.meterialOptions.find(opt => opt.value === uniqueValue);
|
|
334
|
+
if (selected) {
|
|
335
|
+
const material = selected.raw;
|
|
336
|
+
this.materials[index].material = material;
|
|
337
|
+
this.materials[index].f_material_price = material.f_material_price;
|
|
338
|
+
this.materials[index].f_material_name = material.f_material_name;
|
|
339
|
+
this.materials[index].f_material_style = material.f_material_style;
|
|
340
|
+
this.materials[index].f_material_unit = material.f_material_unit;
|
|
341
|
+
this.materials[index].f_material_number = material.f_material_number;
|
|
342
|
+
this.materials[index].f_material_code = material.f_material_code;
|
|
343
|
+
this.materials[index].f_userinfo_code = material.f_userinfo_code;
|
|
340
344
|
}else{
|
|
341
345
|
this.materials[index].f_material_price =''
|
|
342
346
|
this.materials[index].f_material_name = ''
|