Commit 9764dbdd authored by youjie's avatar youjie

no message

parent 26df9768
...@@ -143,7 +143,7 @@ ...@@ -143,7 +143,7 @@
style="margin-right: 5px;margin-bottom: 5px;" style="margin-right: 5px;margin-bottom: 5px;"
v-for="(x,index) in multipleSelection" v-for="(x,index) in multipleSelection"
:key="x.FrID" @close="handleClose([multipleSelection[index]])"> :key="x.FrID" @close="handleClose([multipleSelection[index]])">
{{x.FinanceId}}/{{x.OriginalMoney}} {{x.FinanceId}}/{{x.CurrencyName+':'+x.OriginalMoney}}
</el-tag> </el-tag>
</template> </template>
<template v-else> <template v-else>
...@@ -301,6 +301,8 @@ ...@@ -301,6 +301,8 @@
</div> </div>
</template> </template>
</el-dialog> </el-dialog>
<!-- 已选制单列表 -->
<!--
<template v-if="showDialog"> <template v-if="showDialog">
<selectListData <selectListData
:BillMakingMsg="BillMakingMsg" :BillMakingMsg="BillMakingMsg"
...@@ -309,7 +311,7 @@ ...@@ -309,7 +311,7 @@
:multipleSelection="multipleSelection" :multipleSelection="multipleSelection"
@success="showDialog=false,getPageList()" @success="showDialog=false,getPageList()"
@close="showDialog=false"></selectListData> @close="showDialog=false"></selectListData>
</template> </template> -->
</div> </div>
</template> </template>
<script> <script>
...@@ -514,13 +516,13 @@ export default { ...@@ -514,13 +516,13 @@ export default {
} }
this.getMoney() this.getMoney()
this.BillMakingMsg.Money = this.totalZD this.BillMakingMsg.Money = this.totalZD
// this.iszhidanBox = true this.iszhidanBox = true
this.apipost('Financial_post_SetFinanceHandFeeCode',{ this.apipost('Financial_post_SetFinanceHandFeeCode',{
FrIds: ids.join(',') FrIds: ids.join(',')
},res=>{ },res=>{
if(res.data.resultCode==1){ if(res.data.resultCode==1){
this.BillMakingMsg.StandardCurrencyName = res.data.data this.BillMakingMsg.StandardCurrencyName = res.data.data
this.showDialog = true // this.showDialog = true
}else{ }else{
this.Error(res.data.message); this.Error(res.data.message);
} }
...@@ -621,9 +623,9 @@ export default { ...@@ -621,9 +623,9 @@ export default {
this.DataList.forEach(x=>{ this.DataList.forEach(x=>{
this.totalYB+=x.OriginalMoney this.totalYB+=x.OriginalMoney
if(x.HandFeeIncomeFrId){ if(x.HandFeeIncomeFrId){
this.totalBW+=x.Money this.totalBW+=x.OriginalMoney
}else{ }else{
this.totalBW2+=x.Money this.totalBW2+=x.OriginalMoney
} }
this.total+=x.Money this.total+=x.Money
}) })
......
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