Commit 7bcd26ac authored by youjie's avatar youjie

no message

parent 0b3c33e3
...@@ -536,7 +536,7 @@ ...@@ -536,7 +536,7 @@
</div> </div>
<ul class="checklist_ul"> <ul class="checklist_ul">
<!-- checknameList --> <!-- checknameList -->
<li v-for="item in RollCallList" :key="item.Id"> <li v-for="item in RollCallListAll" :key="item.Id">
<input type="checkbox" v-model="checkList" :value="item.Id" @change="checkThis" :id="item.Id"> <input type="checkbox" v-model="checkList" :value="item.Id" @change="checkThis" :id="item.Id">
<label :for="item.Id"> <label :for="item.Id">
<span v-if="item.VisaStatus===1" class="tickets_red" >{{item.guestName}}</span> <span v-if="item.VisaStatus===1" class="tickets_red" >{{item.guestName}}</span>
...@@ -813,7 +813,7 @@ export default { ...@@ -813,7 +813,7 @@ export default {
let userInfo =[]; let userInfo =[];
this.checkList.forEach(check=>{ this.checkList.forEach(check=>{
this.checknameList.forEach(item=>{ this.RollCallListAll.forEach(item=>{
if(item.Id==check){ if(item.Id==check){
userInfo.push(item); userInfo.push(item);
} }
......
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