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

save

parent 365f1d65
......@@ -121,6 +121,17 @@
</td>
<td v-if="childIndex==0" :rowspan="3">
<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>
<td width="60" style="text-align:right;">
付款方式:
......@@ -160,6 +171,7 @@
export default {
data() {
return {
currencyList: [],
EditBtn: false, //房餐景点修改权限
defaultSelectValue: 0,
DataList: [],
......@@ -200,6 +212,16 @@
})
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() {
this.loading = true;
this.apipost('dmcstatistics_get_GetScenicStaticsDetail', {
......@@ -285,6 +307,7 @@
}
this.GuestNum = this.$route.query.GuestNum;
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