diff --git a/package.json b/package.json
index 7b77bfc..7ae70a3 100644
--- a/package.json
+++ b/package.json
@@ -6,6 +6,7 @@
"license": "MIT",
"scripts": {
"dev": "vue-cli-service serve --open",
+ "serve": "vue-cli-service serve --open",
"build:prod": "vue-cli-service build",
"build:stage": "vue-cli-service build --mode staging",
"preview": "node build/index.js --preview",
diff --git a/src/components/receiptPrinting.vue b/src/components/receiptPrinting.vue
index 97e4a3e..bf08acb 100644
--- a/src/components/receiptPrinting.vue
+++ b/src/components/receiptPrinting.vue
@@ -3,12 +3,8 @@
物业费收款收据
{{ data.contracttab.serialnumber }}
- 小区楼名称:{{ data.cidName }}
- 楼楼号:{{ data.propertyid }}
+ 小区楼名称:{{ data.cidName }}
+ 楼楼号:{{ data.propertyid }}
面楼积:{{ data.constructionarea }}
@@ -25,15 +21,17 @@
{{ data.contact }}
{{
- data.chargetype === 2
+ data.chargetype === 1
+ ? "物业费"
+ : data.chargetype === 2
? "电梯卡费"
: data.chargetype === 3
? "车位费"
- : "物业费"
+ : data.category
}}
月 |
- {{data.contracttab.lengthdate}} |
+ {{ data.contracttab.lengthdate }} |
{{ data.unitprice }} |
{{ data.contracttab.chargableexpense }}
@@ -54,18 +52,19 @@
|
- 合计收款收款 ¥:{{ data.contracttab.chargableexpense }}
+ 合计收款收款 ¥:{{ data.contracttab.chargableexpense }}
|
收款方式 |
{{ data.contracttab.chargeway }} |
- 合计人民币收款(大写):{{digitUppercase(data.contracttab.chargableexpense)}}
+ 合计人民币收款(大写):{{ digitUppercase(data.contracttab.chargableexpense) }}
|
+
收款单位单位(盖章):
\ No newline at end of file
+
diff --git a/src/views/property/otherPay.vue b/src/views/property/otherPay.vue
index f94d46d..612a0ad 100644
--- a/src/views/property/otherPay.vue
+++ b/src/views/property/otherPay.vue
@@ -102,7 +102,7 @@
:disabled="!data.charge_money > 0"
:loading="loading"
@click="payEvent">缴费
- 打印
@@ -116,18 +116,24 @@
style="margin-top: -10px"> />
+
+
+