apply-clients 3.5.6-2 → 3.5.6-21
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 +4 -4
- package/package.json +1 -1
- package/src/filiale/dingcheng/android/AppInstallationDetails.vue +477 -478
- package/src/filiale/dingcheng/pc/InstallationDetails.vue +607 -608
- package/src/filiale/fugou/android/AppDevicesManagement.vue +516 -521
- package/src/filiale/fugou/android/AppInstallationDetails.vue +541 -542
- package/src/filiale/fugou/pc/ServiceControl.vue +9 -0
- package/src/filiale/gongyi/pc/chargeManagement.vue +765 -765
- package/src/filiale/jinhuang/pc/Applybatchdispatch.vue +770 -0
- package/src/filiale/jinhuang/pc/ContractList.vue +222 -220
- package/src/filiale/jinhuang/pc/ServiceControl.vue +2016 -2016
- package/src/filiale/jinhuang/pc/SupervisoryList.vue +478 -459
- package/src/filiale/jinhuang/pc.js +2 -1
- package/src/filiale/shexian/android/AppServiceControl.vue +18 -1
- package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +1 -1
- package/src/filiale/yangchunboneng/android/AppInstallationMaterial.vue +1 -1
- package/src/filiale/yangchunboneng/android/AppOtherChargeList.vue +281 -0
- package/src/filiale/yangchunboneng/android/AppServiceControl.vue +4 -0
- package/src/filiale/yangchunboneng/android.js +2 -1
- package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +622 -612
- package/src/filiale/yangchunboneng/pc/InstallInfoSelect.vue +400 -365
- package/src/filiale/yangchunboneng/pc/ServiceControl.vue +4 -0
- package/src/filiale/yangchunboneng/pc/SupervisoryList.vue +30 -3
- package/src/filiale/yangchunboneng/pc/chargeManagement.vue +9 -6
- package/src/main.js +1 -1
|
@@ -1600,6 +1600,9 @@
|
|
|
1600
1600
|
if(this.show_data.fields[index].label==="优惠金额"){
|
|
1601
1601
|
let contract=this.getLableValue('总金额')
|
|
1602
1602
|
let money = this.getLableValue('优惠金额')
|
|
1603
|
+
if(isEmpty(money)){
|
|
1604
|
+
money=0
|
|
1605
|
+
}
|
|
1603
1606
|
let contract_num = parseFloat(contract)
|
|
1604
1607
|
let money_num = parseFloat(money)
|
|
1605
1608
|
let new_contract = contract_num - money_num
|
|
@@ -1610,6 +1613,12 @@
|
|
|
1610
1613
|
let contract=this.getLableValue('合同金额')
|
|
1611
1614
|
let add=this.getLableValue('追加款')
|
|
1612
1615
|
let money = this.getLableValue('优惠金额')
|
|
1616
|
+
if(isEmpty(money)){
|
|
1617
|
+
money=0
|
|
1618
|
+
}
|
|
1619
|
+
if(isEmpty(add)){
|
|
1620
|
+
add=0
|
|
1621
|
+
}
|
|
1613
1622
|
//转为数字,然后contract减去money,保留两位小数
|
|
1614
1623
|
let money_num = parseFloat(money)
|
|
1615
1624
|
let add_num = parseFloat(add)
|