apply-clients 5.0.35-52 → 5.0.35-55
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/package.json +2 -2
- package/src/components/app_apply/ApplyToDoList.vue +2580 -2580
- package/src/components/app_apply/Gongcheng.vue +3331 -2585
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryControl.vue +1 -1
- package/src/components/product/Function/functions/InstallFee.vue +4 -2
|
@@ -261,7 +261,7 @@
|
|
|
261
261
|
<div class="form-group col-sm-6">
|
|
262
262
|
<label class=" col-sm-2 control-label">购买方名称:</label>
|
|
263
263
|
<input type="text" class="form-control" v-model="paperinfo.f_buy_name" style="width:60%"
|
|
264
|
-
:value.sync="
|
|
264
|
+
:value.sync="model.f_user_name" placeholder="购买方名称"
|
|
265
265
|
>
|
|
266
266
|
</div>
|
|
267
267
|
<div class="form-group col-sm-6">
|
|
@@ -275,7 +275,7 @@
|
|
|
275
275
|
<div class="form-group col-sm-6">
|
|
276
276
|
<label class=" col-sm-2 control-label">购买方地址电话:</label>
|
|
277
277
|
<input type="text" class="form-control" v-model="paperinfo.f_buy_address" style="width:60%"
|
|
278
|
-
placeholder="购买方地址" :value.sync="
|
|
278
|
+
placeholder="购买方地址" :value.sync="model.adressphone"
|
|
279
279
|
>
|
|
280
280
|
</div>
|
|
281
281
|
<div class="form-group col-sm-6">
|
|
@@ -347,6 +347,7 @@
|
|
|
347
347
|
rows: [] // 购货方信息
|
|
348
348
|
},
|
|
349
349
|
model: {
|
|
350
|
+
adressphone:'',
|
|
350
351
|
f_isone: ['否'],
|
|
351
352
|
chargeid: '',
|
|
352
353
|
f_print: ['普通收据'],
|
|
@@ -1044,6 +1045,7 @@
|
|
|
1044
1045
|
this.oldInfo.f_phone = this.model.f_phone;
|
|
1045
1046
|
this.oldInfo.f_address = this.model.f_address;
|
|
1046
1047
|
this.model.f_isone = ['否'];
|
|
1048
|
+
this.model.adressphone = this.model.f_address + ' ' + this.model.f_phone;
|
|
1047
1049
|
this.charges = [{f_project_item: '合同总额', f_amount: 0, f_price: 0, f_money: 0}];
|
|
1048
1050
|
this.hasValidateBill=true
|
|
1049
1051
|
console.log('load被重新调用222')
|