官网
Showing
2 changed files
with
20 additions
and
2 deletions
| ... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
| 11 | <div class="rItem" @click="type='0'">{{ language == 0 ? '个人查询' : 'Personal Query' }}</div> | 11 | <div class="rItem" @click="type='0'">{{ language == 0 ? '个人查询' : 'Personal Query' }}</div> |
| 12 | <div class="rItem" @click="type='1'">{{ language == 0 ? '团队查询' : 'Team Query' }}</div> | 12 | <div class="rItem" @click="type='1'">{{ language == 0 ? '团队查询' : 'Team Query' }}</div> |
| 13 | </div> | 13 | </div> |
| 14 | 14 | <div class="searchBox"> | |
| 15 | <div v-if="type=='0'"> | 15 | <div v-if="type=='0'"> |
| 16 | <div class="flex mt30"> | 16 | <div class="flex mt30"> |
| 17 | <el-input | 17 | <el-input |
| ... | @@ -80,7 +80,10 @@ | ... | @@ -80,7 +80,10 @@ |
| 80 | </div> | 80 | </div> |
| 81 | <div v-if="teamlist.length>0" class="temell mt20"> | 81 | <div v-if="teamlist.length>0" class="temell mt20"> |
| 82 | <el-collapse v-model="activeNames" accordion> | 82 | <el-collapse v-model="activeNames" accordion> |
| 83 | <el-collapse-item v-for="(team,index) in teamlist" :key="index" :name="index" :title="team[0][0].groupName"> | 83 | <el-collapse-item |
| 84 | v-for="(team,index) in teamlist" :key="index" :name="index" | ||
| 85 | :title="team[0][0].groupName" | ||
| 86 | > | ||
| 84 | <div v-for="(p,jndex) in team" :key="jndex" class="nowteamItem"> | 87 | <div v-for="(p,jndex) in team" :key="jndex" class="nowteamItem"> |
| 85 | <div class="fontSize14 text-bold">{{ p[0].zuInfo }}</div> | 88 | <div class="fontSize14 text-bold">{{ p[0].zuInfo }}</div> |
| 86 | <div v-for="f in p" :key="f.id"> | 89 | <div v-for="f in p" :key="f.id"> |
| ... | @@ -94,6 +97,8 @@ | ... | @@ -94,6 +97,8 @@ |
| 94 | </div> | 97 | </div> |
| 95 | </div> | 98 | </div> |
| 96 | </div> | 99 | </div> |
| 100 | |||
| 101 | </div> | ||
| 97 | </el-dialog> | 102 | </el-dialog> |
| 98 | </template> | 103 | </template> |
| 99 | 104 | ||
| ... | @@ -277,4 +282,9 @@ function showDetail(name) { | ... | @@ -277,4 +282,9 @@ function showDetail(name) { |
| 277 | cursor: pointer; | 282 | cursor: pointer; |
| 278 | } | 283 | } |
| 279 | } | 284 | } |
| 285 | |||
| 286 | .searchBox { | ||
| 287 | height: 50vh; | ||
| 288 | overflow: hidden; | ||
| 289 | } | ||
| 280 | </style> | 290 | </style> | ... | ... |
| ... | @@ -49,6 +49,7 @@ | ... | @@ -49,6 +49,7 @@ |
| 49 | <el-empty /> | 49 | <el-empty /> |
| 50 | </div> | 50 | </div> |
| 51 | </div> | 51 | </div> |
| 52 | <div class="searchBox"> | ||
| 52 | <div v-if="type=='1'"> | 53 | <div v-if="type=='1'"> |
| 53 | <div class="flex mt20"> | 54 | <div class="flex mt20"> |
| 54 | <el-input | 55 | <el-input |
| ... | @@ -132,6 +133,8 @@ | ... | @@ -132,6 +133,8 @@ |
| 132 | </el-timeline> | 133 | </el-timeline> |
| 133 | </div> | 134 | </div> |
| 134 | </div> | 135 | </div> |
| 136 | </div> | ||
| 137 | |||
| 135 | 138 | ||
| 136 | </div> | 139 | </div> |
| 137 | </el-dialog> | 140 | </el-dialog> |
| ... | @@ -353,4 +356,9 @@ function showDetail(name) { | ... | @@ -353,4 +356,9 @@ function showDetail(name) { |
| 353 | cursor: pointer; | 356 | cursor: pointer; |
| 354 | } | 357 | } |
| 355 | } | 358 | } |
| 359 | |||
| 360 | .searchBox { | ||
| 361 | height: 50vh; | ||
| 362 | overflow: hidden; | ||
| 363 | } | ||
| 356 | </style> | 364 | </style> | ... | ... |
-
Please register or sign in to post a comment