Commit 75ba4d98 authored by 华国豪's avatar 华国豪 🙄
parents a98cda86 7f8b42b5
...@@ -221,9 +221,9 @@ ...@@ -221,9 +221,9 @@
<el-tooltip class="item" effect="dark" content="修改" placement="top"> <el-tooltip class="item" effect="dark" content="修改" placement="top">
<i class="iconfont icon-liuchengsheji" v-show="item.Status==1" @click="goUrl('addFinancialProcess',item.Id,8)"></i> <i class="iconfont icon-liuchengsheji" v-show="item.Status==1" @click="goUrl('addFinancialProcess',item.Id,8)"></i>
</el-tooltip> </el-tooltip>
<el-tooltip class="item" effect="dark" content="删除" placement="top"> <!-- <el-tooltip class="item" effect="dark" content="删除" placement="top">
<i class="edit el-icon-delete" v-show="item.Status==1" @click="deletTemplate(item.Id,item.Name)"></i> <i class="edit el-icon-delete" v-show="item.Status==1" @click="deletTemplate(item.Id,item.Name)"></i>
</el-tooltip> </el-tooltip> -->
</div> </div>
</li> </li>
......
...@@ -1099,7 +1099,16 @@ export default { ...@@ -1099,7 +1099,16 @@ export default {
{ {
field: "YingYeE", field: "YingYeE",
formatter: this.moneyFormat, formatter: this.moneyFormat,
title: "营业额", title: "联运营业额",
width: 90,
titleAlign: "left",
columnAlign: "left",
isResize: true
},
{
field: "RealIncome",
formatter: this.moneyFormat,
title: "实际营业额",
width: 90, width: 90,
titleAlign: "left", titleAlign: "left",
columnAlign: "left", columnAlign: "left",
......
...@@ -2018,6 +2018,7 @@ export default { ...@@ -2018,6 +2018,7 @@ export default {
//this.getVisaApplyForTypeEnum(); //this.getVisaApplyForTypeEnum();
// this.getChinaAirportList(); // this.getChinaAirportList();
// this.getJapanAirportList(); // this.getJapanAirportList();
//1231
this.getCountry(); this.getCountry();
this.getMarriageType(); this.getMarriageType();
this.getVisaDeparturesType(); this.getVisaDeparturesType();
......
...@@ -69,13 +69,13 @@ ...@@ -69,13 +69,13 @@
} }
.PlaneTicket ._ol_list > li { .PlaneTicket ._ol_list > li {
height: 107px; /* height: 107px; */
margin: 20px 0 0px 0px; margin: 20px 0 0px 0px;
transition: linear all 0.5s; transition: linear all 0.5s;
background-color: #fff; background-color: #fff;
border: 1px solid #dddddd; border: 1px solid #dddddd;
border-left: 0; border-left: 0;
overflow: hidden; /* overflow: hidden; */
position: relative; position: relative;
} }
...@@ -1179,14 +1179,13 @@ ...@@ -1179,14 +1179,13 @@
} }
.TCID_cont { .TCID_cont {
height: 28px; min-height: 28px;
line-height: 28px;
border-top: 1px dashed #ccc; border-top: 1px dashed #ccc;
text-indent: 20px;
} }
.Ticket_TCID { .Ticket_TCID {
margin-right: 2px; margin:5px 25px 5px 0;
display: inline-block;
} }
/*航班详情*/ /*航班详情*/
...@@ -1231,6 +1230,12 @@ ...@@ -1231,6 +1230,12 @@
.FinaceDanList { .FinaceDanList {
cursor: pointer; cursor: pointer;
} }
.teamTitle{
text-indent:10px;
min-height:28px;
border-top:1px solid #ccc;
line-height:28px;
}
</style> </style>
<template> <template>
<div class="flexOne PlaneTicket"> <div class="flexOne PlaneTicket">
...@@ -1600,9 +1605,11 @@ ...@@ -1600,9 +1605,11 @@
</el-row> </el-row>
<el-row :gutter="0"> <el-row :gutter="0">
<el-col :span="8"> <el-col :span="1">
<div class="teamTitle">团期:</div>
</el-col>
<el-col :span="15">
<div class="TCID_cont PingFangSC"> <div class="TCID_cont PingFangSC">
团期:
<span v-show="item.PriceList==null ||item.PriceList.length==0">暂无</span> <span v-show="item.PriceList==null ||item.PriceList.length==0">暂无</span>
<span class="Ticket_TCID" v-for="subItem in item.PriceList"> <span class="Ticket_TCID" v-for="subItem in item.PriceList">
<a style="color:blue;cursor:pointer" @click='goUrlT("RegistrationList",subItem.TCID,"报名清单")'> ({{subItem.TCID}}){{subItem.TCNUM}} </a> <a style="color:blue;cursor:pointer" @click='goUrlT("RegistrationList",subItem.TCID,"报名清单")'> ({{subItem.TCID}}){{subItem.TCNUM}} </a>
...@@ -1611,10 +1618,7 @@ ...@@ -1611,10 +1618,7 @@
</div> </div>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<div class="TCID_cont"></div> <div class="TCID_cont" style="padding-top:5px;">PNR:{{item.PNR}}</div>
</el-col>
<el-col :span="8">
<div class="TCID_cont">PNR:{{item.PNR}}</div>
</el-col> </el-col>
</el-row> </el-row>
</li> </li>
......
...@@ -369,7 +369,7 @@ ...@@ -369,7 +369,7 @@
</el-select> </el-select>
</span> </span>
</li> </li>
<li style="display:none"> <li>
<span> <span>
<em>出团公司</em> <em>出团公司</em>
<el-select class="w150" v-model="queryMsg.OutBranchId" filterable :placeholder="$t('pub.pleaseSel')"> <el-select class="w150" v-model="queryMsg.OutBranchId" filterable :placeholder="$t('pub.pleaseSel')">
...@@ -587,7 +587,7 @@ ...@@ -587,7 +587,7 @@
}else{ }else{
this.$message.error(res.data.message) this.$message.error(res.data.message)
} }
},err=>{}) },err=>{})
}).catch(() => { }).catch(() => {
this.$message({ this.$message({
type: 'info', type: 'info',
......
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