Commit 40d43ed3 authored by wuchun's avatar wuchun

提交代码

parent 20c1c478
......@@ -180,7 +180,7 @@
<template v-for="(outItem,index) in RollCallList">
<!-- v-if="outItem.CostRelationList.length>0||outItem.InsureRelationList.length>0||outItem.ServiceRelationList.length>0" -->
<tr>
<td style="white-space:nowrap;">{{outItem.guestName}}
<td style="white-space:nowrap;"><p v-if="outItem.Status==1" style="color: red;text-decoration:line-through;">{{outItem.guestName}}</p><p v-else>{{outItem.guestName}}</p>
</td>
<td>{{outItem.SexStr}}
</td>
......@@ -538,9 +538,9 @@
<li v-for="item in checknameList" :key="item.Id">
<input type="checkbox" v-model="checkList" :value="item.Id" @change="checkThis" :id="item.Id">
<label :for="item.Id">
<span v-if="item.VisaStatus===1" class="tickets_red" >{{item.guestName}}</span>
<span v-if="item.VisaStatus===2" class="tickets_blue" >{{item.guestName}}</span>
<span v-if="item.VisaStatus===3" class="tickets_black" >{{item.guestName}}</span>
<span v-if="item.VisaStatus===1" class="tickets_red" ><span v-if="item.Status==0" >{{item.guestName}}</span><span v-else style="text-decoration:line-through;">{{item.guestName}}</span></span>
<span v-if="item.VisaStatus===2" class="tickets_blue" ><span v-if="item.Status==0" >{{item.guestName}}</span><span v-else style="text-decoration:line-through;">{{item.guestName}}</span></span>
<span v-if="item.VisaStatus===3" class="tickets_black" ><span v-if="item.Status==0" >{{item.guestName}}</span><span v-else style="text-decoration:line-through;">{{item.guestName}}</span></span>
</label>
</li>
......
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