Commit e9a99811 authored by zhengke's avatar zhengke

增加团控列表报价单操作

parent 994e1172
...@@ -95,7 +95,6 @@ ...@@ -95,7 +95,6 @@
.TC_HotelPop table th { .TC_HotelPop table th {
text-align: center; text-align: center;
} }
</style> </style>
<template> <template>
<div class="TC_Content"> <div class="TC_Content">
...@@ -698,11 +697,11 @@ ...@@ -698,11 +697,11 @@
<div class="TC_SeatList" v-if="item.BindNum>0" style="color:red;">{{$t('Operation.Op_bindNum')}}: <div class="TC_SeatList" v-if="item.BindNum>0" style="color:red;">{{$t('Operation.Op_bindNum')}}:
{{item.BindNum}}</div> {{item.BindNum}}</div>
<div class="TC_SeatList" v-if="item.TicketNum>0 && item.TicketList"> <div class="TC_SeatList" v-if="item.TicketNum>0 && item.TicketList">
<el-popover width="440" trigger="click" popper-class="TC_customerInfo"> <el-popover width="550" trigger="click">
<table width="440" border="0" cellspacing="0" cellpadding="0"> <table width="100%" class="singeRowTable" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<th width="70" style="text-align:center;">{{$t('Operation.Op_bindNum')}}</th> <th width="90" style="text-align:center;">{{$t('Operation.Op_bindNum')}}</th>
<th width="70" style="text-align:center;">{{$t('op.TicketNum')}}</th> <th width="90" style="text-align:center;">{{$t('op.TicketNum')}}</th>
<th width="70" style="text-align:center;">{{$t('Operation.Op_price')}}</th> <th width="70" style="text-align:center;">{{$t('Operation.Op_price')}}</th>
<th width="70" style="text-align:center;">同业价</th> <th width="70" style="text-align:center;">同业价</th>
<th width="70" style="text-align:center;">直客价</th> <th width="70" style="text-align:center;">直客价</th>
...@@ -764,10 +763,10 @@ ...@@ -764,10 +763,10 @@
</template> </template>
</div> </div>
<div class="TC_SeatList"> <div class="TC_SeatList">
<el-popover width="500" trigger="click" popper-class="TC_customerInfo"> <el-popover width="500" trigger="click">
<table> <table>
<tr> <tr>
<td colspan="4" style="text-align:center;"> <td colspan="4" style="text-align:center;height:40px;">
报价单 <template v-if="item.Config_OfferId>0"> 报价单 <template v-if="item.Config_OfferId>0">
<a style="cursor:pointer;color:red;text-decoration: underline;" <a style="cursor:pointer;color:red;text-decoration: underline;"
@click="gotoOffer(item)">查看报价单</a> @click="gotoOffer(item)">查看报价单</a>
...@@ -790,6 +789,8 @@ ...@@ -790,6 +789,8 @@
<input type="button" class="normalBtn" value="查询" @click="getOfferQuery(item.CreateBy)"> <input type="button" class="normalBtn" value="查询" @click="getOfferQuery(item.CreateBy)">
</td> </td>
</tr> </tr>
</table>
<table class="singeRowTable" style="margin-top:20px;">
<tr v-for="oItem in offerDataList "> <tr v-for="oItem in offerDataList ">
<td> <td>
<input type="checkbox" v-model="oItem.IsCheck" @click="clickOfferItem(oItem)" /> <input type="checkbox" v-model="oItem.IsCheck" @click="clickOfferItem(oItem)" />
...@@ -805,14 +806,14 @@ ...@@ -805,14 +806,14 @@
{{oItem.CreateByName}}/{{oItem.CreateTimeStr}} {{oItem.CreateByName}}/{{oItem.CreateTimeStr}}
</td> </td>
</tr> </tr>
<tr> <tr v-if="offerDataList.length>0">
<td colspan="4" style="text-align:center;"> <td colspan="4" style="text-align:center;">
<input type="button" class="normalBtn" value="保存" @click="saveOffer(item)" /> <input type="button" class="normalBtn" value="保存" @click="saveOffer(item)" />
</td> </td>
</tr> </tr>
</table> </table>
<a slot="reference" title="报价单" <a slot="reference" title="报价单"
style="cursor:pointer;color:blue;text-decoration: underline;display:none;">报价单</a> style="cursor:pointer;color:rgb(71, 191, 140);text-decoration: underline;">报价单</a>
</el-popover> </el-popover>
</div> </div>
</div> </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