From ad054c369ed1ee164024f47d38b10824d41f9a9c Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期一, 22 九月 2025 17:42:26 +0800
Subject: [PATCH] 优化
---
frontWuhu/src/views/business/appHall.vue | 20 ++++++++++++++++----
1 files changed, 16 insertions(+), 4 deletions(-)
diff --git a/frontWuhu/src/views/business/appHall.vue b/frontWuhu/src/views/business/appHall.vue
index db4eaa4..3e83f47 100644
--- a/frontWuhu/src/views/business/appHall.vue
+++ b/frontWuhu/src/views/business/appHall.vue
@@ -14,7 +14,7 @@
</div>
</div>
<div class="box_cate">
- <div class="list">
+ <div class="list" v-if="list.length > 0">
<div class="list_item" v-for="(item, index) in list" :key="index">
<div class="list_item_image">
<img :src="item.fullLog" alt="" />
@@ -30,8 +30,12 @@
<div class="list_zw"></div>
<div class="list_zw"></div>
</div>
+ <div class="list" v-else>
+ <div class="list_wu">鏃犳暟鎹�</div>
+ </div>
<div class="pagination">
<el-pagination
+ v-if="list.length > 0"
@current-change="handleCurrentChange"
:current-page="page"
:page-sizes="[12, 24, 36, 48]"
@@ -82,7 +86,8 @@
capacity: 12,
page: this.page,
model: {
- applicationInfo: this.applicationInfo
+ applicationInfo: this.applicationInfo,
+ status: 0
}
}).then(res => {
res.records.forEach((item) => {
@@ -104,9 +109,9 @@
height: 264px;
padding: 36px 50px;
box-sizing: border-box;
- background-image: url("../../assets/images/bg_fuwushang.png");
+ background-image: url("../../assets/images/bg_yingyong.png");
background-repeat: no-repeat;
- background-size: 100% 100%;
+ background-size: cover;
display: flex;
flex-direction: column;
.box_head_title {
@@ -191,6 +196,13 @@
align-items: center;
flex-wrap: wrap;
justify-content: space-between;
+ .list_wu {
+ width: 100%;
+ text-align: center;
+ margin: 50px 0;
+ font-size: 14px;
+ color: #666666;
+ }
.list_zw {
width: 24%;
height: 0;
--
Gitblit v1.9.3