Commit a7f6b8c1 authored by zhengke's avatar zhengke

修改

parent c5c537b1
...@@ -597,7 +597,9 @@ ...@@ -597,7 +597,9 @@
</template> </template>
<template v-else> <template v-else>
<template v-if="HandoverObj&&HandoverObj.CreateByName"> <template v-if="HandoverObj&&HandoverObj.CreateByName">
{{HandoverObj.CreateByName}}创建于{{HandoverObj.CreateTimeStr}} {{HandoverObj.CreateByName}}创建于
<template v-if="HandoverObj.IsOperate==2">{{HandoverObj.CreateTimeStr2}}</template>
<template v-else>{{HandoverObj.CreateTimeStr}}</template>
</template> </template>
</template> </template>
</div> </div>
...@@ -748,7 +750,13 @@ ...@@ -748,7 +750,13 @@
if (this.EmergenciesList.length > 0) { if (this.EmergenciesList.length > 0) {
obj.IsBurst=1 obj.IsBurst=1
} }
if (this.HandoverList.length > 0) { let HandArr = [];
this.HandoverList.forEach(x=>{
if(x.IsOperate==1){
HandArr.push(x);
}
})
if (HandArr.length > 0) {
obj.IsHandover=1 obj.IsHandover=1
} }
return obj; return obj;
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
<template v-slot:top="props"> <template v-slot:top="props">
<div class="col-2 q-table__title">试听班级管理</div> <div class="col-2 q-table__title">试听班级管理</div>
<q-space /> <q-space />
<div class="page-option"> <div class="page-option" style="display:none;">
<q-btn color="accent" size="sm" class="q-mr-md" icon="add" label="添加试听" @click="editVisitor(null)" /> <q-btn color="accent" size="sm" class="q-mr-md" icon="add" label="添加试听" @click="editVisitor(null)" />
</div> </div>
</template> </template>
......
...@@ -292,6 +292,7 @@ ...@@ -292,6 +292,7 @@
</div> </div>
</q-card-section> </q-card-section>
<q-card-actions align="right"> <q-card-actions align="right">
<q-btn flat label="关闭" color="primary" @click="isShowTuFA=false" />
<q-btn flat label="确定" color="primary" @click="submitHand" /> <q-btn flat label="确定" color="primary" @click="submitHand" />
</q-card-actions> </q-card-actions>
</q-card> </q-card>
......
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