Commit b6f34d16 authored by 黄奎's avatar 黄奎

页面修改

parent 31531156
......@@ -101,6 +101,10 @@
{{$t('ground.cantingxuanz')}}
</el-button>
</el-popover>
<template v-if="subItem.DinnerOfferPrice&&subItem.DinnerOfferPrice>0">
<br/> 餐报价:<font style="color:red;">{{subItem.DinnerOfferPrice}}</font>
</template>
</td>
<td v-if="childIndex==0" :rowspan="3">
{{subItem.UseDinnerTypeStr}}
......@@ -349,6 +353,7 @@
},
res => {
this.loading = false;
console.log("dmcstatistics_get_GetDinnerStaticsDetail",res.data);
if (res.data.resultCode == 1) {
var resultArray = res.data.data.DiningList;
this.IsOperation = res.data.data.IsOperation;
......
......@@ -236,7 +236,9 @@
<span style="display:inline-block;margin-left:5px;" v-if="subIndex==0">
<a @click="AddSubItem(scope.row)" style="color:blue;cursor:pointer">{{$t('fnc.tianjia')}}</a>
</span>
<br />
</div>
车资报价:<font style="color:red">{{scope.row.BusOfferPrice}}</font>
</template>
</el-table-column>
<el-table-column label="套团团号" min-width="230">
......@@ -246,8 +248,9 @@
<div v-for="(childItem,childIndex) in subItem.MergeList" :key="childIndex">
<em>
<!--@change="GetTravelPrice(subItem)"-->
<el-select filterable style="margin-bottom:5px;" class="w170" :placeholder="$t('pub.pleaseSel')" v-model="childItem.MTCID"
@visible-change="GetPriceList(subItem)" @change="GetPriceChange(subItem,childItem)">
<el-select filterable style="margin-bottom:5px;" class="w170" :placeholder="$t('pub.pleaseSel')"
v-model="childItem.MTCID" @visible-change="GetPriceList(subItem)"
@change="GetPriceChange(subItem,childItem)">
<el-option :key="0" :value="0" :label="$t('pub.pleaseSel')"></el-option>
<el-option v-for="pItem in subItem.PriceList" :key="pItem.TCID" :label="pItem.TCNUM"
:value="pItem.TCID"></el-option>
......@@ -579,7 +582,7 @@
GetPriceList(obj) {
this.apipost(
"bus_get_GetBusTravelPriceList", {
StartDate: this.parametersData.StartDate ,
StartDate: this.parametersData.StartDate,
},
res => {
if (res.data.resultCode == 1) {
......@@ -589,14 +592,12 @@
null
);
},
GetPriceChange(obj,childItem)
{
GetPriceChange(obj, childItem) {
var pObj = obj.PriceList.find(qitem => {
return qitem.TCID === childItem.MTCID;
});
if(pObj)
{
childItem.MTCNUM=pObj.TCNUM;
if (pObj) {
childItem.MTCNUM = pObj.TCNUM;
}
},
//删除拼团
......@@ -641,6 +642,7 @@
Id: obj.BusType,
},
response => {
if (response.data.resultCode == 1) {
let busTypeObj = response.data.data;
if (busTypeObj) {
......
......@@ -52,6 +52,9 @@
<span class="spanlink" @click="goUrl('ticketManagement',subItem,'门票管理')">
{{subItem.ScenicName}}
</span>
<template v-if="subItem.ScenicOfferPrice&& subItem.ScenicOfferPrice>0">
<br /> 景点报价:<font style="color:red;">{{subItem.ScenicOfferPrice}}</font>
</template>
</td>
</tr>
<tr>
......@@ -126,10 +129,10 @@
币种选择:
</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>
<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>
......
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