Commit a98cda86 authored by 华国豪's avatar 华国豪 🙄

'修改销售@'

parent 08ce9b15
...@@ -14,7 +14,9 @@ time, mark, audio, video { ...@@ -14,7 +14,9 @@ time, mark, audio, video {
outline:0; outline:0;
box-sizing: border-box; box-sizing: border-box;
} }
.el-message{
z-index: 20200128 !important;
}
p,td,div{ p,td,div{
word-break:break-all; word-break:break-all;
} }
......
...@@ -459,7 +459,7 @@ ...@@ -459,7 +459,7 @@
<li v-for="(img,imgI) in son.Image"> <li v-for="(img,imgI) in son.Image">
<img v-if="!img" src="../../assets/img/Travelslider.png" alt=""> <img v-if="!img" src="../../assets/img/Travelslider.png" alt="">
<img v-else :src="img" alt=""> <img v-else :src="img" alt="">
<div class="_see_img" @click="showImg(img)"> <div class="_see_img" @click="showImg(img,2)">
<i class="iconfont icon-sousuo"></i> <i class="iconfont icon-sousuo"></i>
</div> </div>
</li> </li>
...@@ -811,7 +811,7 @@ ...@@ -811,7 +811,7 @@
<li v-for="(img,imgI) in son.Image"> <li v-for="(img,imgI) in son.Image">
<img v-if="!img" src="../../assets/img/Travelslider.png" alt=""> <img v-if="!img" src="../../assets/img/Travelslider.png" alt="">
<img v-else :src="img" alt=""> <img v-else :src="img" alt="">
<div class="_see_img" @click="showImg(img)"> <div class="_see_img" @click="showImg(img,2)">
<i class="iconfont icon-sousuo"></i> <i class="iconfont icon-sousuo"></i>
</div> </div>
</li> </li>
...@@ -841,7 +841,7 @@ ...@@ -841,7 +841,7 @@
<li v-for="(img,imgI) in son.Image"> <li v-for="(img,imgI) in son.Image">
<img v-if="!img" src="../../assets/img/Travelslider.png" alt=""> <img v-if="!img" src="../../assets/img/Travelslider.png" alt="">
<img v-else :src="img" alt=""> <img v-else :src="img" alt="">
<div class="_see_img" @click="showImg(img)"> <div class="_see_img" @click="showImg(img,2)">
<i class="iconfont icon-sousuo"></i> <i class="iconfont icon-sousuo"></i>
</div> </div>
</li> </li>
...@@ -1443,8 +1443,21 @@ export default { ...@@ -1443,8 +1443,21 @@ export default {
inited (viewer){ inited (viewer){
this.$viewer = viewer this.$viewer = viewer
}, },
showImg(obj){ showImg(obj, type){
this.$viewer.view(this.images.indexOf(obj)) if (type) {
let isExsit=false
this.images.forEach(x=>{
if(x==obj)
isExsit=true
})
if(!isExsit) {
this.images.push(obj)
} else {
this.$viewer.view(this.images.indexOf(obj))
}
} else {
this.$viewer.view(this.images.indexOf(obj))
}
this.$viewer.show() this.$viewer.show()
}, },
Financial_post_GetDetail(id,t){ //获取单据详情 Financial_post_GetDetail(id,t){ //获取单据详情
......
...@@ -324,13 +324,16 @@ ...@@ -324,13 +324,16 @@
.changLogList_l{border-left: 1px solid #E9E9E9;position: relative;padding-bottom: 10px;padding-left: 20px;padding-top: 10px;} .changLogList_l{border-left: 1px solid #E9E9E9;position: relative;padding-bottom: 10px;padding-left: 20px;padding-top: 10px;}
._radius_green{background-color: #47BF8C;width: 7px;height: 7px;border-radius: 50%;display: inline-block;position: absolute;left: -4px;top: 19px;} ._radius_green{background-color: #47BF8C;width: 7px;height: 7px;border-radius: 50%;display: inline-block;position: absolute;left: -4px;top: 19px;}
.changLog_time{color: #666666;font-size: 12px;display: inline-block;padding-right: 10px} .changLog_time{color: #666666;font-size: 12px;display: inline-block;padding-right: 10px}
.color_shz{color: #1273BC}
.color_tg{color: #4BCA81}
.color_bh{color: #c94052}
</style> </style>
<template> <template>
<div class="page_fdd" v-if="GetDetail"> <div class="page_fdd" v-if="GetDetail">
<div class="_none_print"> <div class="_none_print">
<span class="_Printing" @click="goPrintPage(GetDetail.Type,GetDetail.FrID,GetDetail.Is_Merge,OrderSource)">打印单据</span> <span class="_Printing" @click="goPrintPage(GetDetail.Type,GetDetail.FrID,GetDetail.Is_Merge,OrderSource)">打印单据</span>
<p class="_tit">{{GetDetail.FinanceName}}</p> <p class="_tit">{{GetDetail.FinanceName}} <span :class="{color_shz:(GetDetail.StatusStr!=='通过' && GetDetail.StatusStr!=='驳回' && GetDetail.StatusStr!=='作废'),color_tg:GetDetail.StatusStr==='通过',color_bh:GetDetail.StatusStr==='驳回'}">{{GetDetail.StatusStr}}</span></p>
<div class="_conten"> <div class="_conten">
<my-Bill v-if="GetDetail.Type!==1" :isPrintPage="false" :ID="GetDetail.FrID" :width="widthSon" :color="colorSon"></my-Bill> <my-Bill v-if="GetDetail.Type!==1" :isPrintPage="false" :ID="GetDetail.FrID" :width="widthSon" :color="colorSon"></my-Bill>
<my-RVB-Bill v-else-if="GetDetail.Type===1" :ID="GetDetail.FrID" :isPrintPage="false" :width="widthSon" :color="colorSon"></my-RVB-Bill> <my-RVB-Bill v-else-if="GetDetail.Type===1" :ID="GetDetail.FrID" :isPrintPage="false" :width="widthSon" :color="colorSon"></my-RVB-Bill>
...@@ -589,7 +592,7 @@ ...@@ -589,7 +592,7 @@
<li v-for="(img,imgI) in son.Image"> <li v-for="(img,imgI) in son.Image">
<img v-if="!img" src="../../assets/img/Travelslider.png" alt=""> <img v-if="!img" src="../../assets/img/Travelslider.png" alt="">
<img v-else :src="img" alt=""> <img v-else :src="img" alt="">
<div class="_see_img" @click="showImg(img)"> <div class="_see_img" @click="showImg(img,2)">
<i class="iconfont icon-sousuo"></i> <i class="iconfont icon-sousuo"></i>
</div> </div>
</li> </li>
...@@ -620,7 +623,7 @@ ...@@ -620,7 +623,7 @@
<li v-for="(img,imgI) in son.Image"> <li v-for="(img,imgI) in son.Image">
<img v-if="!img" src="../../assets/img/Travelslider.png" alt=""> <img v-if="!img" src="../../assets/img/Travelslider.png" alt="">
<img v-else :src="img" alt=""> <img v-else :src="img" alt="">
<div class="_see_img" @click="showImg(img)"> <div class="_see_img" @click="showImg(img,2)">
<i class="iconfont icon-sousuo"></i> <i class="iconfont icon-sousuo"></i>
</div> </div>
</li> </li>
...@@ -1081,8 +1084,21 @@ export default { ...@@ -1081,8 +1084,21 @@ export default {
this.uploadImgList.push(obj) this.uploadImgList.push(obj)
} }
}, },
showImg(obj){ showImg(obj, type){
this.$viewer.view(this.images.indexOf(obj)) if (type) {
let isExsit=false
this.images.forEach(x=>{
if(x==obj)
isExsit=true
})
if(!isExsit) {
this.images.push(obj)
} else {
this.$viewer.view(this.images.indexOf(obj))
}
} else {
this.$viewer.view(this.images.indexOf(obj))
}
this.$viewer.show() this.$viewer.show()
// this.picObj= obj; // this.picObj= obj;
// this.picIsShow= true; // this.picIsShow= true;
......
...@@ -78,14 +78,13 @@ ...@@ -78,14 +78,13 @@
<el-col :span="5" class="groupTourOrder_count_col"> <el-col :span="5" class="groupTourOrder_count_col">
<div class="groupTourOrder_count_item"> <div class="groupTourOrder_count_item">
<div> <div>
<i class="iconfont icon-baomingrenshu groupTourOrder_count_green"></i> <i class="iconfont icon-qian groupTourOrder_count_green"></i>
<span>总报名人数</span> <span>销售额统计</span>
<span>{{countData.TotalGuestNum}}</span>
</div> </div>
<p> <p>
<span>经济舱:{{countData.TotalYSeatNum}};</span> <span>应收款:{{countData.PreferPrice}};</span>
<span>商务舱:{{countData.TotalESeatNum}};</span> <span>已收款:{{countData.Income}};</span>
<span>头等舱:{{countData.TotalFSeatNum}};</span> <span :class="{color_red_order:countData.DueinMoney!==countData.PreferPrice}">未收款:{{countData.DueinMoney}};</span>
</p> </p>
</div> </div>
</el-col> </el-col>
...@@ -149,19 +148,19 @@ ...@@ -149,19 +148,19 @@
<div style="clear: both; width: 100%;height: 20px;"></div> <div style="clear: both; width: 100%;height: 20px;"></div>
<table class="enrollTotalSearchTable" border="0" cellspacing="0" cellpadding="0" v-loading='loading'> <table class="enrollTotalSearchTable" border="0" cellspacing="0" cellpadding="0" v-loading='loading'>
<tr> <tr>
<th width="120">单号&团号</th> <th width="130">单号&团号</th>
<th width="60">客户信息</th>
<th width="70">类型</th> <th width="70">类型</th>
<th width="180">系列&线路</th> <th width="180">系列&线路</th>
<th width="190">日期</th> <th width="100">人数/机位数</th>
<th width="50">人数</th>
<th width="80">单价</th> <th width="80">单价</th>
<th width="80">成交单价</th> <th width="80">成交单价</th>
<th width="80">应收总额</th> <th width="80">应收总额</th>
<th width="80">实收</th> <th width="80">实收</th>
<th width="80">退款</th> <th width="80">退款</th>
<th width="80">平台税金</th> <th width="80">平台税金</th>
<th width="60">状态</th> <th width="80">待收金额</th>
<th width="60">客户信息</th> <th width="60">状态</th>
<th v-if="userId==1" width="140">操作</th> <th v-if="userId==1" width="140">操作</th>
</tr> </tr>
<tr> <tr>
...@@ -175,6 +174,11 @@ ...@@ -175,6 +174,11 @@
@click="goUrlX('产品查询', 'productQuery',item.tcid,item.tcnum)">{{item.tcnum}}</p> @click="goUrlX('产品查询', 'productQuery',item.tcid,item.tcnum)">{{item.tcnum}}</p>
<p class="fz12 over_ellipsis" style="width: 100%;">{{item.createBy}}<span v-if="item.leaveStr!=''" style="color:red">({{item.leaveStr}})</span></p> <p class="fz12 over_ellipsis" style="width: 100%;">{{item.createBy}}<span v-if="item.leaveStr!=''" style="color:red">({{item.leaveStr}})</span></p>
<p class="fz12 over_ellipsis" style="width: 100%;">{{item.commissionSPeopleName=='无'?'':item.commissionSPeopleName}}</p> <p class="fz12 over_ellipsis" style="width: 100%;">{{item.commissionSPeopleName=='无'?'':item.commissionSPeopleName}}</p>
<p>发团:{{item.startDate}}</p>
</td>
<td>
<p class="over_ellipsis" style="width: 150px;" :title="item.contactName">{{item.contactName}}</p>
<p>{{item.contactMobile}}</p>
</td> </td>
<td> <td>
<p class="fz12 over_ellipsis" style="width: 100%;">{{item.orderTypeName}}</p> <p class="fz12 over_ellipsis" style="width: 100%;">{{item.orderTypeName}}</p>
...@@ -186,10 +190,7 @@ ...@@ -186,10 +190,7 @@
<p style="max-width: 160px;display: block;" class="over_ellipsis" :title="item.ltName">{{item.ltName}}</p> <p style="max-width: 160px;display: block;" class="over_ellipsis" :title="item.ltName">{{item.ltName}}</p>
</td> </td>
<td> <td>
<p>下单:{{item.createDate}}</p> {{item.guestNum}}/{{item.ySeatNum>0? item.ySeatNum+'Y ':''}}{{item.eSeatNum>0? item.eSeatNum+'E ':''}}{{item.fSeatNum>0? item.fSeatNum+'F ':''}}
</td>
<td>
{{item.guestNum}}
</td> </td>
<td style="color:#FF9C00">{{item.tC_Price}}</td> <td style="color:#FF9C00">{{item.tC_Price}}</td>
<td style="color:#FF9C00">{{item.unit_Price}}</td> <td style="color:#FF9C00">{{item.unit_Price}}</td>
...@@ -202,11 +203,8 @@ ...@@ -202,11 +203,8 @@
</td> </td>
<td>{{item.refund}}</td> <td>{{item.refund}}</td>
<td>{{item.platformTax}}</td> <td>{{item.platformTax}}</td>
<td><span :class="{color_red_order:item.dueInMoney!==item.preferPrice}">{{item.dueInMoney}}</span></td>
<td class="fz12" :style="item.orderState===3?'color: #e95252;':''">{{item.statsstr}}</td> <td class="fz12" :style="item.orderState===3?'color: #e95252;':''">{{item.statsstr}}</td>
<td>
<p class="over_ellipsis" style="width: 150px;" :title="item.contactName">{{item.contactName}}</p>
<p>{{item.contactMobile}}</p>
</td>
<td v-if="userId==1"> <td v-if="userId==1">
<button class="normalBtn" style="margin-left:0;width:95px;padding:0" @click="getSalerInfo(item)">修改业务员</button> <button class="normalBtn" style="margin-left:0;width:95px;padding:0" @click="getSalerInfo(item)">修改业务员</button>
</td> </td>
...@@ -563,6 +561,9 @@ ...@@ -563,6 +561,9 @@
</script> </script>
<style> <style>
.color_red_order{
color: #e95252 !important;
}
.enrollTotalSearch { .enrollTotalSearch {
width: 100%; width: 100%;
min-height: auto; min-height: auto;
...@@ -612,10 +613,11 @@ ...@@ -612,10 +613,11 @@
color: #333; color: #333;
border-bottom: 1px solid #cccccc; border-bottom: 1px solid #cccccc;
border-right: 1px solid #cccccc; border-right: 1px solid #cccccc;
border-collapse: collapse;
} }
.enrollTotalSearchTable tr { .enrollTotalSearchTable tr {
border-bottom: 2px solid #333; /* border-bottom: 2px solid #333; */
} }
.enrollTotalSearchTable tr th { .enrollTotalSearchTable tr th {
...@@ -632,7 +634,12 @@ ...@@ -632,7 +634,12 @@
background: #fff; background: #fff;
text-align: left; text-align: left;
} }
.enrollTotalSearchTable tbody tr:last-child {
border-bottom: 2px solid #333;
}
.enrollTotalSearchTable tr:first-child td:first-child {
border-bottom: 2px solid #333;
}
.enrollTotalSearchTable tr td { .enrollTotalSearchTable tr td {
height: 80px; height: 80px;
padding: 10px; padding: 10px;
......
<style> <style>
@import "../../assets/css/newTravelManager.css"; @import "../../assets/css/newTravelManager.css";
.color_red_order{
color: #e95252 !important;
}
.groupTourOrderSearch { .groupTourOrderSearch {
width: 100%; width: 100%;
min-height: auto; min-height: auto;
...@@ -37,9 +40,16 @@ ...@@ -37,9 +40,16 @@
color: #333; color: #333;
border-bottom: 1px solid #cccccc; border-bottom: 1px solid #cccccc;
border-right: 1px solid #cccccc; border-right: 1px solid #cccccc;
border-collapse: collapse;
} }
.groupTourOrderSearchTable tr { .groupTourOrderSearchTable tbody tr:last-child {
border-bottom: 2px solid #333; border-bottom: 2px solid #333;
}
.groupTourOrderSearchTable tr:first-child td:first-child {
border-bottom: 2px solid #333;
}
.groupTourOrderSearchTable tbody{
} }
.groupTourOrderSearchTable tr th { .groupTourOrderSearchTable tr th {
background: #e6e6e6; background: #e6e6e6;
...@@ -1112,16 +1122,15 @@ ...@@ -1112,16 +1122,15 @@
<el-col :span="5" class="groupTourOrder_count_col"> <el-col :span="5" class="groupTourOrder_count_col">
<div class="groupTourOrder_count_item"> <div class="groupTourOrder_count_item">
<div> <div>
<i class="iconfont icon-baomingrenshu groupTourOrder_count_green"></i> <i class="iconfont icon-qian groupTourOrder_count_green"></i>
<span>总报名人数</span> <span>销售额统计</span>
<span>{{countData.TotalGuestNum}}</span> </div>
</div> <p>
<p> <span>应收款:{{countData.PreferPrice}};</span>
<span>经济舱:{{countData.TotalYSeatNum}};</span> <span>已收款:{{countData.Income}};</span>
<span>商务舱:{{countData.TotalESeatNum}};</span> <span :class="{color_red_order:countData.DueinMoney!==countData.PreferPrice}">未收款:{{countData.DueinMoney}};</span>
<span>头等舱:{{countData.TotalFSeatNum}};</span> </p>
</p> </div>
</div>
</el-col> </el-col>
<el-col :span="5" class="groupTourOrder_count_col"> <el-col :span="5" class="groupTourOrder_count_col">
<div class="groupTourOrder_count_item"> <div class="groupTourOrder_count_item">
...@@ -1184,9 +1193,9 @@ ...@@ -1184,9 +1193,9 @@
<table class="groupTourOrderSearchTable" border="0" cellspacing="0" cellpadding="0" v-loading='loading'> <table class="groupTourOrderSearchTable" border="0" cellspacing="0" cellpadding="0" v-loading='loading'>
<tr> <tr>
<th width="120">单号&团号</th> <th width="120">单号&团号</th>
<th width="120">客户信息</th>
<th width="70">类型</th> <th width="70">类型</th>
<th width="150">系列&线路</th> <th width="150">系列&线路</th>
<th width="200">日期</th>
<th width="60">人数</th> <th width="60">人数</th>
<th width="80">单价</th> <th width="80">单价</th>
<th width="80">成交单价</th> <th width="80">成交单价</th>
...@@ -1194,8 +1203,8 @@ ...@@ -1194,8 +1203,8 @@
<th width="80">实收</th> <th width="80">实收</th>
<th width="80">退款</th> <th width="80">退款</th>
<th width="80">平台税金</th> <th width="80">平台税金</th>
<th width="80">待收金额</th>
<th width="80">状态</th> <th width="80">状态</th>
<th width="120">客户信息</th>
<th width="120">确认函</th> <th width="120">确认函</th>
<th width="200">操作</th> <th width="200">操作</th>
</tr> </tr>
...@@ -1208,7 +1217,12 @@ ...@@ -1208,7 +1217,12 @@
<p class="fbold over_ellipsis" style="width: 100%;cursor:pointer;" :title="item.orderId" @click="goUrlX('团报名清单','groupTourOrderByTuan',item.tcid,item.tcnum)">{{item.orderId}}</p> <p class="fbold over_ellipsis" style="width: 100%;cursor:pointer;" :title="item.orderId" @click="goUrlX('团报名清单','groupTourOrderByTuan',item.tcid,item.tcnum)">{{item.orderId}}</p>
<p class="fz12 over_ellipsis" style="width: 100%;text-decoration:underline;cursor:pointer;" :title="item.alName" @click="goUrlX('产品查询','productQuery',item.tcid,item.tcnum)">{{item.tcnum}}</p> <p class="fz12 over_ellipsis" style="width: 100%;text-decoration:underline;cursor:pointer;" :title="item.alName" @click="goUrlX('产品查询','productQuery',item.tcid,item.tcnum)">{{item.tcnum}}</p>
<p class="fz12 over_ellipsis" style="width: 100%;">{{item.commissionSPeopleName}}</p> <p class="fz12 over_ellipsis" style="width: 100%;">{{item.commissionSPeopleName}}</p>
<p style="min-width: 180px;">发团:{{item.startDate}}</p>
</td> </td>
<td>
<p class="fz12 over_ellipsis" style="width: 120px;" :title="item.contactName">{{item.contactName}}</p>
<p class="fz12">{{item.contactMobile}}</p>
</td>
<td> <td>
<p class="fz12 over_ellipsis" style="width: 100%;">{{item.orderTypeName}}</p> <p class="fz12 over_ellipsis" style="width: 100%;">{{item.orderTypeName}}</p>
</td> </td>
...@@ -1218,10 +1232,6 @@ ...@@ -1218,10 +1232,6 @@
</p> </p>
<p style="max-width: 160px;display: block;" class="over_ellipsis" :title="item.ltName">{{item.ltName}}</p> <p style="max-width: 160px;display: block;" class="over_ellipsis" :title="item.ltName">{{item.ltName}}</p>
</td> </td>
<td class="fz12">
<p style="min-width: 180px;">发团:{{item.startDate}}</p>
<p style="min-width: 180px;">下单:{{item.createDate}}</p>
</td>
<td> <td>
<el-popover style='padding: 0;' width="470" trigger="click" > <el-popover style='padding: 0;' width="470" trigger="click" >
<div class="personNolayer"> <div class="personNolayer">
...@@ -1252,9 +1262,9 @@ ...@@ -1252,9 +1262,9 @@
</tr> </tr>
</table> </table>
</div> </div>
<span v-if='item.guestNumStatus==1' style="color:#1AA86B;" class="personNo" slot="reference" @click="getMembersDetail(item)">{{item.guestNum}}</span> <span v-if='item.guestNumStatus==1' style="color:#1AA86B;" class="personNo" slot="reference" @click="getMembersDetail(item)">{{item.guestNum}}/{{item.ySeatNum>0? item.ySeatNum+'Y ':''}}{{item.eSeatNum>0? item.eSeatNum+'E ':''}}{{item.fSeatNum>0? item.fSeatNum+'F ':''}}</span>
<span v-if='item.guestNumStatus==2' style="color:#E95252;" class="personNo" slot="reference" @click="getMembersDetail(item)">{{item.guestNum}}</span> <span v-if='item.guestNumStatus==2' style="color:#E95252;" class="personNo" slot="reference" @click="getMembersDetail(item)">{{item.guestNum}}/{{item.ySeatNum>0? item.ySeatNum+'Y ':''}}{{item.eSeatNum>0? item.eSeatNum+'E ':''}}{{item.fSeatNum>0? item.fSeatNum+'F ':''}}</span>
<span v-if='item.guestNumStatus==3' style="color:#666;" class="personNo" slot="reference" @click="getMembersDetail(item)">{{item.guestNum}}</span> <span v-if='item.guestNumStatus==3' style="color:#666;" class="personNo" slot="reference" @click="getMembersDetail(item)">{{item.guestNum}}/{{item.ySeatNum>0? item.ySeatNum+'Y ':''}}{{item.eSeatNum>0? item.eSeatNum+'E ':''}}{{item.fSeatNum>0? item.fSeatNum+'F ':''}}</span>
</el-popover> </el-popover>
</td> </td>
<td style="color:#FF9C00">{{item.tC_Price}}</td> <td style="color:#FF9C00">{{item.tC_Price}}</td>
...@@ -1289,11 +1299,8 @@ ...@@ -1289,11 +1299,8 @@
</td> </td>
<td>{{item.refund}}</td> <td>{{item.refund}}</td>
<td>{{item.platformTax}}</td> <td>{{item.platformTax}}</td>
<td><span :class="{color_red_order:item.dueInMoney!==item.preferPrice}">{{item.dueInMoney}}</span></td>
<td class="fz12" :style="item.orderState===3?'color: #e95252;':''">{{item.statsstr}}</td> <td class="fz12" :style="item.orderState===3?'color: #e95252;':''">{{item.statsstr}}</td>
<td>
<p class="fz12 over_ellipsis" style="width: 120px;" :title="item.contactName">{{item.contactName}}</p>
<p class="fz12">{{item.contactMobile}}</p>
</td>
<td width="120"> <td width="120">
<!--{{item.confirmFileList}}--> <!--{{item.confirmFileList}}-->
<!--<span>确认函</span>--> <!--<span>确认函</span>-->
......
...@@ -240,8 +240,8 @@ ...@@ -240,8 +240,8 @@
</tr> </tr>
<tr v-for="item in DataList.FinicePayList" :key="item.subCode"> <tr v-for="item in DataList.FinicePayList" :key="item.subCode">
<td> <td>
<span class="Team_income" @click="goUrl('FinancialDocumentsDetail',item.FrID)">{{item.FrID}}</span>
<el-checkbox v-model="item.checked"></el-checkbox> <el-checkbox v-model="item.checked"></el-checkbox>
<span class="Team_income" @click="goUrl('FinancialDocumentsDetail',item.FrID)">{{item.FrID}}</span>
</td> </td>
<td><span v-for="subItem in item.CostTypeList" :key="subItem.subCode">{{subItem}}</span></td> <td><span v-for="subItem in item.CostTypeList" :key="subItem.subCode">{{subItem}}</span></td>
<td> <td>
...@@ -343,6 +343,7 @@ export default { ...@@ -343,6 +343,7 @@ export default {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.$message.success(res.data.message); this.$message.success(res.data.message);
this.getList(); this.getList();
this.zhuanLoading = false
} else { } else {
this.$message.error(res.data.message); this.$message.error(res.data.message);
} }
......
...@@ -31,6 +31,10 @@ ...@@ -31,6 +31,10 @@
.TC_firTable td{height:20px!important;text-align: center!important;} .TC_firTable td{height:20px!important;text-align: center!important;}
.TC_midTable td{text-align: center!important;} .TC_midTable td{text-align: center!important;}
.TC_showUnion{float:right;color:#2aaef2;cursor: pointer;margin-bottom:10px;} .TC_showUnion{float:right;color:#2aaef2;cursor: pointer;margin-bottom:10px;}
.go_date{
font-weight: 700;
font-size: 14px;
}
</style> </style>
<template> <template>
<div> <div>
...@@ -361,7 +365,7 @@ ...@@ -361,7 +365,7 @@
</p> </p>
<p class="travelnowrap"> <p class="travelnowrap">
<span>出发时间</span> <span>出发时间</span>
{{item.StartDate}} <span class="go_date">{{item.StartDate}}</span>
</p> </p>
<p class="travelnowrap"> <p class="travelnowrap">
<span>出团通知书</span> <span>出团通知书</span>
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
<div class="hoverNote"></div> <div class="hoverNote"></div>
<!--<div :class="{menuList_son:item.ChildMenu.length>=1}" :style="{width:item.ChildMenu.length>=1 ? ((item.ChildMenu.length*160) + 'px') : '0',left: item.ChildMenu.length>1 ? '-50%' : '0'}" @click.stop>--> <!--<div :class="{menuList_son:item.ChildMenu.length>=1}" :style="{width:item.ChildMenu.length>=1 ? ((item.ChildMenu.length*160) + 'px') : '0',left: item.ChildMenu.length>1 ? '-50%' : '0'}" @click.stop>-->
<div :class="{menuList_son:item.ChildMenu.length>=1}" :style="{width:item.ChildMenu.length>=1 ? '1300px' : '0',left:'50px'}" @click.stop> <div :class="{menuList_son:item.ChildMenu.length>=1}" :style="{width:item.ChildMenu.length>=1 ? '1300px' : '0',left:'50px'}" @click.stop>
<div class="menuList_son_item"> <div class="menuList_son_item" @mousemove.stop @mouseout.stop>
<div v-for="(son, sIndex) in item.ChildMenu" style="width: 150px;margin-right: 20px"> <div v-for="(son, sIndex) in item.ChildMenu" style="width: 150px;margin-right: 20px">
<p class="menuList_son_one_tittle">{{son.MenuName}}</p> <p class="menuList_son_one_tittle">{{son.MenuName}}</p>
<div v-for="(grand, gIndex) in son.NewChildMenu" class="menuList_tittle_box"> <div v-for="(grand, gIndex) in son.NewChildMenu" class="menuList_tittle_box">
...@@ -3465,6 +3465,7 @@ export default { ...@@ -3465,6 +3465,7 @@ export default {
width: 100%; width: 100%;
margin: 0 auto; margin: 0 auto;
height: 100%; height: 100%;
z-index: 2019128;
} }
.nav-middle ul li { .nav-middle ul li {
.size(100px, 100%); .size(100px, 100%);
...@@ -3475,7 +3476,7 @@ export default { ...@@ -3475,7 +3476,7 @@ export default {
position: relative; position: relative;
padding: 12px 0; padding: 12px 0;
float: left; float: left;
z-index: 10; z-index: 2019128;
} }
.nav-middle ul li i { .nav-middle ul li i {
font-size: 16px; font-size: 16px;
...@@ -3486,20 +3487,24 @@ export default { ...@@ -3486,20 +3487,24 @@ export default {
margin: 32px 0 14px; margin: 32px 0 14px;
} }
.nav-middle ul li:hover .menuList_son{ .nav-middle ul li:hover .menuList_son{
display: block; // display: block;
width: 1000px; width: 1000px;
z-index: 99999; z-index: 999999;
opacity: 1; opacity: 1;
padding: 20px 0 20px 20px;
height: auto;
// transition: all .5s linear .5s;
} }
.nav-middle ul li .menuList_son{ .nav-middle ul li .menuList_son{
position: fixed; position: fixed;
z-index: 9000; z-index: 9000;
background-color: #363c4a; background-color: #363c4a;
top: 50px; top: 50px;
display: none; // display: none;
opacity: 0; opacity: 0;
transition: all linear .3s; padding: 0;
padding: 20px 0 20px 20px; overflow: hidden;
height: 0;
} }
.menuList_tittle_box{ .menuList_tittle_box{
line-height: 30px; line-height: 30px;
......
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