9ab12824 by zhangmeng

背号日程查询

1 parent 3521b5f5
......@@ -25,7 +25,7 @@
</el-button>
</div>
<div v-if="list.length>0">
<div v-if="list.length>0" class="rollY">
<div v-for="(form, index) in list" :key="index" class="nowteamItem">
<div class="info">
<div class="nowName text-center">
......@@ -69,7 +69,7 @@
<div v-if="showGroupList" class="text-danger text-center">
{{ language == 0 ? '找到多个团体' : 'Found multiple teams' }}
</div>
<div v-if="showGroupList" class="groupList">
<div v-if="showGroupList" class="groupList rollY">
<ul>
<li v-for="(item, index) in groupList" :key="index" @click="showDetail(item)">{{ item }}
<el-icon class="fr">
......@@ -83,6 +83,7 @@
<el-collapse-item
v-for="(team,index) in teamlist" :key="index" :name="index"
:title="team[0][0].groupName"
class="rollY"
>
<div v-for="(p,jndex) in team" :key="jndex" class="nowteamItem">
<div class="fontSize14 text-bold">{{ p[0].zuInfo }}</div>
......@@ -289,8 +290,13 @@ function showDetail(name) {
}
.searchBox {
height: 50vh;
//height: 50vh;
//overflow: hidden;
overflow-y: hidden;
}
.rollY {
height: 45vh;
overflow-y: auto;
}
</style>
......
......@@ -26,7 +26,7 @@
</el-button>
</div>
<div v-if="list.length>0" class="mt30">
<div v-if="list.length>0" class="mt30 rollY">
<el-timeline>
<el-timeline-item
v-for="(form, index) in list"
......@@ -66,7 +66,7 @@
<div v-if="showGroupList" class="text-danger text-center">
{{ language == 0 ? '找到多个团体' : 'Found multiple teams' }}
</div>
<div v-if="showGroupList" class="groupList">
<div v-if="showGroupList" class="groupList rollY">
<ul>
<li v-for="(item, index) in groupList" :key="index" @click="showDetail(item)">{{ item }}
<el-icon class="fr">
......@@ -75,7 +75,7 @@
</li>
</ul>
</div>
<div v-if="teamlist.length>0" class="temell mt20">
<div v-if="teamlist.length>0" class="temell mt20 rollY">
<el-collapse accordion>
<el-collapse-item v-for="(team,index) in teamlist" :key="index" :name="index" :title="team[0].title">
<el-timeline>
......@@ -109,7 +109,7 @@
}}
</el-button>
</div>
<div v-if="list.length>0" class="temell mt20">
<div v-if="list.length>0" class="temell mt20 rollY">
<el-timeline>
<el-timeline-item v-for="(team,j) in list" :key="j" placement="top">
<div v-for="(form, index) in team" v-show="index==0" :key="index">
......@@ -362,6 +362,11 @@ function showDetail(name) {
.searchBox {
height: 50vh;
//overflow-y: auto;
}
.rollY {
height: 45vh;
overflow-y: auto;
}
</style>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!