|
@@ -1,43 +1,47 @@
|
|
|
<template>
|
|
|
- <ListCard
|
|
|
- class="subscribe-list"
|
|
|
- :list="subscribeList"
|
|
|
- title="我的订阅信息"
|
|
|
- @clickListItem="clickListItem"
|
|
|
- @linkMore="linkMore"
|
|
|
- :loading="loading"
|
|
|
- :loaded="loaded"
|
|
|
- >
|
|
|
- <template #warn-text>
|
|
|
- <div v-show="subscribeList.length !== 0 && isRecommend" class="warn-text">
|
|
|
- <span>标准匹配不精准?</span>
|
|
|
- <span @click="addSet">点击设置精准匹配></span>
|
|
|
- </div>
|
|
|
- <FollowOfficialAccountDialog
|
|
|
- :visible.sync="toFollowOfficialAccount"
|
|
|
- ></FollowOfficialAccountDialog>
|
|
|
- </template>
|
|
|
- <div slot="empty-content" class="empty-content">
|
|
|
- <div v-if="emptyButtonShow">
|
|
|
- <p>暂无订阅信息</p>
|
|
|
- <button
|
|
|
- class="empty-button mt12"
|
|
|
- @click="addSet"
|
|
|
- v-if="emptyButtonShow"
|
|
|
+ <div class="subscribe-list-container">
|
|
|
+ <ListCard
|
|
|
+ class="subscribe-list"
|
|
|
+ :list="subscribeList"
|
|
|
+ title="我的订阅信息"
|
|
|
+ @clickListItem="clickListItem"
|
|
|
+ @linkMore="linkMore"
|
|
|
+ :loading="loading"
|
|
|
+ :loaded="loaded"
|
|
|
+ >
|
|
|
+ <template #warn-text>
|
|
|
+ <div
|
|
|
+ v-show="subscribeList.length !== 0 && isRecommend"
|
|
|
+ class="warn-text"
|
|
|
>
|
|
|
- 前往订阅设置
|
|
|
- </button>
|
|
|
- </div>
|
|
|
- <div v-else>
|
|
|
- <p v-if="hasKey">您尚未设置关键词</p>
|
|
|
- <p v-else>对不起,没有匹配到数据,请修改订阅设置</p>
|
|
|
- <button class="empty-button mt12" @click="addSet">前往订阅设置</button>
|
|
|
- <FollowOfficialAccountDialog
|
|
|
- :visible.sync="toFollowOfficialAccount"
|
|
|
- ></FollowOfficialAccountDialog>
|
|
|
+ <span>标准匹配不精准?</span>
|
|
|
+ <span @click="addSet">点击设置精准匹配></span>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <div slot="empty-content" class="empty-content">
|
|
|
+ <div v-if="emptyButtonShow">
|
|
|
+ <p>暂无订阅信息</p>
|
|
|
+ <button
|
|
|
+ class="empty-button mt12"
|
|
|
+ @click="addSet"
|
|
|
+ v-if="emptyButtonShow"
|
|
|
+ >
|
|
|
+ 前往订阅设置
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <div v-else>
|
|
|
+ <p v-if="hasKey">您尚未设置关键词</p>
|
|
|
+ <p v-else>对不起,没有匹配到数据,请修改订阅设置</p>
|
|
|
+ <button class="empty-button mt12" @click="addSet">
|
|
|
+ 前往订阅设置
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- </ListCard>
|
|
|
+ </ListCard>
|
|
|
+ <FollowOfficialAccountDialog
|
|
|
+ :visible.sync="toFollowOfficialAccount"
|
|
|
+ ></FollowOfficialAccountDialog>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|