apply-clients 4.1.35-weinan → 4.1.36-weinan
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
CHANGED
|
@@ -526,6 +526,20 @@ export default {
|
|
|
526
526
|
|
|
527
527
|
},
|
|
528
528
|
async showChargeModal() {
|
|
529
|
+
let http = new HttpResetClass()
|
|
530
|
+
let data = {
|
|
531
|
+
condition: " 1=1",
|
|
532
|
+
f_process_id: this.selectdata.f_process_id
|
|
533
|
+
}
|
|
534
|
+
let res = await http.load('POST', this.$androidUtil.getProxyUrl() +'/rs/sql/getAddresAndUserinfoAndUserfilesAmount', {data:data}, {
|
|
535
|
+
resolveMsg: null,
|
|
536
|
+
rejectMsg: null
|
|
537
|
+
})
|
|
538
|
+
if (res.data[0].f_user_id===null){
|
|
539
|
+
debugger
|
|
540
|
+
this.$showMessage("请先添加表具信息!!!")
|
|
541
|
+
return
|
|
542
|
+
}
|
|
529
543
|
this.getUserAddress()
|
|
530
544
|
console.log("材料费",this.selectdata.f_cost_sum)
|
|
531
545
|
this.charge.payment_terms[0].f_charge_money = this.selectdata.f_cost_sum
|