|
|
@@ -3,9 +3,13 @@
|
|
|
<template #header>
|
|
|
<app-navbar title="产品介绍" />
|
|
|
</template>
|
|
|
- <Tabs v-model:active="active" @change="onClickTab">
|
|
|
- <Tab title="已关注" />
|
|
|
- <Tab title="未关注" />
|
|
|
+ <Tabs class="product__tabs" v-model:active="active" @change="onClickTab">
|
|
|
+ <Tab title="已关注" :name="0">
|
|
|
+ <Empty v-if="!dataList.length" />
|
|
|
+ </Tab>
|
|
|
+ <Tab title="未关注" :name="1">
|
|
|
+ <Empty v-if="!dataList.length" />
|
|
|
+ </Tab>
|
|
|
</Tabs>
|
|
|
<app-pull-refresh ref="pullRefreshRef" class="product__container" v-model:error="error"
|
|
|
v-model:pageIndex="pageIndex" :page-count="pageCount" @refresh="onRefresh">
|