|
@@ -202,6 +202,7 @@
|
|
<i
|
|
<i
|
|
class="zoniot_font zoniot-icon-shoukuan"
|
|
class="zoniot_font zoniot-icon-shoukuan"
|
|
@click="collections('single', scope.row)"
|
|
@click="collections('single', scope.row)"
|
|
|
|
+ style="margin: 0"
|
|
></i>
|
|
></i>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
<el-tooltip
|
|
<el-tooltip
|
|
@@ -209,13 +210,31 @@
|
|
class="item"
|
|
class="item"
|
|
effect="light"
|
|
effect="light"
|
|
placement="bottom"
|
|
placement="bottom"
|
|
- content="修改金额"
|
|
|
|
|
|
+ content="修改账单金额"
|
|
>
|
|
>
|
|
- <i
|
|
|
|
- class="zoniot_font zoniot-icon-koufeijilu"
|
|
|
|
|
|
+ <img
|
|
|
|
+ src="../../../assets/img/icon_xiugaizhangdanjine.png"
|
|
|
|
+ alt=""
|
|
@click="editAmount(scope.row)"
|
|
@click="editAmount(scope.row)"
|
|
- ></i>
|
|
|
|
|
|
+ style="margin: 0 10px;"
|
|
|
|
+ >
|
|
|
|
+ </el-tooltip>
|
|
|
|
+
|
|
|
|
+ <el-tooltip
|
|
|
|
+ v-show="chargeStatus == 1"
|
|
|
|
+ class="item"
|
|
|
|
+ effect="light"
|
|
|
|
+ placement="bottom"
|
|
|
|
+ content="修改应收金额"
|
|
|
|
+ >
|
|
|
|
+ <img
|
|
|
|
+ src="../../../assets/img/icon_xiugaiyingshoujine.png"
|
|
|
|
+ alt=""
|
|
|
|
+ @click="receivableAmount(scope.row)"
|
|
|
|
+ style="margin-right: 10px;"
|
|
|
|
+ >
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
|
|
+
|
|
<el-tooltip
|
|
<el-tooltip
|
|
v-show="chargeStatus == 1"
|
|
v-show="chargeStatus == 1"
|
|
class="item"
|
|
class="item"
|
|
@@ -226,6 +245,7 @@
|
|
<i
|
|
<i
|
|
class="zoniot_font zoniot-icon-shanchu redText"
|
|
class="zoniot_font zoniot-icon-shanchu redText"
|
|
@click="deluserbyidFn(scope.row.id)"
|
|
@click="deluserbyidFn(scope.row.id)"
|
|
|
|
+ style="margin: 0"
|
|
></i>
|
|
></i>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
<el-tooltip
|
|
<el-tooltip
|
|
@@ -292,10 +312,13 @@ export default {
|
|
label: '滞纳金(元)',
|
|
label: '滞纳金(元)',
|
|
prop: 'lateFee'
|
|
prop: 'lateFee'
|
|
},
|
|
},
|
|
-
|
|
|
|
|
|
+ {
|
|
|
|
+ label: '账单金额(元)',
|
|
|
|
+ prop: 'amount'
|
|
|
|
+ },
|
|
{
|
|
{
|
|
label: '应收金额(元)',
|
|
label: '应收金额(元)',
|
|
- prop: 'receivableAmount'
|
|
|
|
|
|
+ prop: 'discountAmount'
|
|
},
|
|
},
|
|
{
|
|
{
|
|
label: '缴费状态',
|
|
label: '缴费状态',
|
|
@@ -562,7 +585,33 @@ export default {
|
|
this['mixins_query'][thisObj] = val;
|
|
this['mixins_query'][thisObj] = val;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ // 修改应收金额
|
|
|
|
+ receivableAmount (row) {
|
|
|
|
+ new Promise((resolve) => {
|
|
|
|
+ this.$store.dispatch('addPopup', {
|
|
|
|
+ url: '/payService/propertyFee/stepPage/receivable.vue',
|
|
|
|
+ width: '830px',
|
|
|
|
+ height: '500px',
|
|
|
|
+ props: {
|
|
|
|
+ id: row.id,
|
|
|
|
+ communityName: row.communityName,
|
|
|
|
+ assets: row.assets,
|
|
|
|
+ residentName: row.residentName,
|
|
|
|
+ paymentDaysDict: row.paymentDaysDict,
|
|
|
|
+ amount: row.amount,
|
|
|
|
+ discountAmount: row.discountAmount,
|
|
|
|
+ callback: resolve,
|
|
|
|
+ },
|
|
|
|
+ showConfirmButton: true,
|
|
|
|
+ showCancelButton: true,
|
|
|
|
+ hideStar: true,
|
|
|
|
+ title: '修改应收金额'
|
|
|
|
+ });
|
|
|
|
+ }).then(() => {
|
|
|
|
+ this.mixins_search();
|
|
|
|
+ });
|
|
|
|
+ },
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
currentId (newValue, oldValue) {
|
|
currentId (newValue, oldValue) {
|
|
@@ -616,7 +665,7 @@ export default {
|
|
chargeStatus: this.chargeStatus,
|
|
chargeStatus: this.chargeStatus,
|
|
chargeType: '1,2,3,4,5,6,7',
|
|
chargeType: '1,2,3,4,5,6,7',
|
|
payType: '',
|
|
payType: '',
|
|
- value: '2'
|
|
|
|
|
|
+ customerType: '2,3'
|
|
};
|
|
};
|
|
}
|
|
}
|
|
};
|
|
};
|