Commit 4b63cdf1 authored by 沈良进's avatar 沈良进

save

parent 365f1d65
...@@ -121,6 +121,17 @@ ...@@ -121,6 +121,17 @@
</td> </td>
<td v-if="childIndex==0" :rowspan="3"> <td v-if="childIndex==0" :rowspan="3">
<table class="scenicTable"> <table class="scenicTable">
<tr>
<td width="60" style="text-align:right;">
币种选择:
</td>
<td style="text-align:left;">
<el-select class='w135 sel' filterable v-model='subItem.CurrencyId'>
<el-option v-for='item in currencyList' :label='item.Name' :value='item.ID' :key='item.ID'>
</el-option>
</el-select>
</td>
</tr>
<tr> <tr>
<td width="60" style="text-align:right;"> <td width="60" style="text-align:right;">
付款方式: 付款方式:
...@@ -160,6 +171,7 @@ ...@@ -160,6 +171,7 @@
export default { export default {
data() { data() {
return { return {
currencyList: [],
EditBtn: false, //房餐景点修改权限 EditBtn: false, //房餐景点修改权限
defaultSelectValue: 0, defaultSelectValue: 0,
DataList: [], DataList: [],
...@@ -200,6 +212,16 @@ ...@@ -200,6 +212,16 @@
}) })
obj.TotalPrice = totalPrice.toFixed(2); obj.TotalPrice = totalPrice.toFixed(2);
}, },
getCurrencyList: function () {
this.apipost("financeinfo_post_GetList", {
Name: ""
}, res => {
if (res.data.resultCode === 1) {
let data = res.data.data;
this.currencyList = data
}
}, null)
},
getList() { getList() {
this.loading = true; this.loading = true;
this.apipost('dmcstatistics_get_GetScenicStaticsDetail', { this.apipost('dmcstatistics_get_GetScenicStaticsDetail', {
...@@ -285,6 +307,7 @@ ...@@ -285,6 +307,7 @@
} }
this.GuestNum = this.$route.query.GuestNum; this.GuestNum = this.$route.query.GuestNum;
this.getList(); this.getList();
this.getCurrencyList();
}, },
} }
......
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