Commit 168d02a6 authored by 黄奎's avatar 黄奎
parents 4e47fd91 2ae02ba9
<template> <template>
<div style="margin-bottom: 20px; "> <div style="margin-bottom: 20px; ">
<p>合计待付人民币:{{GetRMBMoney()}}</p>
<el-table <el-table
:data="BranchAnalysisData" :data="BranchAnalysisData"
style="width: 100%;" style="width: 100%;"
...@@ -29,6 +29,14 @@ ...@@ -29,6 +29,14 @@
{{scope.row.TotalMoney}} {{scope.row.TotalMoney}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column
prop="RMBMoney"
label="转人民币"
min-width="120" align="center" sortable>
<template slot-scope="scope">
{{scope.row.RMBMoney}}
</template>
</el-table-column>
<el-table-column align="center" label="团队"> <el-table-column align="center" label="团队">
<el-table-column <el-table-column
prop="CurrentMoney" prop="CurrentMoney"
...@@ -127,6 +135,13 @@ export default { ...@@ -127,6 +135,13 @@ export default {
blank: 'y' blank: 'y'
} }
}); });
},
GetRMBMoney(){
let RMBMoney=0;
this.BranchAnalysisData.forEach(x=>{
RMBMoney+=x.RMBMoney;
});
return RMBMoney.toFixed(2);
} }
}, },
watch: { watch: {
......
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
</template> </template>
<el-col :span="4" v-if="activeName!=5"> <el-col :span="4" v-if="activeName!=5 && activeName!=8">
<el-form-item :label="$t('fnc.bweibi')"> <el-form-item :label="$t('fnc.bweibi')">
<el-select :disabled="coinGetShow" filterable v-model="msg.StandardCurrencyId" @change="getChange"> <el-select :disabled="coinGetShow" filterable v-model="msg.StandardCurrencyId" @change="getChange">
<el-option :value="-1" :label="$t('pub.unlimitedSel')"></el-option> <el-option :value="-1" :label="$t('pub.unlimitedSel')"></el-option>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment