This commit is contained in:
Leo_Ding 2025-08-12 16:50:54 +08:00
commit a5178d64f6
7 changed files with 431 additions and 327 deletions

View File

@ -1,5 +1,6 @@
<template>
<view class="copyright-section" :style="{bottom: footerHeight}">
<view class="copyright-section">
<view class="copyright-content">
<text style="color: #ddd;padding-right: 20rpx;"></text>
<image src="/static/imgs/index/logo.png" class="logo" mode="aspectFit"></image>
@ -14,26 +15,17 @@
<script>
export default {
name: 'gx-copyright',
props: {
footerHeight: {
type: String,
default: '130rpx' // footer
}
}
}
</script>
<style lang="scss" scoped>
.copyright-section {
position: fixed;
left: 0;
right: 0;
bottom: 0;
position: relative; /* 改为相对定位 */
width: 100%;
padding: 20rpx 0;
background-color:transparent;
background-color: transparent;
opacity: 0.6;
// z-index: 90; /* footer */
margin-top: 40rpx; /* 增加一些顶部间距 */
.copyright-content {
display: flex;

View File

@ -110,14 +110,11 @@
</view>
</view>
</view>
<view style="margin: 120rpx 0;">
<Copyright/>
</view>
</view>
<!-- 底部导航 -->
<Copyright/>
<Footer></Footer>
</view>
</template>
@ -277,9 +274,13 @@ export default {
<style lang="scss" scoped>
.container {
background: #f8faff;
min-height: 100vh;
padding-bottom: 120rpx;
// min-height: 100vh;
box-sizing: border-box;
background-color: #f5f7fa;
padding: 20rpx;
// min-height: 100vh;
box-sizing: border-box;
padding-bottom: calc(190rpx);
.content-wrapper {
width: 92%;

View File

@ -668,7 +668,7 @@
padding: 20rpx;
min-height: 100vh;
box-sizing: border-box;
padding-bottom: 120rpx;
padding-bottom: 190rpx;
}
.user-info-card {
background: #fff;

View File

@ -1,15 +1,13 @@
<template>
<view class="container">
<!-- 引入头部组件 -->
<view class="content">
<!-- 标签栏 -->
<view class="content">
<u-tabs
:list="tabList"
lineWidth="30"
lineColor="#3B8CFF"
:activeStyle="{
color: '#303133',
color: '#3B8CFF',
fontWeight: 'bold',
transform: 'scale(1.05)'
}"
@ -17,34 +15,53 @@
color: '#606266',
transform: 'scale(1)'
}"
itemStyle="padding-left: 15px; padding-right: 15px; height: 34px;width:90px"
itemStyle="padding-left: 15px; padding-right: 15px; height: 34px"
@change="handleTabChange"
></u-tabs>
</view>
<view class="content_wapper">
<view class="content_list">
<!-- 工单列表 -->
<view v-for="(order, index) in filteredOrders" :key="index" class="order-item" @click="goDetail(order)">
<view
v-for="(order, index) in filteredOrders"
:key="index"
class="order-item"
:class="{'order-item--special': order.status === 2}"
@click="goDetail(order)"
>
<view class="order-title">
<view class="title">
<view class="title-text">{{ order.title }}</view>
<view class="title-text">
<text :style="{color: getStatusColor(order.status)}"></text>
<text> {{order.title}}</text>
</view>
<u-tag
size="mini"
:text="getStatusText(order.status)"
:type="getStatusType(order.status)"
plain
:style="{
backgroundColor: getStatusBgColor(order.status),
color: getStatusColor(order.status),
borderColor: getStatusColor(order.status)
}"
></u-tag>
</view>
<view class="date">{{ formatTime(order.createdAt,"YYYY-MM-DD") }}</view>
</view>
<view class="order-description">{{ order.content }}</view>
<view class="order-meta">
<!-- <text class="meta-item">{{ order.label || '通用问题' }}</text> -->
<button
@click.stop="handleAction(order)"
@click.stop="handleAction(order, $event)"
class="order-action"
v-if="order.status === 2"
>撤回</button>
v-if="order.status == 2"
>
撤回
</button>
</view>
</view>
</view>
<!-- 空状态提示 -->
<u-empty
textSize="24"
@ -52,13 +69,13 @@
height="780px"
v-if="filteredOrders.length === 0"
mode="data"
icon="/static/imgs/noData.png"
icon="/static/imgs/noData.jpeg"
></u-empty>
</view>
</view>
<!-- <Footer></Footer> -->
<!-- 固定在右侧的发布工单按钮 -->
<!-- 发布工单按钮 -->
<view class="fab-container">
<view class="fab-button" @click="openPublishForm">
<text class="fab-icon">+</text>
@ -69,7 +86,6 @@
<script>
import Footer from '@/components/footer_common.vue';
import { get, post } from '@/utils/request';
import { IMAGE_BASE_URL,BASE_URL } from '@/utils/config';
import { formatTime, formatRelativeTime } from '@/utils/timeFormat';
@ -103,6 +119,30 @@
this.getReciprocitiesList();
},
methods: {
//
getStatusColor(status) {
const colorMap = {
1: '#FF7D00', // -
2: '#00B42A', // -绿
3: '#86909C', // -
99: '#F53F3F', // -
98: '#86909C' // -
};
return colorMap[status] || '#86909C';
},
//
getStatusBgColor(status) {
const colorMap = {
1: 'rgba(255, 125, 0, 0.1)', // -
2: 'rgba(0, 180, 42, 0.1)', // -绿
3: 'rgba(134, 144, 156, 0.1)', // -
99: 'rgba(245, 63, 63, 0.1)', // -
98: 'rgba(134, 144, 156, 0.1)' // -
};
return colorMap[status] || 'rgba(134, 144, 156, 0.1)';
},
//
getStatusText(status) {
const statusMap = {
@ -119,7 +159,7 @@
getStatusType(status) {
const typeMap = {
1: 'warning',
2: 'warning',
2: 'success',
3: 'success',
98:'error'
};
@ -134,7 +174,6 @@
// tabs
handleTabChange(index) {
console.log("======index",index)
this.currentTab = index.value;
},
@ -143,10 +182,8 @@
uni.navigateTo({ url: '/pages/helpInfo/index' });
},
handleAction(order) {
//
event.stopPropagation();
handleAction(order, e) {
e.stopPropagation();
if (order.status === 2) {
uni.showModal({
title: '提示',
@ -213,143 +250,179 @@
</script>
<style lang="scss" scoped>
//
$primary-color: #1890ff;
$light-bg: #f0f8ff;
$text-color: #333;
$sub-text-color: #3D3D3D;
$disabled-text-color: #999;
$fab-bg: $primary-color; //
$fab-shadow: 0 4rpx 16rpx rgba(24, 144, 255, 0.3); //
//
$primary-color: #3B8CFF; // -
$secondary-color: #FF7D00; // -
$success-color: #00B42A; // -绿
$danger-color: #F53F3F; // -
$gray-color: #86909C; //
$light-bg: #F7F8FA; //
$card-bg: #FFFFFF; //
//
$gradient-primary: linear-gradient(135deg, $primary-color, #5aa7ff);
$gradient-active: linear-gradient(135deg, #e6f7ff, #ccf0ff);
.container {
width: 100%;
min-height: 100vh;
opacity: 1;
background: linear-gradient(0deg, rgba(240, 240, 240, 1) 0%, rgba(255, 250, 250, 0) 100%),
linear-gradient(0deg, rgba(255, 241, 235, 1) 0%, rgba(192, 219, 250, 1) 100%);
background-color: $light-bg;
position: relative;
.content {
width: 100%;
position: absolute;
margin-top: 20rpx;
background-color: rgba(252, 252, 252, 0.8);
padding-bottom: 16rpx;
padding: 15rpx 0;
background-color: $card-bg;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
position: sticky;
top: 0;
z-index: 10;
::v-deep .u-tabs {
padding: 0 15rpx;
}
// 线
::v-deep .u-tabs__line {
transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
}
.content_wapper {
width: 100%;
height: auto;
position: absolute;
margin-top: 120rpx;
background-color: rgba(252, 252, 252, 0.8);
padding: 25rpx 0 140rpx;
box-sizing: border-box;
.content_list {
width: 100%;
padding: 0 20rpx;
padding: 0 25rpx;
box-sizing: border-box;
.order-item {
display: flex;
flex-direction: column;
width: 95%;
margin: 20rpx auto;
border-radius: 10rpx;
margin-bottom: 40rpx;
padding:40rpx 20rpx;
border-radius: 14.17px;
background: linear-gradient(90deg, rgba(199, 222, 255, 0.5) 0%, rgba(255, 255, 255, 0.72) 100%);
box-shadow: 0px 2px 4px rgba(191, 218, 255, 0.58);
width: 90%;
margin: 0 auto 25rpx;
border-radius: 16rpx;
padding: 30rpx;
background-color: $card-bg;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
position: relative;
transition: all 0.3s ease;
&:hover {
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
transform: translateY(-3rpx);
}
//
&--special {
border-left: 6rpx solid $success-color;
}
.order-title {
font-size: 28rpx;
display: flex;
justify-content: space-between;
.title{
width: 90%;
font-weight: bold;
align-items: center;
margin-bottom: 25rpx;
.title {
display: flex;
align-items: center;
gap: 8rpx;
.title-text{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200rpx;
gap: 15rpx;
.title-text {
color: #1D2129;
font-weight: 600;
font-size: 28rpx;
}
}
.date{
width: 40%;
font-weight: normal;
text-align: right;
.date {
color: $gray-color;
font-size: 24rpx;
padding: 5rpx 10rpx;
background-color: rgba(134, 144, 156, 0.08);
border-radius: 6rpx;
}
}
.order-description {
font-size: 26rpx;
color: $sub-text-color;
margin-top: 10rpx;
font-size: 28rpx;
color: #1D2129;
line-height: 1.7;
margin-bottom: 30rpx;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 2;
line-height: 50rpx;
padding-bottom: 20rpx;
border-bottom: 1px dashed #EEEEEE;
word-break: break-word;
}
.order-meta {
display: flex;
justify-content: space-between;
align-items: center;
.meta-item {
color: $gray-color;
font-size: 24rpx;
padding: 3rpx 12rpx;
background-color: rgba(134, 144, 156, 0.08);
border-radius: 15rpx;
}
}
.order-action {
margin-top: 40rpx;
width: 120rpx;
height: 40rpx;
line-height: 40rpx;
text-align: center;
background-color: $primary-color;
min-width: 130rpx;
height: 56rpx;
line-height: 56rpx;
background-color: $danger-color;
color: #fff;
border-radius: 10rpx;
border-radius: 28rpx;
font-size: 24rpx;
margin-top: 20rpx;
position: absolute;
right: 20rpx;
bottom: 20rpx;
margin: 0;
padding: 0;
transition: all 0.2s;
&:hover {
background-color: #e02020;
transform: scale(1.05);
}
}
}
}
}
//
//
.fab-container {
position: fixed;
right: 20rpx;
right: 40rpx;
bottom: 220rpx;
z-index: 100; //
transition: all 0.3s ease; //
//
&:hover .fab-button {
transform: scale(1.1);
box-shadow: $fab-shadow, 0 0 0 10rpx rgba(24, 144, 255, 0.1);
}
}
z-index: 100;
.fab-button {
width: 100rpx;
height: 100rpx;
width: 130rpx;
height: 130rpx;
border-radius: 50%;
background-color: $fab-bg;
background: $gradient-primary;
display: flex;
justify-content: center;
align-items: center;
box-shadow: $fab-shadow;
color: #fff;
font-size: 60rpx;
font-weight: bold;
transition: all 0.3s ease;
box-shadow: 0 8rpx 20rpx rgba(59, 140, 255, 0.45);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 5rpx solid rgba(255, 255, 255, 0.3);
&:hover {
transform: scale(1.1) rotate(90deg);
box-shadow: 0 10rpx 25rpx rgba(59, 140, 255, 0.55);
}
}
.fab-icon {
color: white;
font-size: 65rpx;
font-weight: bold;
line-height: 1;
text-shadow: 0 2rpx 5rpx rgba(0, 0, 0, 0.1);
}
}
}
</style>

View File

@ -1,15 +1,13 @@
<template>
<view class="container">
<!-- 引入头部组件 -->
<view class="content">
<!-- 标签栏 -->
<view class="content">
<u-tabs
:list="tabList"
lineWidth="30"
lineColor="#3B8CFF"
:activeStyle="{
color: '#303133',
color: '#3B8CFF',
fontWeight: 'bold',
transform: 'scale(1.05)'
}"
@ -17,32 +15,51 @@
color: '#606266',
transform: 'scale(1)'
}"
itemStyle="padding-left: 15px; padding-right: 15px; height: 34px;width:60px"
itemStyle="padding-left: 15px; padding-right: 15px; height: 34px"
@change="handleTabChange"
></u-tabs>
</view>
<view class="content_wapper">
<view class="content_list">
<!-- 工单列表 -->
<view v-for="(order, index) in filteredOrders" :key="index" class="order-item"
@click="goDetail(order)">
<view
v-for="(order, index) in filteredOrders"
:key="index"
class="order-item"
:class="{'order-item--special': order.status === 2}"
@click="goDetail(order)"
>
<view class="order-title">
<view class="title">
<view class="title-text">我的工单</view>
<view class="title-text">
<text :style="{color: getStatusColor(order.status)}"></text>
<!-- <text> 我的工单 </text> -->
</view>
<u-tag
size="mini"
:text="getStatusText(order.status)"
:type="getStatusType(order.status)"
plain
:style="{
backgroundColor: getStatusBgColor(order.status),
color: getStatusColor(order.status),
borderColor: getStatusColor(order.status)
}"
></u-tag>
</view>
<view class="date">{{ formatTime(order.createdAt,"YYYY-MM-DD") }}</view>
</view>
<view class="order-description">{{ order.title }}</view>
<button @click.stop="handleAction(order, $event)" class="order-action" v-if="order.status == 1 || order.status == 2 || order.status == 99">撤回</button>
<view class="order-meta">
<text class="meta-item">{{ order.label || '通用问题' }}</text>
<button
@click.stop="handleAction(order, $event)"
class="order-action"
v-if="order.status == 1 || order.status == 2 || order.status == 99"
>
撤回
</button>
</view>
</view>
</view>
<!-- 空状态提示 -->
@ -54,32 +71,26 @@
mode="data"
icon="/static/imgs/noData.jpeg"
></u-empty>
</view>
<Footer></Footer>
<!-- 新增的发布工单按钮 -->
<!-- 发布工单按钮 -->
<view class="fab-container">
<view class="fab-button" @click="showPublishForm">
<text class="fab-icon">+</text>
</view>
</view>
</view>
</template>
<script>
// import Header from '@/components/header_common.vue';
import Footer from '@/components/footer_common.vue';
import { get, post,put } from '@/utils/request';
import { IMAGE_BASE_URL,BASE_URL } from '@/utils/config';
import { formatTime, formatRelativeTime } from '@/utils/timeFormat';
export default {
components: {
Footer
},
components: { Footer },
data() {
return {
tabList: [
@ -108,7 +119,30 @@
}
},
methods: {
//
//
getStatusColor(status) {
const colorMap = {
1: '#FF7D00', // -
2: '#00B42A', // -绿
3: '#86909C', // -
99: '#F53F3F', // -
98: '#86909C' // -
};
return colorMap[status] || '#86909C';
},
//
getStatusBgColor(status) {
const colorMap = {
1: 'rgba(255, 125, 0, 0.1)', // -
2: 'rgba(0, 180, 42, 0.1)', // -绿
3: 'rgba(134, 144, 156, 0.1)', // -
99: 'rgba(245, 63, 63, 0.1)', // -
98: 'rgba(134, 144, 156, 0.1)' // -
};
return colorMap[status] || 'rgba(134, 144, 156, 0.1)';
},
getStatusText(status) {
const statusMap = {
'': '全部',
@ -121,7 +155,6 @@
return statusMap[status] || '未知状态';
},
//
getStatusType(status) {
const typeMap = {
1:'warning',
@ -132,87 +165,70 @@
};
return typeMap[status] || 'info';
},
handleBack() {
uni.navigateBack({
delta: 1 //
});
uni.navigateBack({ delta: 1 });
},
// tabs
handleTabChange(index) {
console.log("======index",index)
this.currentTab = index.value;
},
//
showPublishForm() {
//
uni.showToast({
title: '即将打开发布工单表单',
icon: 'none'
});
uni.navigateTo({ url: '/pages/serviceTickets/index' });
},
//
handleAction(order, e) {
//
e.stopPropagation();
handleAction(order, e) {
e.stopPropagation();
if (order.status == 1 || order.status == 2 || order.status == 99) {
uni.showModal({
title: '提示',
content: '确定要撤回这个工单吗?',
success: (res) => {
if (res.confirm) {
//
this.withdrawOrder(order.id);
}
}
});
}
},
async withdrawOrder(orderId) {
try {
const res = await put(`/api/v1/app_auth/work-order/${orderId}`, {status:98});
if (res?.success) {
uni.showToast({
title: '工单已撤回',
icon: 'success'
});
//
uni.showToast({ title: '工单已撤回', icon: 'success' });
this.getWorkOrderList();
}
} catch (err) {
console.error('撤回工单失败:', err);
uni.showToast({
title: '撤回失败',
icon: 'none'
});
uni.showToast({ title: '撤回失败', icon: 'none' });
}
},
goDetail(i){
uni.setStorageSync("Detail",i)
uni.navigateTo({ url: '/pages/myTicketsDetail/index' });
},
//
async getWorkOrderList(){
if (this.isLoading) return;
this.isLoading = true;
try {
const res = await get('/api/v1/app_auth/my/work-order', {
current: 1,
pageSize: 10,
});
if (res?.success) {
this.orders = res.data || [];
}
} catch (err) {
console.error('获取我的求助失败:', err);
uni.showToast({
title: '加载列表失败',
icon: 'none'
});
uni.showToast({ title: '加载列表失败', icon: 'none' });
} finally {
this.isLoading = false;
}
@ -222,157 +238,179 @@
</script>
<style lang="scss" scoped>
//
$primary-color: #1890ff;
$light-bg: #f0f8ff;
$text-color: #333;
$sub-text-color: #3D3D3D;
$disabled-text-color: #999;
$fab-color: #1890ff; //
//
$primary-color: #3B8CFF; // -
$secondary-color: #FF7D00; // -
$success-color: #00B42A; // -绿
$danger-color: #F53F3F; // -
$gray-color: #86909C; //
$light-bg: #F7F8FA; //
$card-bg: #FFFFFF; //
//
$gradient-primary: linear-gradient(135deg, $primary-color, #5aa7ff);
$gradient-active: linear-gradient(135deg, #e6f7ff, #ccf0ff);
.container {
width: 100%;
min-height: 100vh;
/* 占满整个视口高度 */
opacity: 1;
background: linear-gradient(0deg, rgba(240, 240, 240, 1) 0%, rgba(255, 250, 250, 0) 100%),
linear-gradient(0deg, rgba(255, 241, 235, 1) 0%, rgba(192, 219, 250, 1) 100%);
background-color: $light-bg;
position: relative;
.content {
width: 100%;
position: absolute;
margin-top: 20rpx;
background-color: rgba(252, 252, 252, 0.8);
padding-bottom: 16rpx;
padding: 15rpx 0;
background-color: $card-bg;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
position: sticky;
top: 0;
z-index: 10;
::v-deep .u-tabs {
padding: 0 15rpx;
}
// 线
::v-deep .u-tabs__line {
transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
}
.content_wapper {
width: 100%;
height: auto;
position: absolute;
margin-top: 120rpx;
background-color: rgba(252, 252, 252, 0.8);
padding-bottom: 10vh;
padding: 25rpx 0 140rpx;
box-sizing: border-box;
.content_list {
width: 100%;
padding: 0 20rpx;
padding: 0 25rpx;
box-sizing: border-box;
.order-item {
display: flex;
flex-direction: column;
width: 90%;
margin: 20rpx auto;
border-radius: 10rpx;
margin-bottom: 40rpx;
padding:40rpx 20rpx;
border-radius: 14.17px;
background: linear-gradient(90deg, rgba(199, 222, 255, 0.5) 0%, rgba(255, 255, 255, 0.72) 100%);
box-shadow: 0px 2px 4px rgba(191, 218, 255, 0.58);
margin: 0 0 25rpx;
border-radius: 16rpx;
padding: 30rpx;
background-color: $card-bg;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
position: relative;
transition: all 0.3s ease;
&:hover {
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
transform: translateY(-3rpx);
}
//
&--special {
border-left: 6rpx solid $success-color;
}
.order-title {
font-size: 28rpx;
display: flex;
justify-content: space-between;
.title{
width: 90%;
font-weight: bold;
align-items: center;
margin-bottom: 25rpx;
.title {
display: flex;
align-items: center;
gap: 8rpx;
gap: 15rpx;
.title-text{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200rpx;
.title-text {
color: #1D2129;
font-weight: 600;
font-size: 28rpx;
}
}
.date {
color: $gray-color;
font-size: 24rpx;
padding: 5rpx 10rpx;
background-color: rgba(134, 144, 156, 0.08);
border-radius: 6rpx;
}
.date{
width: 40%;
font-weight: normal;
text-align: right;
}
}
.order-description {
font-size: 26rpx;
color: $sub-text-color;
margin-top: 10rpx;
font-size: 28rpx;
color: #1D2129;
line-height: 1.7;
margin-bottom: 30rpx;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 2;
line-height: 50rpx;
padding-bottom: 20rpx;
border-bottom: 1px dashed #EEEEEE;
word-break: break-word;
}
.order-status {
font-size: 22rpx;
color: $text-color;
margin-top: 10rpx;
width: 100rpx;
.order-meta {
display: flex;
justify-content: space-between;
align-items: center;
.meta-item {
color: $gray-color;
font-size: 24rpx;
padding: 3rpx 12rpx;
background-color: rgba(134, 144, 156, 0.08);
border-radius: 15rpx;
}
}
.order-action {
margin-top: 40rpx;
width: 120rpx;
height: 40rpx;
line-height: 40rpx;
text-align: center;
background-color: $primary-color;
min-width: 130rpx;
height: 56rpx;
line-height: 56rpx;
background-color: $danger-color;
color: #fff;
border-radius: 10rpx;
border-radius: 28rpx;
font-size: 24rpx;
margin-top: 20rpx;
position: absolute;
right: 20rpx;
bottom: 20rpx;
margin: 0;
padding: 0;
transition: all 0.2s;
&:hover {
background-color: #e02020;
transform: scale(1.05);
}
}
}
}
}
//
//
.fab-container {
position: fixed;
right: 20rpx;
right: 40rpx;
bottom: 220rpx;
z-index: 100;
//
&:hover .fab-button {
transform: scale(1.1);
}
}
.fab-button {
width: 100rpx;
height: 100rpx;
width: 130rpx;
height: 130rpx;
border-radius: 50%;
background-color: $fab-color;
background: $gradient-primary;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.15);
transition: all 0.3s ease;
box-shadow: 0 8rpx 20rpx rgba(59, 140, 255, 0.45);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 5rpx solid rgba(255, 255, 255, 0.3);
&:hover {
transform: scale(1.1) rotate(90deg);
box-shadow: 0 10rpx 25rpx rgba(59, 140, 255, 0.55);
}
}
.fab-icon {
color: white;
font-size: 60rpx;
font-size: 65rpx;
font-weight: bold;
line-height: 1;
text-shadow: 0 2rpx 5rpx rgba(0, 0, 0, 0.1);
}
}
}
</style>

View File

@ -120,7 +120,7 @@
flex-direction: column;
min-height: 100vh;
background: #f8faff;
padding-bottom: 120rpx;
padding-bottom: calc(100rpx + 40rpx + 40rpx);
}
.nearby-page {

View File

@ -140,7 +140,7 @@
// height: 100vh;
// padding: 70rpx 0;
// margin-top: 90rpx;
padding-bottom: 400rpx;
padding-bottom: calc(190rpx + 100rpx + 80rpx);
.neighbor_head {
width: 100%;