Commit 45ed26ad authored by 黄奎's avatar 黄奎

no message

parent fb70feac
......@@ -15,10 +15,6 @@
<template>
<div>
<div class="singlePrice clearfix CP_Div">
<div class="CP_title">
<!-- {{lineName}}{{lineTeamName}} -->
123
</div>
<el-form>
<div class="QuotationFirstDiv">
<el-row :gutter="40">
......@@ -116,19 +112,19 @@
<table class="CP_comTable">
<tr>
<td class="CP_comBack" width="170">币种</td>
<!-- <td v-for='(item,index) in OfferCostPriceObj.CostCurrencyList'>
<td v-for='(item,index) in OtherPrice.CostCurrencyList'>
{{item.CurrencyName}}
<span>
<i class="iconfont icon-quxiao" @click="DeleteCurrency(index)"></i>
</span>
</td> -->
</td>
<td>
<!-- <el-form-item class="w100">
<el-form-item class="w100">
<el-select v-model='currencyType' @change="getRate(currencyType),addCurrency()">
<el-option v-for="item in currencyTypeArr" :label='item.Name' :value='item.ID' :key='item.ID'>
</el-option>
</el-select>
</el-form-item> -->
</el-form-item>
</td>
</tr>
<tr>
......@@ -144,7 +140,7 @@
</tr>
</table>
<table class="CP_comTable">
<!-- <tr>
<tr>
<td class="CP_comBack" width="170">人数</td>
<td v-for="(item,index) in OfferCostPriceObj.CostNumberList" :key='item.subCode'>
<el-input class="w80" v-model='item.PeopleNumber' @keyup.native="checkInteger(item,'PeopleNumber')">
......@@ -174,7 +170,7 @@
<td>
</td>
</tr> -->
</tr>
</table>
<table class="CostPriceTable">
......@@ -521,6 +517,14 @@
createDayTripPrice() {
},
//币种下拉获取汇率
getRate(ID) {
this.currencyTypeArr.forEach(x => {
if (x.ID == ID) {
this.queryMsg.RateInput = x.Rate;
}
});
},
//获取所有币种
getAllCurrency() {
......
......@@ -77,6 +77,8 @@
SingleRoomShareMoney: 0, //单房差分摊费用
InlandTrafficShareMoney: 0, //内陆段交通分摊费用
OtherShareMoney: 0, //杂费分摊费用
CostCurrencyList:[],//选择的币种
CostNumberList:[],//人数
},
//团报价信息
teamPrice:{
......
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