|
@@ -2118,7 +2118,7 @@
|
|
|
<span>客户名称:</span>
|
|
|
{{ bzjForm.user }}
|
|
|
</p>
|
|
|
- <p style="margin-bottom: 10px">
|
|
|
+ <!-- <p style="margin-bottom: 10px">
|
|
|
<span>结算方式:</span>
|
|
|
<RadioGroup v-model="formItem.settlementType">
|
|
|
<Radio
|
|
@@ -2129,7 +2129,7 @@
|
|
|
{{ item.Name }}</Radio
|
|
|
>
|
|
|
</RadioGroup>
|
|
|
- </p>
|
|
|
+ </p> -->
|
|
|
<!-- <h3 style="font-size:16px;margin-bottom:20px">应收费项
|
|
|
<Button style="float:right;width:80px" type="primary" @click="sfxShow = true">新增</Button>
|
|
|
</h3> -->
|
|
@@ -2460,7 +2460,7 @@
|
|
|
</Row>
|
|
|
<Row type="flex" justify="end" align="middle">
|
|
|
<Col>
|
|
|
- <canvas :id="'ewm' + index" class="ewmBox"></canvas>
|
|
|
+ <canvas :id="'qrCodeUrl' + index" class="ewmBox"></canvas>
|
|
|
</Col>
|
|
|
</Row>
|
|
|
</div>
|
|
@@ -2548,7 +2548,7 @@
|
|
|
</Col>
|
|
|
<Col span="24" style="padding: 10px; position: relative">
|
|
|
<div style="position: absolute; top: 95px; right: 50px">
|
|
|
- <canvas :id="'ewm' + index" class="ewmBox"></canvas>
|
|
|
+ <canvas :id="'qrCodeUrl' + index" class="ewmBox"></canvas>
|
|
|
</div>
|
|
|
<p style="font-size: 18px; font-weight: 600">温馨提示:</p>
|
|
|
<p style="font-size: 18px; font-weight: 600">
|
|
@@ -3092,7 +3092,7 @@ import {
|
|
|
selectDecorationLeasing,
|
|
|
addDecorationLeasing,
|
|
|
generatingBills,
|
|
|
- saveReceivableRecord
|
|
|
+ saveReceivableRecord,
|
|
|
} from "../../service/leasing";
|
|
|
import chargeTable from "./components/chargeItem";
|
|
|
import chargeDeposit from "./components/ChargeDeposit";
|
|
@@ -4398,7 +4398,7 @@ export default {
|
|
|
sysCodeType: "CHARGE_TYPE",
|
|
|
}).then((res) => {
|
|
|
if (res.status == 200) {
|
|
|
- this.paymentTypeList = [res.data[0]];
|
|
|
+ this.paymentTypeList = [res.data[1]];
|
|
|
if (this.paymentTypeList.length > 0) {
|
|
|
this.formItem.settlementType = this.paymentTypeList[0].Id;
|
|
|
}
|
|
@@ -4424,11 +4424,11 @@ export default {
|
|
|
this.$refs.refChargeTable.chargeDeposit = [];
|
|
|
this.$refs.refChargeTable.countTableData = [];
|
|
|
this.$refs.refchargeDeposit.Lists = [];
|
|
|
- // this.$refs.refChargeTable.projectId = row.projectId;
|
|
|
- // this.$refs.refchargeDeposit.serialNumber = row.projectId;
|
|
|
+ this.$refs.refChargeTable.projectId = row.projectId;
|
|
|
+ this.$refs.refchargeDeposit.serialNumber = row.projectId;
|
|
|
this.$refs.refChargeTable.decorationId = row.decorationId;
|
|
|
- this.$refs.refChargeTable.projectId = "2931117";
|
|
|
- this.$refs.refchargeDeposit.projectId = "2931117";
|
|
|
+ // this.$refs.refChargeTable.projectId = "2931117";
|
|
|
+ // this.$refs.refchargeDeposit.projectId = "2931117";
|
|
|
this.bzjForm.room = row.roomName;
|
|
|
this.bzjForm.user = row.ownerName;
|
|
|
this.$refs.refChargeTable.listFormFeeItem();
|
|
@@ -5249,7 +5249,10 @@ export default {
|
|
|
this.getTableData();
|
|
|
},
|
|
|
createBill(row) {
|
|
|
- saveReceivableRecord({infoId: row.infoId, decorationId: row.decorationId}).then((res) => {
|
|
|
+ saveReceivableRecord({
|
|
|
+ infoId: row.infoId,
|
|
|
+ decorationId: row.decorationId,
|
|
|
+ }).then((res) => {
|
|
|
if (res.status == 200) {
|
|
|
this.$Message.success("生成账单成功");
|
|
|
this.getTableData();
|