|  |  | 
 |  |  |     <van-popup | 
 |  |  |         v-model:show="props.show" | 
 |  |  |         position="bottom" | 
 |  |  |         :style="{ height: '100%' }"> | 
 |  |  |         :style="{ height: props.height }"> | 
 |  |  |         <div class="title"> | 
 |  |  |             <div class="close" @click="close"><van-icon name="arrow-down" size="30" color="#ffffff" /></div> | 
 |  |  |         </div> | 
 |  |  | 
 |  |  |                     v-model:loading="loading" | 
 |  |  |                     :finished="finished" | 
 |  |  |                     finished-text="没有更多了~" | 
 |  |  |                     @load="onLoad" | 
 |  |  |                 > | 
 |  |  |                     @load="onLoad"> | 
 |  |  |                     <div class="content_list"> | 
 |  |  |                         <div class="content_list_item" v-for="(item, i) in list" :key="i" @click="jump(item)"> | 
 |  |  |                             <div class="content_list_item_name">{{item.name}}</div> | 
 |  |  | 
 |  |  |         systemDicDataId: { | 
 |  |  |             type: String, | 
 |  |  |             default: '' | 
 |  |  |         }, | 
 |  |  |         height: { | 
 |  |  |             type: String, | 
 |  |  |             default: '100%' | 
 |  |  |         } | 
 |  |  |     }) | 
 |  |  |  |