|
@@ -23,7 +23,7 @@
|
|
|
<van-pull-refresh v-model="refreshing" @refresh="onRefresh">
|
|
<van-pull-refresh v-model="refreshing" @refresh="onRefresh">
|
|
|
<van-list v-model="loading" :finished="finished" @load="loadData">
|
|
<van-list v-model="loading" :finished="finished" @load="loadData">
|
|
|
<van-checkbox-group v-model="checkedIds">
|
|
<van-checkbox-group v-model="checkedIds">
|
|
|
- <van-cell v-for="(item,index) in listData" :key="item.id+index" :title="item.shi_wu_ming_cheng" @click="onClick(item,index)">
|
|
|
|
|
|
|
+ <van-cell v-for="(item,index) in listData" :key="item.id+index" :title="item.shi_wu_ming_cheng" class="vantCell" @click="onClick(item,index)">
|
|
|
<template slot="icon">
|
|
<template slot="icon">
|
|
|
<van-checkbox v-if="checkMode" ref="checkboxes" :name="item.id_" class="ibps-mr-10" />
|
|
<van-checkbox v-if="checkMode" ref="checkboxes" :name="item.id_" class="ibps-mr-10" />
|
|
|
<ibps-avatar
|
|
<ibps-avatar
|
|
@@ -554,6 +554,10 @@ export default {
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|
|
|
<style scoped lang="scss">
|
|
<style scoped lang="scss">
|
|
|
|
|
+.vantCell{
|
|
|
|
|
+ max-height: 200px;
|
|
|
|
|
+ overflow-y: auto;
|
|
|
|
|
+}
|
|
|
.examRow {
|
|
.examRow {
|
|
|
padding: 2% 0;
|
|
padding: 2% 0;
|
|
|
|
|
|