quanwei
2025-10-31 7a27a1d4d0038abe2115adb1753f897f56d66323
mobile/pages/plus/business/list.vue
@@ -2,7 +2,7 @@
   <view class="business-card-list">
      <!-- 筛选区域 -->
      <view class="filter-section">
         <view class="filter-item" :class="{ active: sortType === 'latest' }" @tap="changeSort('latest')">
         <view class="filter-item" :class="{ active: sortType === '' }" @tap="changeSort('latest')">
            <text>最新</text>
         </view>
         <view class="filter-item" :class="{ active: showIndustryFilter }" @tap="toggleIndustryFilter">
@@ -321,7 +321,13 @@
         // 切换排序
         changeSort(sortType) {
            if(this.sortType=='latest'){
               this.sortType = ''
            }else{
            this.sortType = sortType;
            }
            this.loadCardList(true);
         },