|
@@ -25,8 +25,11 @@
|
|
:src="globalImgUrls.chartEmpty"
|
|
:src="globalImgUrls.chartEmpty"
|
|
mode="widthFix"
|
|
mode="widthFix"
|
|
/>
|
|
/>
|
|
- <view v-if="myClassifyList.length==0&&pubClassifyList.length==0">暂时没有图分类,请耐心等待</view>
|
|
|
|
- <view v-else>暂时找不到对应图,试试别的{{searchVal?'搜索词':'分类'}}吧~</view>
|
|
|
|
|
|
+ <view v-if="searchVal">暂时找不到对应图,试试别的搜索词吧~</view>
|
|
|
|
+ <view v-else>
|
|
|
|
+ <text v-if="myClassifyList.length==0&&pubClassifyList.length==0">暂时没有图分类,请耐心等待</text>
|
|
|
|
+ <text v-else>暂时找不到对应图,试试别的分类吧~</text>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
<view class="chart-list-wrap" v-else>
|
|
<view class="chart-list-wrap" v-else>
|
|
<drag
|
|
<drag
|
|
@@ -62,7 +65,10 @@
|
|
<text class="left" @click="goAllTypes">展开</text>
|
|
<text class="left" @click="goAllTypes">展开</text>
|
|
<text class="center">全部筛选</text>
|
|
<text class="center">全部筛选</text>
|
|
</view>
|
|
</view>
|
|
- <view class="filter-list">
|
|
|
|
|
|
+ <view class="filter-list" style="padding-top:200rpx;text-align:center" v-if="myClassifyList.length==0&&pubClassifyList.length==0">
|
|
|
|
+ 暂时没有图分类,请耐心等待
|
|
|
|
+ </view>
|
|
|
|
+ <view class="filter-list" v-else>
|
|
<view class="title" v-if="userInfo.is_inner==1">公共图库</view>
|
|
<view class="title" v-if="userInfo.is_inner==1">公共图库</view>
|
|
<view
|
|
<view
|
|
:class="['filter-item',selectClassifyId==item.myChartClassifyId?'active':'']"
|
|
:class="['filter-item',selectClassifyId==item.myChartClassifyId?'active':'']"
|
|
@@ -70,7 +76,6 @@
|
|
:key="item.myChartClassifyName"
|
|
:key="item.myChartClassifyName"
|
|
@click="handleSelectClassify(item,true)"
|
|
@click="handleSelectClassify(item,true)"
|
|
>{{item.myChartClassifyName}}</view>
|
|
>{{item.myChartClassifyName}}</view>
|
|
-
|
|
|
|
<block v-if="myClassifyList.length>0">
|
|
<block v-if="myClassifyList.length>0">
|
|
<view class="title" style="border:none">我的图库</view>
|
|
<view class="title" style="border:none">我的图库</view>
|
|
<dragSorts
|
|
<dragSorts
|