|
|
|
@ -50,7 +50,6 @@
|
|
|
|
<el-input v-model="refundMoney" type="number"></el-input>
|
|
|
|
<el-input v-model="refundMoney" type="number"></el-input>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-form-item><br>
|
|
|
|
</el-form-item><br>
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item label="补偿金额:" :label-width="formLabelwidth" prop="compensation">
|
|
|
|
<el-form-item label="补偿金额:" :label-width="formLabelwidth" prop="compensation">
|
|
|
|
<div class="form-width-ms">
|
|
|
|
<div class="form-width-ms">
|
|
|
|
<el-input v-model="compensation" type="number"></el-input>
|
|
|
|
<el-input v-model="compensation" type="number"></el-input>
|
|
|
|
@ -72,7 +71,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<el-table style="max-width:1080px;margin-left:30px" max-height="500" :data="refCashLists" :row-class-name="rowClassName" :row-key='getRowKeys' @expand-change="expandSelect" :expand-row-keys="expand" v-if="refCashListsShow" @selection-change="selRoleChangeHand" @row-click="handleRowClick" ref="multipleTable" highlight-current-row row-key="index">
|
|
|
|
<el-table style="max-width:1080px;margin-left:30px" max-height="500" :data="refCashLists" :row-class-name="rowClassName" :row-key='getRowKeys' @expand-change="expandSelect" :expand-row-keys="expand" v-if="refCashListsShow" @selection-change="selRoleChangeHand" @row-click="handleRowClick" ref="multipleTable" highlight-current-row>
|
|
|
|
<el-table-column type="expand">
|
|
|
|
<el-table-column type="expand">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<div class="flex justify-start align-center flex-wrap">
|
|
|
|
<div class="flex justify-start align-center flex-wrap">
|
|
|
|
@ -923,6 +922,7 @@ export default {
|
|
|
|
this.sessionStorageData = JSON.parse(
|
|
|
|
this.sessionStorageData = JSON.parse(
|
|
|
|
sessionStorage.getItem("sessionStorageData")
|
|
|
|
sessionStorage.getItem("sessionStorageData")
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|
|
|
|
this.getData()
|
|
|
|
},
|
|
|
|
},
|
|
|
|
//提交信息
|
|
|
|
//提交信息
|
|
|
|
submit() {
|
|
|
|
submit() {
|
|
|
|
@ -967,7 +967,6 @@ export default {
|
|
|
|
item.manageIdentity = this.refund.manageIdentity;
|
|
|
|
item.manageIdentity = this.refund.manageIdentity;
|
|
|
|
item.manageNumber = this.refund.manageNumber;
|
|
|
|
item.manageNumber = this.refund.manageNumber;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
//console.log(this.multipleSelection);
|
|
|
|
|
|
|
|
this.multipleSelection.forEach((item) => {
|
|
|
|
this.multipleSelection.forEach((item) => {
|
|
|
|
item.memberName = this.refund.memberName;
|
|
|
|
item.memberName = this.refund.memberName;
|
|
|
|
item.memberId = this.refund.memberId;
|
|
|
|
item.memberId = this.refund.memberId;
|
|
|
|
@ -1113,9 +1112,11 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
//选择单据选中
|
|
|
|
//选择单据选中
|
|
|
|
selRoleChangeHand(row) {
|
|
|
|
selRoleChangeHand(row) {
|
|
|
|
|
|
|
|
console.log('这里吗--->')
|
|
|
|
if (this.title != "明细") {
|
|
|
|
if (this.title != "明细") {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.multipleSelection = row;
|
|
|
|
this.multipleSelection = row;
|
|
|
|
|
|
|
|
console.log('multipleSelection--->',this.multipleSelection)
|
|
|
|
let num = 0;
|
|
|
|
let num = 0;
|
|
|
|
let sum = 0;
|
|
|
|
let sum = 0;
|
|
|
|
let compensationNum = 0;
|
|
|
|
let compensationNum = 0;
|
|
|
|
@ -1483,7 +1484,7 @@ export default {
|
|
|
|
this.fileData.append("payee", this.payee);
|
|
|
|
this.fileData.append("payee", this.payee);
|
|
|
|
this.fileData.append("refundNum", this.radiorefValueList.refundNum);
|
|
|
|
this.fileData.append("refundNum", this.radiorefValueList.refundNum);
|
|
|
|
|
|
|
|
|
|
|
|
//console.log(this.multipleSelection);
|
|
|
|
console.log('---->',this.multipleSelection);
|
|
|
|
this.multipleSelection.forEach((item) => {
|
|
|
|
this.multipleSelection.forEach((item) => {
|
|
|
|
item.projectId = item.id;
|
|
|
|
item.projectId = item.id;
|
|
|
|
item.memberName = this.refund.memberName;
|
|
|
|
item.memberName = this.refund.memberName;
|
|
|
|
@ -1762,6 +1763,7 @@ export default {
|
|
|
|
this.sessionStorageData = JSON.parse(
|
|
|
|
this.sessionStorageData = JSON.parse(
|
|
|
|
sessionStorage.getItem("sessionStorageData")
|
|
|
|
sessionStorage.getItem("sessionStorageData")
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|
|
|
|
this.getData()
|
|
|
|
},
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
watch: {
|
|
|
|
refDialogVisible(val, oldVal) {
|
|
|
|
refDialogVisible(val, oldVal) {
|
|
|
|
|