Commit 98898ad8 authored by 黄奎's avatar 黄奎
parents 7360e663 da8b6c27
<style> <style>
@import "../../../assets/css/newTravelManager.css"; @import "../../../assets/css/newTravelManager.css";
.BilldownLoadCommon input[type="checkbox"] + label::before {
content: "\A0";
display: inline-block;
width: 15px;
height: 15px;
margin-right: 5px;
border-radius: 4px;
background-color: white;
text-indent: .15em;
line-height: 15px;
color: white;
border: 1px solid #e95252;
}
.BilldownLoadCommon input[type="checkbox"]:checked + label::before {
content: "\2713";
background-color: #e95252;
}
.BilldownLoadCommon input[type="checkbox"]{
position: absolute;
clip: rect(0, 0, 0, 0);
}
.BilldownLoadCommon input[type="checkbox"]:focus + label::before {
box-shadow: none;
}
.BilldownLoadCommon input[type="checkbox"]:disabled + label::before {
background-color: gray;
box-shadow: none;
color: #555;
}
</style> </style>
<template> <template>
...@@ -191,6 +220,49 @@ ...@@ -191,6 +220,49 @@
<el-dialog custom-class='ComTeamPlan_info_box' :title="tripTitle" :visible.sync="outerVisible" center> <el-dialog custom-class='ComTeamPlan_info_box' :title="tripTitle" :visible.sync="outerVisible" center>
<commonTeamInfo ref="comDialog"></commonTeamInfo> <commonTeamInfo ref="comDialog"></commonTeamInfo>
</el-dialog> </el-dialog>
<!-- 下载弹窗 -->
<el-dialog custom-class='w450' title="报价单下载" :visible.sync="downloadBill" center>
<div class="BilldownLoadCommon" style="text-align:center;">
<table style="width:380px" border="0" cellspacing="0" cellpadding="0">
<tr>
<th colspan="2" style="height:40px;">
{{$t('salesModule.ChoiceNeed')}}
</th>
</tr>
<tbody>
<tr height="36">
<td width="50%"><input id="vshowA" type="checkbox" /><label for="vshowA">{{$t('fnc.jcxinxi')}}</label></td>
<td width="50%"><input id="vshowB" type="checkbox" /><label for="vshowB">{{$t('salesModule.FlighInfo')}}</label></td>
</tr>
<tr height="36">
<td><input id="vshowC" type="checkbox" /><label for="vshowC">{{$t('salesModule.TripSpecial')}}</label></td>
<td><input id="vshowD" type="checkbox" /><label for="vshowD">{{$t('salesModule.TripAP')}}</label></td>
</tr>
<tr height="36">
<td><input id="vshowE" type="checkbox" /><label for="vshowE">{{$t('fnc.fyshuoming')}}</label></td>
<td><input id="vshowF" type="checkbox" /><label for="vshowF">{{$t('salesModule.ShoppDetail')}}</label></td>
</tr>
<tr height="36">
<td><input id="vshowG" type="checkbox" /><label for="vshowG">{{$t('salesModule.OrderKnow')}}</label></td>
<td><input id="vshowH" type="checkbox" /><label for="vshowH">{{$t('salesModule.VisaInfo')}}</label></td>
</tr>
<tr height="36">
<td><input id="vshowI" type="checkbox" /><label for="vshowI">{{$t('salesModule.THBZ')}}</label></td>
<td><input id="vshowJ" type="checkbox" /><label for="vshowJ">{{$t('salesModule.YXBS')}}</label></td>
</tr>
<tr height="36">
<td><input id="vshowK" type="checkbox" /><label for="vshowK">{{$t('salesModule.JDTP')}}</label></td>
</tr>
</tbody>
<tr height="66">
<td colspan="2" align="center">
<input type="button" class="normalBtn" :value="$t('pub.sureBtn')" />
</td>
</tr>
</table>
</div>
</el-dialog>
</div> </div>
</template> </template>
<script> <script>
...@@ -253,7 +325,8 @@ ...@@ -253,7 +325,8 @@
SalesPriceList: [], SalesPriceList: [],
CostList: [], CostList: [],
outerVisible: false, outerVisible: false,
tripTitle: "" tripTitle: "",
downloadBill:false
}; };
}, },
components: { components: {
...@@ -479,6 +552,7 @@ ...@@ -479,6 +552,7 @@
}, },
//报价单下载 //报价单下载
DownLoadFile(item) { DownLoadFile(item) {
// this.downloadBill=true;
this.loading = true; this.loading = true;
var newMsg = { var newMsg = {
ID: item.ID ID: item.ID
......
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