zs 6 months ago
parent
commit
54b798c061

+ 0 - 2
src/views/detail/matchDetail.vue

@@ -140,8 +140,6 @@
 </template>
 
 <script setup>
-import match_3 from '/images/match_3.jpg'
-
 import moment from 'moment'
 import { get, cloneDeep } from 'lodash-es'
 const $checkRes = inject('$checkRes')

+ 2 - 1
src/views/search/parts/all/achievement.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="main" v-loading="loading">
-    <div class="w_1300">
+    <div class="w_1300" v-if="total > 0">
       <div class="one">
         <div class="list" v-for="(item, index) in list" :key="index" @click="toView(item)">
           <div class="list_1">
@@ -29,6 +29,7 @@
         <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
       </div>
     </div>
+    <el-empty v-else description="暂无数据" />
   </div>
 </template>
 

+ 2 - 1
src/views/search/parts/all/company.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="main" v-loading="loading">
-    <div class="w_1300">
+    <div class="w_1300" v-if="total > 0">
       <div class="one">
         <div class="list" :class="['list' + index]" v-for="(item, index) in list" :key="index" @click="toView(item)">
           <div class="name">{{ item.name || '暂无' }}</div>
@@ -24,6 +24,7 @@
         <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
       </div>
     </div>
+    <el-empty v-else description="暂无数据" />
   </div>
 </template>
 

+ 6 - 5
src/views/search/parts/all/demand.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="main" v-loading="loading">
-    <div class="w_1300">
+    <div class="w_1300" v-if="total > 0">
       <el-col :span="24" class="one">
         <div class="list" v-for="(item, index) in list" :key="index">
           <div class="title">
@@ -27,10 +27,11 @@
           </div>
         </div>
       </el-col>
+      <el-col :span="24" class="two">
+        <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
+      </el-col>
     </div>
-    <el-col :span="24" class="two">
-      <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
-    </el-col>
+    <el-empty v-else description="暂无数据" />
   </div>
 </template>
 
@@ -58,7 +59,7 @@ const router = useRouter()
 const list = ref([])
 let skip = 0
 let limit = inject('limit')
-const total = ref(6)
+const total = ref(0)
 // 字典表
 const cityList = ref([])
 const plateList = ref([])

+ 2 - 1
src/views/search/parts/all/project.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="main" v-loading="loading">
-    <div class="w_1300">
+    <div class="w_1300" v-if="total > 0">
       <div class="one">
         <div class="list" :class="['list' + index]" v-for="(item, index) in list" :key="index" @click="toView(item)">
           <div class="type textOne">{{ item.industry || '暂无' }}</div>
@@ -22,6 +22,7 @@
         <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
       </div>
     </div>
+    <el-empty v-else description="暂无数据" />
   </div>
 </template>
 

+ 6 - 5
src/views/search/parts/all/supply.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="main" v-loading="loading">
-    <div class="w_1300">
+    <div class="w_1300" v-if="total > 0">
       <el-col :span="24" class="one">
         <div class="list" v-for="(item, index) in list" :key="index">
           <div class="title">
@@ -23,10 +23,11 @@
           </div>
         </div>
       </el-col>
+      <el-col :span="24" class="two">
+        <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
+      </el-col>
     </div>
-    <el-col :span="24" class="two">
-      <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
-    </el-col>
+    <el-empty v-else description="暂无数据" />
   </div>
 </template>
 
@@ -54,7 +55,7 @@ const router = useRouter()
 const list = ref([])
 let skip = 0
 let limit = inject('limit')
-const total = ref(6)
+const total = ref(0)
 // 字典表
 const cityList = ref([])
 const plateList = ref([])