Commit 081b494e authored by 黄奎's avatar 黄奎

页面修改

parent dd7c6d18
<style> <style>
@import "../../../assets/css/newTravelManager.css"; @import "../../../assets/css/newTravelManager.css";
.choosed span { .choosed span {
background-color: #1bc594 !important; background-color: #1bc594 !important;
} }
...@@ -654,8 +655,8 @@ ...@@ -654,8 +655,8 @@
<el-option v-for="item in companyList" :key="item.id" :label="item.bName" :value="item.id"> <el-option v-for="item in companyList" :key="item.id" :label="item.bName" :value="item.id">
</el-option> </el-option>
</el-select> </el-select>
<span class="TC_neibu" style="float: inherit;margin-left: 5px;margin-right: 5px;" v-if="standardCurrencyName" <span class="TC_neibu" style="float: inherit;margin-left: 5px;margin-right: 5px;"
:class="{'TCneibu':standardCurrencyName=='人民币','TCb2b':standardCurrencyName=='日元', v-if="standardCurrencyName" :class="{'TCneibu':standardCurrencyName=='人民币','TCb2b':standardCurrencyName=='日元',
'TCb2c':standardCurrencyName=='新台币','AppPlat':standardCurrencyName=='', 'TCb2c':standardCurrencyName=='新台币','AppPlat':standardCurrencyName=='',
'otherPlat':standardCurrencyName=='',}">{{standardCurrencyName}}结算</span> 'otherPlat':standardCurrencyName=='',}">{{standardCurrencyName}}结算</span>
</el-form-item> </el-form-item>
...@@ -861,8 +862,11 @@ ...@@ -861,8 +862,11 @@
<el-form-item prop="OutBranchId" style="margin-top:1px;"> <el-form-item prop="OutBranchId" style="margin-top:1px;">
<span class="TP_Sendprepend" style="margin:3px -1px 0 0">团队类型</span> <span class="TP_Sendprepend" style="margin:3px -1px 0 0">团队类型</span>
<el-select class="w180" v-model="priceData.PriceTeamType"> <el-select class="w180" v-model="priceData.PriceTeamType">
<el-option v-for="item in TeamListArr" :key="item.Id" :label="item.Name" :value="item.Id"> <template v-for="item in TeamListArr">
<!--去掉小包团2023-04-19-->
<el-option v-if="item.Id!=4" :key="item.Id" :label="item.Name" :value="item.Id">
</el-option> </el-option>
</template>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item style="margin-top:1px;"> <el-form-item style="margin-top:1px;">
...@@ -1120,9 +1124,14 @@ ...@@ -1120,9 +1124,14 @@
SaleBranchIdArray: [], SaleBranchIdArray: [],
OutGroupType: 0 OutGroupType: 0
}, },
OutGroupTypeList: [ OutGroupTypeList: [{
{Name: '常规', Id: 0}, Name: '常规',
{Name: '落地团', Id: 1}, Id: 0
},
{
Name: '落地团',
Id: 1
},
], ],
returnPriceList: this.priceList, returnPriceList: this.priceList,
//酒店列表 //酒店列表
...@@ -1673,15 +1682,15 @@ ...@@ -1673,15 +1682,15 @@
}); });
return isExit; return isExit;
}, },
getstandardCurrencyName(){ getstandardCurrencyName() {
let isShow = true let isShow = true
this.companyList.forEach(x=>{ this.companyList.forEach(x => {
if(x.id==this.priceData.OutBranchId&&x.standardCurrencyId>0){ if (x.id == this.priceData.OutBranchId && x.standardCurrencyId > 0) {
this.standardCurrencyName = x.standardCurrencyName this.standardCurrencyName = x.standardCurrencyName
isShow = false isShow = false
} }
}) })
if(isShow){ if (isShow) {
this.standardCurrencyName = '' this.standardCurrencyName = ''
} }
}, },
...@@ -1978,7 +1987,7 @@ ...@@ -1978,7 +1987,7 @@
//获取车辆列表 //获取车辆列表
getBusList() { getBusList() {
this.apipost("bus_get_GetBusTypePriceList", { this.apipost("bus_get_GetBusTypePriceList", {
IsHaveBusNum:1 IsHaveBusNum: 1
}, res => { }, res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.busPriceList = res.data.data; this.busPriceList = res.data.data;
...@@ -2040,7 +2049,7 @@ ...@@ -2040,7 +2049,7 @@
//深度监听,可监听到对象、数组的变化 //深度监听,可监听到对象、数组的变化
handler: function (val, oldVal) { handler: function (val, oldVal) {
this.initShowPriceList(); this.initShowPriceList();
this.$emit("headCallBack", this.returnPriceList,this.priceData.OutGroupType); this.$emit("headCallBack", this.returnPriceList, this.priceData.OutGroupType);
}, },
deep: true deep: true
}, },
...@@ -2048,7 +2057,7 @@ ...@@ -2048,7 +2057,7 @@
//深度监听,可监听到对象的变化 //深度监听,可监听到对象的变化
handler: function (val, oldVal) { handler: function (val, oldVal) {
this.initShowPriceList(); this.initShowPriceList();
this.$emit("headCallBack", this.returnPriceList,this.priceData.OutGroupType); this.$emit("headCallBack", this.returnPriceList, this.priceData.OutGroupType);
}, },
deep: true deep: true
}, },
......
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