|
@@ -759,8 +759,8 @@
|
|
|
multiple
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="dict in businessTypeOption"
|
|
|
- :key="dict.dictValue"
|
|
|
+ v-for="(dict,index) in businessTypeOption"
|
|
|
+ :key="index.dictValue"
|
|
|
:label="dict.dictLabel"
|
|
|
:value="dict.dictValue"
|
|
|
>
|
|
@@ -1112,7 +1112,7 @@ export default {
|
|
|
//打开内部弹窗
|
|
|
innerVisible: false,
|
|
|
chargeList_s: [],
|
|
|
- selection: "",
|
|
|
+ selection:[],
|
|
|
increase_s: [],
|
|
|
cancelButton: true,
|
|
|
// 选中数组
|
|
@@ -1717,9 +1717,10 @@ export default {
|
|
|
this.doNot = true;
|
|
|
this.hide = true;
|
|
|
for (let item in this.selection) {
|
|
|
- this.pass.fAmtcr += Number(this.selection[item].fAmt.toFixed(2));
|
|
|
- this.pass.fAmtdr += Number(this.selection[item].fAmtdr.toFixed(2));
|
|
|
+ this.pass.fAmtcr += Number(this.selection[item].fAmt).toFixed(2);
|
|
|
+ this.pass.fAmtdr += Number(this.selection[item].fAmtdr).toFixed(2);
|
|
|
}
|
|
|
+ console.log(this.pass.fAmtcr)
|
|
|
if (this.state_s == true) {
|
|
|
if (this.selection.length == "0") {
|
|
|
this.$message.error("未选择导入行");
|
|
@@ -1899,10 +1900,10 @@ export default {
|
|
|
if (name == null || name === "") {
|
|
|
return false;
|
|
|
}
|
|
|
- let queryParams = { pageNum: 1, pageSize: 10, fName: name, type: 1 };
|
|
|
+ let queryParams = {fName: name};
|
|
|
listCorps(queryParams).then((response) => {
|
|
|
- this.fMblnoOptions = response.rows;
|
|
|
- this.KHblnoOptions = response.rows;
|
|
|
+ this.fMblnoOptions = response;
|
|
|
+ this.KHblnoOptions = response;
|
|
|
});
|
|
|
},
|
|
|
/** 重置按钮操作 */
|
|
@@ -2052,8 +2053,8 @@ export default {
|
|
|
this.pass.fAmtcr += Number(this.increase_s[item].fAmt);
|
|
|
this.pass.fAmtdr += Number(this.increase_s[item].fAmtdr);
|
|
|
}
|
|
|
- this.queryParams.fAmtcr = Number(this.pass.fAmtcr.toFixed(2));
|
|
|
- this.queryParams.fAmtdr = Number(this.pass.fAmtdr.toFixed(2));
|
|
|
+ this.queryParams.fAmtcr = Number(this.pass.fAmtcr).toFixed(2);
|
|
|
+ this.queryParams.fAmtdr = Number(this.pass.fAmtdr).toFixed(2);
|
|
|
this.pass.fAmtcr.toFixed(2);
|
|
|
|
|
|
this.queryParams.fBillstatus = "1";
|