Commit 6d0d974c authored by liudong1993's avatar liudong1993
parents a638bb17 0294e3b8
...@@ -75,14 +75,6 @@ ...@@ -75,14 +75,6 @@
text-align: center; text-align: center;
} }
.seatStatistics .days li:nth-child(7n-1) p {
color: #e95252 !important;
}
.seatStatistics .days li:nth-child(7n) p {
color: #e95252 !important;
}
.seatStatistics .days { .seatStatistics .days {
width: 100%; width: 100%;
padding: 0; padding: 0;
...@@ -93,39 +85,7 @@ ...@@ -93,39 +85,7 @@
justify-content: space-around; justify-content: space-around;
} }
.seatStatistics .days>li {
list-style-type: none;
width: 14.2857%;
height: 140px;
text-align: center;
position: relative;
font-size: 12px;
float: left;
color: #000;
box-sizing: border-box;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.seatStatistics .days li>div {
height: 112px;
width: 100%;
overflow-y: auto;
text-align: left;
}
.seatStatistics .days li>div>p {
border-bottom: 1px dashed #ccc;
height: 28px;
line-height: 28px;
width: 100%;
text-indent: 10px;
background: #fff;
}
.seatStatistics .days li>div>p:nth-child(2n) {
background: #f5f5f5;
}
.seatStatistics .currentInput { .seatStatistics .currentInput {
width: 120px; width: 120px;
...@@ -216,6 +176,56 @@ ...@@ -216,6 +176,56 @@
margin: 20px 0; margin: 20px 0;
} }
.seatStatistics .flightTab {
border-collapse: collapse;
border: 1px solid #ddd
}
.seatStatistics .flightTab tr td,
.seatStatistics .flightTab tr th {
border: 1px solid #ddd
}
.seatStatistics .flightTab tr th {
margin: 0;
padding: 3px 0;
background-color: #3fa783;
width: 100%;
flex-wrap: wrap;
color: #fff;
}
.seatStatistics .flightTab tr td>div>p {
width: 100%;
padding-left: 3px;
font-size: 12px;
cursor: pointer;
}
.seatStatistics .flightTab tr td>div>p {
border-bottom: 1px dashed #ccc;
height: 28px;
line-height: 28px;
width: 100%;
text-indent: 10px;
background: #fff;
}
.seatStatistics .flightTab tr td>div>p:nth-child(2n) {
background: #f5f5f5;
}
.seatStatistics .flightTab tr td:nth-child(7n-6) p {
color: #e95252 !important;
}
.seatStatistics .flightTab tr td:nth-child(7n) p {
color: #e95252 !important;
}
/* 日期样式结束*/ /* 日期样式结束*/
</style> </style>
...@@ -292,32 +302,63 @@ ...@@ -292,32 +302,63 @@
</li> </li>
</ul> </ul>
</div> </div>
<table class="flightTab" style="table-layout: fixed; width: 100%;" v-loading="loading">
<ul class="weekdays"> <tr>
<li>{{$t('hotel.hotel_Monday')}}</li> <th width="15%">
<li>{{$t('hotel.hotel_Tuesday')}}</li> {{$t('hotel.hotel_Sunday')}}
<li>{{$t('hotel.hotel_Wednesday')}}</li> </th>
<li>{{$t('hotel.hotel_Thursday')}}</li> <th width="14%">
<li>{{$t('hotel.hotel_Friday')}}</li> {{$t('hotel.hotel_Monday')}}
<li class="weekendDay">{{$t('hotel.hotel_Saturday')}}</li> </th>
<li class="weekendDay">{{$t('hotel.hotel_Sunday')}}</li> <th width="14%">
</ul> {{$t('hotel.hotel_Tuesday')}}
<ul class="days clearfix" v-loading="loading"> </th>
<li v-for="(dayobject,index) in days" :key="dayobject.index"> <th width="14%">
<p class="ckStyle" :class="{ckStyleOther:dayobject.day.getMonth()+1 != currentMonth}"> {{$t('hotel.hotel_Wednesday')}}
{{dayobject.day.getDate()}} ({{dayobject.TotalCount}})</p> </th>
<th width="14%">
{{$t('hotel.hotel_Thursday')}}
</th>
<th width="14%">
{{$t('hotel.hotel_Friday')}}
</th>
<th width="15%">
{{$t('hotel.hotel_Saturday')}}
</th>
</tr>
<tbody v-for="(rItem,rIndex) in totalRows" :key="`d_`+rIndex">
<tr>
<template v-for="(cItem,cIndex) in ColCount">
<td style="vertical-align:top;" :key="`d_`+rIndex+`C_`+cIndex">
<template v-if="getDataObj(rIndex,cIndex)">
<p class="ckStyle" :class="{ckStyleOther:getDataObj(rIndex,cIndex).day.getMonth()+1 != currentMonth}">
{{getDataObj(rIndex,cIndex).day.getDate()}}
<template v-if="getDataObj(rIndex,cIndex)&&getDataObj(rIndex,cIndex).TotalCount">
({{getDataObj(rIndex,cIndex).TotalCount}})
</template>
</p>
<div class="ownScrollbarStyle"> <div class="ownScrollbarStyle">
<p class="over_ellipsis" v-for="item in dayobject.listArr" @click="goUrl('TicketManager',item,'票务管理')"> <p class="over_ellipsis" v-for="(item,index) in getDataObj(rIndex,cIndex).listArr"
:key="`d_`+rIndex+`C_`+cIndex+`I_`+index" @click="goUrl('TravelticketManager',item,'票务管理')">
{{item.AirLineTicketId}} {{item.AirLineTicketId}}
{{item.DepartureName}} {{item.DepartureName}}
- -
{{item.AlCode}} {{item.AlCode}}
- -
{{item.InOut}} {{item.InOut}}
<template v-if="item.OutBranchName&&item.OutBranchName!=''">
[{{ item.OutBranchName}}]
</template>
</p> </p>
</div> </div>
</li> </template>
</ul> </td>
</template>
</tr>
</tbody>
</table>
<br />
<br />
</div> </div>
</template> </template>
<script> <script>
...@@ -355,9 +396,19 @@ ...@@ -355,9 +396,19 @@
loading: false, loading: false,
//航空公司 //航空公司
AirlineList: [], AirlineList: [],
totalRows: 0, //总行数
ColCount: 7, //列数
}; };
}, },
methods: { methods: {
getDataObj(rowIndex, colIndex) {
var obj = {};
var newIndex = rowIndex * 7 + colIndex;
if (this.days && this.days.length > 0) {
obj = this.days[newIndex];
}
return obj;
},
//获取航空公司 //获取航空公司
getAirlineList() { getAirlineList() {
this.apipost( this.apipost(
...@@ -402,7 +453,7 @@ ...@@ -402,7 +453,7 @@
this.GetHoltelInventory(); this.GetHoltelInventory();
}, },
initCalendar: function (cur) { initCalendar: function (cur) {
var newDays = this.$calendarUtils.createCalendar(cur); var newDays = this.$calendarUtils.createCalendar_V2(cur);
this.currentDay = newDays.CurrentDay; this.currentDay = newDays.CurrentDay;
this.currentYear = newDays.CurrentYear; this.currentYear = newDays.CurrentYear;
this.currentMonth = newDays.CurrentMonth; this.currentMonth = newDays.CurrentMonth;
...@@ -415,6 +466,11 @@ ...@@ -415,6 +466,11 @@
dayobject.day = d; dayobject.day = d;
this.days.push(dayobject); this.days.push(dayobject);
} }
if (this.days.length % 7 == 0) {
this.totalRows = this.days.length / 7
} else {
this.totalRows = parseInt(this.days.length / 7) + 1;
}
}, },
//点击左箭头切换年月 //点击左箭头切换年月
pickPre: function (year, month) { pickPre: function (year, month) {
...@@ -508,7 +564,6 @@ ...@@ -508,7 +564,6 @@
res => { res => {
this.loading = false; this.loading = false;
}); });
}, },
}, },
mounted() { mounted() {
......
...@@ -687,7 +687,8 @@ ...@@ -687,7 +687,8 @@
<li> <li>
<span> <span>
<em>{{$t('op.Procurement')}}</em> <em>{{$t('op.Procurement')}}</em>
<el-select class="w150" v-model="Query.PurchaseCreateBy" filterable :placeholder="$t('pub.pleaseSel')" clearable> <el-select class="w150" v-model="Query.PurchaseCreateBy" filterable :placeholder="$t('pub.pleaseSel')"
clearable>
<el-option :label="$t('pub.unlimitedSel')" :value="0"> <el-option :label="$t('pub.unlimitedSel')" :value="0">
</el-option> </el-option>
<el-option v-for="(item, index) in AllEmployeeList" :label="item.EmName" :value="item.EmployeeId" <el-option v-for="(item, index) in AllEmployeeList" :label="item.EmName" :value="item.EmployeeId"
...@@ -1189,6 +1190,11 @@ ...@@ -1189,6 +1190,11 @@
created() { created() {
this.getCompanyList(); this.getCompanyList();
this.getAllEmployeeList(); this.getAllEmployeeList();
if (this.$route.query) {
if (this.$route.query.id) {
this.Query.ID = this.$route.query.id
}
}
}, },
mounted() { mounted() {
this.Query.QFlightDateStart = this.getBeforeDate(0, new Date().Format("yyyy-MM-dd")); this.Query.QFlightDateStart = this.getBeforeDate(0, new Date().Format("yyyy-MM-dd"));
......
...@@ -329,16 +329,15 @@ ...@@ -329,16 +329,15 @@
<table class="SalesHotelOrderTable" border="0" cellspacing="0" cellpadding="0" v-loading="loading"> <table class="SalesHotelOrderTable" border="0" cellspacing="0" cellpadding="0" v-loading="loading">
<tr> <tr>
<th width="50">{{$t('hotel.order_Number')}}</th> <th width="50">{{$t('hotel.order_Number')}}</th>
<th width="95">{{$t('salesModule.ThirdOrderNum')}}</th> <th width="100">{{$t('salesModule.ThirdOrderNum')}}</th>
<th width="190">{{$t('visa.v_tuanhao')}}</th> <th width="190">{{$t('visa.v_tuanhao')}}</th>
<th>{{$t('hotel.hotel_roomnumber')}}</th> <th>{{$t('hotel.hotel_roomnumber')}}</th>
<th>{{$t('hotel.hotel_Currency')}}</th> <th>{{$t('hotel.hotel_Currency')}}</th>
<th>{{$t('sm.zonge')}}</th> <th>{{$t('sm.zonge')}}</th>
<th>{{$t('fnc.shishou')}}</th> <th>{{$t('fnc.shishou')}}</th>
<th>{{$t('salesModule.BigBag')}}</th> <th>{{$t('fnc.ptshuijin')}}</th>
<th>{{$t('sm.youhuijine')}}</th> <th>{{$t('sm.youhuijine')}}</th>
<th>{{$t('Operation.Op_daishou')}}</th> <th>{{$t('Operation.Op_daishou')}}</th>
<th>{{$t('hotel.hotel_OrderStates')}}</th> <th>{{$t('hotel.hotel_OrderStates')}}</th>
<th>{{$t('fnc.cjshijian')}}</th> <th>{{$t('fnc.cjshijian')}}</th>
<th>{{$t('op.RZLDR')}}</th> <th>{{$t('op.RZLDR')}}</th>
...@@ -365,7 +364,7 @@ ...@@ -365,7 +364,7 @@
<td>{{item.CurrencyCode}}</td> <td>{{item.CurrencyCode}}</td>
<td>{{item.TotalPrice}}</td> <td>{{item.TotalPrice}}</td>
<td>{{item.Income}}</td> <td>{{item.Income}}</td>
<td>{{item.RedEnvelopeMoney}}</td> <td>{{item.PlatformTax}}</td>
<td>{{item.DiscountMoney}}</td> <td>{{item.DiscountMoney}}</td>
<td>{{item.DueinMoney}}</td> <td>{{item.DueinMoney}}</td>
<!-- <td>{{item.UpdateJapanese}}/{{item.totalChargeableRateInfoTaxOut}}</td> <!-- <td>{{item.UpdateJapanese}}/{{item.totalChargeableRateInfoTaxOut}}</td>
......
...@@ -1381,15 +1381,7 @@ ...@@ -1381,15 +1381,7 @@
{{ $t("objFill.xilietxbm") }} {{ $t("objFill.xilietxbm") }}
</el-dropdown-item> </el-dropdown-item>
</template> </template>
<el-dropdown-item @click.native=" <el-dropdown-item @click.native="goTonowTeam(item) ">
goTonowTeam(
'TravelManager',
item.ID,
item.TCID,
item.TCNUM,
item
)
">
{{ $t("objFill.dangtuanxbm") }} {{ $t("objFill.dangtuanxbm") }}
</el-dropdown-item> </el-dropdown-item>
</el-dropdown-menu> </el-dropdown-menu>
...@@ -3293,28 +3285,53 @@ ...@@ -3293,28 +3285,53 @@
} }
}, },
//当团修改 //当团修改
goTonowTeam(path, configId, tcid, TCNUM, item) { goTonowTeam(item) {
if (configId > 0) { var that = this;
this.$store.commit("pageConditionUpdate", this.queryMsg); var path = 'TravelManager';
this.$router.push({ var ttMsg = {
name: path, configId: item.ID,
query: {
configId: configId,
offerId: item.Config_OfferId, offerId: item.Config_OfferId,
openState: 1, openState: 1,
tcid: tcid, tcid: item.TCID,
TCNUM: TCNUM, TCNUM: item.TCNUM,
blank: "y", blank: "y",
tab: "团期配置", tab: "团期配置",
};
if (item.RelationPriceList && item.RelationPriceList.length > 0) {
var tipMsg = "当前行程为系列团,你是否确定需要将当前团期进行独立维护并且不再与系列团关联?"
that.Confirm(tipMsg, function () {
that.queryCommonData.loading = true;
var dMsg = {
ConfigId: item.ID,
TCID: item.TCID
};
that.apipost(
"travel_post_SetTravelConfigChangeDT",
dMsg,
(res) => {
that.queryCommonData.loading = false;
if (res.data.resultCode == 1) {
that.Success(res.data.message);
ttMsg.configId = res.data.data;
that.getControlList();
that.gotoUrl(path,ttMsg);
} else {
that.Error(res.data.message);
}
}, },
null
);
}); });
} else { } else {
that.gotoUrl(path, ttMsg);
}
},
gotoUrl(path, query) {
this.$router.push({ this.$router.push({
name: path, name: path,
query: query
}); });
}
}, },
//删除团期 //删除团期
removeTeamInfo(TCID) { removeTeamInfo(TCID) {
var that = this; var that = this;
......
...@@ -975,7 +975,7 @@ ...@@ -975,7 +975,7 @@
<el-dropdown-item @click.native="goToOpenTravel('TravelManager',item.ID,0,item)"> <el-dropdown-item @click.native="goToOpenTravel('TravelManager',item.ID,0,item)">
{{$t('Operation.Op_xilieModyfi')}}</el-dropdown-item> {{$t('Operation.Op_xilieModyfi')}}</el-dropdown-item>
</template> </template>
<el-dropdown-item @click.native="goToOpenTravel('TravelManager',item.ID,item.TCID,item)"> <el-dropdown-item @click.native="goTonowTeam(item)">
{{$t('Operation.Op_dangtuanModify')}}</el-dropdown-item> {{$t('Operation.Op_dangtuanModify')}}</el-dropdown-item>
</el-dropdown-menu> </el-dropdown-menu>
</el-dropdown> </el-dropdown>
...@@ -2582,6 +2582,54 @@ ...@@ -2582,6 +2582,54 @@
}); });
} }
}, },
//当团修改
goTonowTeam(item) {
var that = this;
var path = 'TravelManager';
var ttMsg = {
configId: item.ID,
offerId: item.Config_OfferId,
openState: 1,
tcid: item.TCID,
TCNUM: item.TCNUM,
blank: "y",
tab: "团期配置",
};
if (item.RelationPriceList && item.RelationPriceList.length > 0) {
var tipMsg = "当前行程为系列团,你是否确定需要将当前团期进行独立维护并且不再与系列团关联?"
that.Confirm(tipMsg, function () {
that.queryCommonData.loading = true;
var dMsg = {
ConfigId: item.ID,
TCID: item.TCID
};
that.apipost(
"travel_post_SetTravelConfigChangeDT",
dMsg,
(res) => {
that.queryCommonData.loading = false;
if (res.data.resultCode == 1) {
that.Success(res.data.message);
ttMsg.configId = res.data.data;
that.getControlList();
that.gotoUrl(path, ttMsg);
} else {
that.Error(res.data.message);
}
},
null
);
});
} else {
that.gotoUrl(path, ttMsg);
}
},
gotoUrl(path, query) {
this.$router.push({
name: path,
query: query
});
},
//删除团期 //删除团期
removeTeamInfo(TCID) { removeTeamInfo(TCID) {
var that = this; var that = this;
......
...@@ -745,7 +745,7 @@ ...@@ -745,7 +745,7 @@
{{$t('Operation.Op_xilieModyfi')}} {{$t('Operation.Op_xilieModyfi')}}
</el-dropdown-item> </el-dropdown-item>
</template> </template>
<el-dropdown-item @click.native="goTonowTeam('TravelManager',item.ID,item.TCID,item.TCNUM,item)"> <el-dropdown-item @click.native="goTonowTeam(item)">
{{$t('Operation.Op_dangtuanModify')}} {{$t('Operation.Op_dangtuanModify')}}
</el-dropdown-item> </el-dropdown-item>
</el-dropdown-menu> </el-dropdown-menu>
...@@ -1834,7 +1834,6 @@ ...@@ -1834,7 +1834,6 @@
} }
) )
}, },
//验证大小 //验证大小
checkTeamNum(queryMsg) { checkTeamNum(queryMsg) {
var TeamMinNum = parseInt(queryMsg.TeamMinNum) var TeamMinNum = parseInt(queryMsg.TeamMinNum)
...@@ -2000,7 +1999,6 @@ ...@@ -2000,7 +1999,6 @@
} }
}) })
}, },
goUrl(path, id, name) { goUrl(path, id, name) {
this.$store.commit('pageConditionUpdate', this.queryMsg) this.$store.commit('pageConditionUpdate', this.queryMsg)
this.$router.push({ this.$router.push({
...@@ -2101,30 +2099,53 @@ ...@@ -2101,30 +2099,53 @@
} }
}, },
//当团修改 //当团修改
goTonowTeam(path, configId, tcid, TCNUM, item) { goTonowTeam(item) {
if (configId > 0) { var that = this;
this.$store.commit('pageConditionUpdate', this.queryMsg) var path = 'TravelManager';
this.$router.push({ var ttMsg = {
name: path, configId: item.ID,
query: {
configId: configId,
offerId: item.Config_OfferId, offerId: item.Config_OfferId,
openState: 1, openState: 1,
tcid: tcid, tcid: item.TCID,
TCNUM: TCNUM, TCNUM: item.TCNUM,
blank: 'y', blank: "y",
tab: '团期配置', tab: "团期配置",
flag: this.$route.query.flag ? this.$route.query.flag : false };
if (item.RelationPriceList && item.RelationPriceList.length > 0) {
var tipMsg = "当前行程为系列团,你是否确定需要将当前团期进行独立维护并且不再与系列团关联?"
that.Confirm(tipMsg, function () {
that.queryCommonData.loading = true;
var dMsg = {
ConfigId: item.ID,
TCID: item.TCID
};
that.apipost(
"travel_post_SetTravelConfigChangeDT",
dMsg,
(res) => {
that.queryCommonData.loading = false;
if (res.data.resultCode == 1) {
that.Success(res.data.message);
ttMsg.configId = res.data.data;
that.getControlList();
that.gotoUrl(path, ttMsg);
} else {
that.Error(res.data.message);
} }
}) },
null
);
});
} else { } else {
this.$router.push({ that.gotoUrl(path, ttMsg);
name: path
})
} }
}, },
gotoUrl(path, query) {
this.$router.push({
name: path,
query: query
});
},
//删除团期 //删除团期
removeTeamInfo(TCID) { removeTeamInfo(TCID) {
var that = this var that = this
......
...@@ -350,7 +350,7 @@ ...@@ -350,7 +350,7 @@
<template v-if="item.CType!=4"> <template v-if="item.CType!=4">
<el-tooltip class="item" effect="dark" :content="$t('objFill.shenhetongguo')" placement="top-start" <el-tooltip class="item" effect="dark" :content="$t('objFill.shenhetongguo')" placement="top-start"
v-if="item.Status==1"> v-if="item.Status==1">
<el-button type="primary" icon="iconfont icon-shenpi" circle @click="item.CType==4?showTongGuo(item,2):SubmitContract(item,2)"> <el-button type="primary" icon="iconfont icon-shenpi" circle @click="SubmitContract(item,2)">
</el-button> </el-button>
</el-tooltip> </el-tooltip>
<el-tooltip class="item" effect="dark" :content="$t('fnc.bohui')" placement="top-start" <el-tooltip class="item" effect="dark" :content="$t('fnc.bohui')" placement="top-start"
...@@ -528,10 +528,6 @@ ...@@ -528,10 +528,6 @@
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<button class="hollowFixedBtn" @click="closeContractDialog">{{$t('pub.cancelBtn')}}</button> &nbsp; <button class="hollowFixedBtn" @click="closeContractDialog">{{$t('pub.cancelBtn')}}</button> &nbsp;
<button class="normalBtn" type="primary" @click="!isBoHui?AuditElec():SubmitContract(BoHuiObj,auditMsg.AuditContract)">{{$t('pub.sureBtn')}}</button> <button class="normalBtn" type="primary" @click="!isBoHui?AuditElec():SubmitContract(BoHuiObj,auditMsg.AuditContract)">{{$t('pub.sureBtn')}}</button>
<!-- <template v-else>
<button class="hollowFixedBtn" type="" @click="showBoHui(BoHuiObj,3)">{{$t('fnc.bohui')}}</button>&nbsp;
<button class="normalBtn" type="primary" @click="showTongGuo(BoHuiObj,2)">{{$t('visa.v_tongguo')}}</button>
</template> -->
</div> </div>
</el-dialog> </el-dialog>
</div> </div>
...@@ -730,6 +726,7 @@ ...@@ -730,6 +726,7 @@
}, },
//审核通过或者驳回 //审核通过或者驳回
AuditElec() { AuditElec() {
if(this.activeName==1){
this.apipost("travelcontract_get_UpdateAuditContractService", this.auditMsg, res => { this.apipost("travelcontract_get_UpdateAuditContractService", this.auditMsg, res => {
if (res.data.resultCode === 1) { if (res.data.resultCode === 1) {
this.Success(res.data.message); this.Success(res.data.message);
...@@ -739,6 +736,9 @@ ...@@ -739,6 +736,9 @@
this.Error(res.data.message); this.Error(res.data.message);
} }
}, null); }, null);
}else if(this.activeName==2){
this.SubmitContract(this.BoHuiObj, this.auditMsg.AuditContract)
}
}, },
//切换 //切换
getSwitch() { getSwitch() {
...@@ -787,17 +787,9 @@ ...@@ -787,17 +787,9 @@
this.hetongTitle = `${this.$t('objFill.v101.administrative.hetongbohui')}` this.hetongTitle = `${this.$t('objFill.v101.administrative.hetongbohui')}`
this.BoHuiObj = JSON.parse(JSON.stringify(item)); this.BoHuiObj = JSON.parse(JSON.stringify(item));
this.auditMsg.AuditContract = status; this.auditMsg.AuditContract = status;
// this.isShowContract = true this.auditMsg.Id = item.ID;
this.isBoHui = 2; this.isShowContract = true
// this.getContractInfor(item) this.isBoHui = 0;
},
showTongGuo(item, status) {
this.hetongTitle = `${this.$t('objFill.v102.hetongtongguo')}`
this.BoHuiObj = JSON.parse(JSON.stringify(item));
this.auditMsg.AuditContract = status;
// this.isShowContract = true
this.isBoHui = 2
// this.getContractInfor(item) // this.getContractInfor(item)
}, },
showshenghe(item) { showshenghe(item) {
......
...@@ -6,16 +6,18 @@ ...@@ -6,16 +6,18 @@
</span> </span>
<span class="foldList" @click="fold" v-if="isFold==''">{{$t('sm.djzd')}}</span> <span class="foldList" @click="fold" v-if="isFold==''">{{$t('sm.djzd')}}</span>
<span class="foldList" @click="fold" v-if="isFold==1">{{$t('sm.djzk')}}</span> <span class="foldList" @click="fold" v-if="isFold==1">{{$t('sm.djzk')}}</span>
<span v-if="FeatureData.ConfigId&&dataAll.FeaturePageType&&FeatureData.FeatureType==9" class="foldList" <template v-if="FeatureData.ConfigId&&FeatureData.FeatureType==9">
style="margin-right: 5px;" @click="journeyTemplate()">{{$t('objFill.v101.myOrdersAllType.bianjixc')}}</span> <span v-if="dataAll.FeaturePageType" class="foldList" style="margin-right: 5px;"
<span style="color: red;float: right;margin-right: 5px;line-height: 28px;font-weight:bold;"> @click="journeyTemplate()">{{$t('objFill.v101.myOrdersAllType.bianjixc')}}</span>
{{$t('objFill.v101.myOrdersAllType.xinfzdtqrx')}}</span> <font v-else style="margin-right:5px;color:red;float:right;padding-top:5px;font-weight:bold;">
请选择 线路行程=>版型
</font>
</template>
<div class="TrfList clearfix"> <div class="TrfList clearfix">
<template v-for="item in TypeArray"> <template v-for="item in TypeArray">
<div class="TFslide" <div class="TFslide"
:class="{'TFcked':item.isShow,'display_none':(item.TypeState===4 && FeatureData.FeatureType !== 4) || (item.TypeState===4 && !$route.query.configId)}" :class="{'TFcked':item.isShow,'display_none':(item.TypeState===4 && FeatureData.FeatureType !== 4) || (item.TypeState===4 && !$route.query.configId)}"
@click="clickFeature(item)" :key="item.subCode"> @click="clickFeature(item)" :key="item.subCode">
<!--v-if="((item.TypeState>3 && CurrentUserInfo.RB_Group_id==QjGroupId())||item.TypeState<=3)"-->
<img v-bind:src="item.imgUrl"> <img v-bind:src="item.imgUrl">
<div>{{item.ckTitle}}</div> <div>{{item.ckTitle}}</div>
</div> </div>
...@@ -202,14 +204,6 @@ ...@@ -202,14 +204,6 @@
<iframe name="myIframe" :src="myIframeUrl" style="width: 100%;border: 0;" <iframe name="myIframe" :src="myIframeUrl" style="width: 100%;border: 0;"
:style="{'height':myIframeHeigth+'px'}"> :style="{'height':myIframeHeigth+'px'}">
</iframe> </iframe>
<!-- <div v-if="FeatureData.TripImageListNew&&FeatureData.TripImageListNew.length>0">
<template v-for="url in FeatureData.TripImageListNew">
<el-image
style="width: 100%; height: auto"
:src="url"
:preview-src-list="FeatureData.TripImageListNew"></el-image>
</template>
</div> -->
<div v-show="PostMessageText=='暂无行程数据'" <div v-show="PostMessageText=='暂无行程数据'"
style="text-align: center;margin-bottom: 20px;font-size: 14px;color: #808080;"> style="text-align: center;margin-bottom: 20px;font-size: 14px;color: #808080;">
{{$t('objFill.v101.myOrdersAllType.zanwusjysjbjssb')}}</div> {{$t('objFill.v101.myOrdersAllType.zanwusjysjbjssb')}}</div>
......
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