hookehuyr

fix 写法规范调整

1 +<!--
2 + * @Date: 2022-04-28 18:38:16
3 + * @LastEditors: hookehuyr hookehuyr@gmail.com
4 + * @LastEditTime: 2022-06-24 17:51:58
5 + * @FilePath: /tswj/src/views/me/unwatchList.vue
6 + * @Description: 文件描述
7 +-->
1 <template> 8 <template>
2 <div class="unwatch-list-page"> 9 <div class="unwatch-list-page">
3 <div class="book-video-list"> 10 <div class="book-video-list">
4 <van-list v-model:loading="loading" :finished="finished" :finished-text="finishedTextStatus ? '没有更多了' : ''" @load="onLoad"> 11 <van-list v-model:loading="loading" :finished="finished" :finished-text="finishedTextStatus ? '没有更多了' : ''" @load="onLoad">
5 - <template v-if="prod_list.length" v-for="item in prod_list" :key="item" style="height: 3rem;"> 12 + <template v-for="item in prod_list" :key="item">
6 - <video-card :item="item"></video-card> 13 + <video-card v-if="prod_list.length" :item="item" />
7 </template> 14 </template>
8 </van-list> 15 </van-list>
9 </div> 16 </div>
10 - <div style="height: 2rem;"></div> 17 + <div style="height: 2rem;" />
11 <van-empty v-if="emptyStatus" 18 <van-empty v-if="emptyStatus"
12 class="custom-image" 19 class="custom-image"
13 :image="no_image" 20 :image="no_image"
......