|
@@ -565,6 +565,7 @@ export default {
|
|
|
},
|
|
|
//新增
|
|
|
rowAdd() {
|
|
|
+ console.log(this.$parent.$data.form.corpId);
|
|
|
if (this.inCropId) {
|
|
|
let corpName = ''
|
|
|
if (this.corpId) {
|
|
@@ -573,7 +574,9 @@ export default {
|
|
|
const params = {
|
|
|
feesType: this.selectTab,
|
|
|
corpId: this.corpId ? this.corpId : '',
|
|
|
- corpName: this.corpId ? corpName : ''
|
|
|
+ corpName: this.corpId ? corpName : '',
|
|
|
+ currency:this.$parent.$data.form.currency,
|
|
|
+ exchangeRate:this.$parent.$data.form.exchangeRate
|
|
|
};
|
|
|
if (this.typeName === "wood") params.corpId = this.corpId
|
|
|
this.$refs.feeCrud.rowCellAdd(params);
|