fjrcloud-community-app/pages/index/check-page.vue

369 lines
8.1 KiB
Vue
Raw Normal View History

2026-04-22 20:57:53 +08:00
<!-- 认证页面 -->
<template>
<s-layout title="业主认证">
<view class="check-page">
<!-- 房屋列表 -->
<scroll-view scroll-y class="house-list">
<!-- 单个房屋项 -->
<view
v-for="(item, index) in state.houseList"
:key="index"
class="house-item"
@tap="handleItemTap(item)"
>
<!-- 主要信息区 -->
<view class="house-main">
<view class="house-icon-wrapper">
<image
class="house-icon"
src="/static/img/login_img.png"
mode="aspectFit"
/>
</view>
<view class="house-info">
<view class="house-name-row">
<text class="house-name">{{ item.name }}</text>
<text :class="['status-tag', `status-${item.status}`]">{{ getStatusText(item.status) }}</text>
</view>
<text class="house-address">{{ item.address }}</text>
</view>
</view>
<!-- 操作区已认证/已驳回显示 -->
<view
v-if="item.status !== 'pending'"
class="house-action"
@tap.stop="handleItemTap(item)"
>
<view class="action-left">
<image
class="action-icon"
:src="item.status === 'approved' ? '/static/img/yz-icon1.png' : '/static/img/yz-icon2.png'"
mode="aspectFit"
/>
<text class="action-text">{{ item.status === 'approved' ? '查看关联人员' : '查看原因' }}</text>
</view>
<image class="action-arrow-icon" src="/static/img/right-icon.png" mode="aspectFit" />
</view>
</view>
<!-- 空状态 -->
<view v-if="state.houseList.length === 0" class="empty-state">
<text class="empty-text">暂无房屋信息</text>
</view>
</scroll-view>
<!-- 底部按钮 -->
<view class="bottom-btn-wrapper">
<button class="submit-btn" @tap="goAddHouse"></button>
</view>
<!-- 驳回原因弹窗 - 使用全局 su-popup -->
<su-popup
:show="state.showRejectModal"
type="center"
round="24"
:showClose="true"
@close="closeRejectModal"
>
<view class="reject-modal-content">
<view class="modal-header">
<text class="modal-title">提示</text>
</view>
<view class="modal-body">
<text class="reject-label">驳回原因</text>
<text class="reject-reason">{{ state.rejectReason }}</text>
</view>
</view>
</su-popup>
</view>
</s-layout>
</template>
<script setup>
import { reactive } from 'vue';
// 页面状态
const state = reactive({
houseList: [
{
id: 1,
name: '融侨馨苑',
address: '12号楼1单元701',
status: 'pending', // pending待审核, approved已认证, rejected已驳回
},
{
id: 2,
name: '融侨馨苑',
address: '12号楼1单元701',
status: 'approved',
},
{
id: 3,
name: '融侨馨苑',
address: '12号楼1单元701',
status: 'rejected',
rejectReason: '因房产合同照片模糊,该认证信息不予通过',
},
],
showRejectModal: false,
rejectReason: '',
});
// 获取状态文字
const getStatusText = (status) => {
const map = {
pending: '待审核',
approved: '已认证',
rejected: '已驳回'
};
return map[status] || '未知';
};
// 点击房屋项
const handleItemTap = (item) => {
if (item.status === 'approved') {
// 已认证 - 查看关联人员
uni.navigateTo({
url: '/pages/index/related-members'
});
} else if (item.status === 'rejected') {
// 已驳回 - 显示驳回原因弹窗
state.rejectReason = item.rejectReason || '认证信息不完整,请重新提交';
state.showRejectModal = true;
}
};
// 关闭驳回弹窗
const closeRejectModal = () => {
state.showRejectModal = false;
};
// 去添加房屋
const goAddHouse = () => {
uni.navigateTo({
url: '/pages/index/auth-form'
});
};
</script>
<style lang="scss" scoped>
/* 页面容器 - 使用定位让按钮固定底部 */
.check-page {
position: relative;
background-color: #F5F5F5;
min-height: 100%;
}
/* 房屋列表容器 - 减去底部按钮高度 */
.house-list {
height: calc(100vh - 176rpx - 250rpx); /* 导航栏 + 底部按钮区域 */
padding-bottom: 30rpx;
padding-top: 30rpx;
}
/* 单个房屋项 - 圆角31rpx */
.house-item {
background-color: #FFFFFF;
border-radius: 31rpx;
padding: 32rpx;
/* 左右边距38rpx */
margin: 0 38rpx 24rpx;
box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.05);
&:last-child {
margin-bottom: 0;
}
}
/* 主要信息区 */
.house-main {
display: flex;
align-items: flex-start;
.house-icon-wrapper {
width: 92rpx;
height: 92rpx;
margin-right: 26rpx;
border-radius: 19rpx;
flex-shrink: 0;
.house-icon {
width: 100%;
height: 100%;
}
}
.house-info {
flex: 1;
min-width: 0;
.house-name-row {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 12rpx;
.house-name {
font-size: 32rpx;
font-weight: 600;
color: #333333;
}
.status-tag {
font-size: 24rpx;
padding: 6rpx 20rpx;
border-radius: 8rpx;
margin-left: 16rpx;
flex-shrink: 0;
&.status-pending {
color: #FF6B35;
background-color: rgba(255, 107, 53, 0.1);
}
&.status-approved {
color: #07C160;
background-color: rgba(7, 193, 96, 0.1);
}
&.status-rejected {
color: #E74C3C;
background-color: rgba(231, 76, 60, 0.1);
}
}
}
.house-address {
font-size: 26rpx;
color: #999999;
line-height: 1.4;
}
}
}
/* 操作区 */
.house-action {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 24rpx;
padding-top: 24rpx;
border-top: 1rpx solid #F0F0F0;
.action-left {
display: flex;
align-items: center;
.action-icon {
width: 36rpx;
height: 36rpx;
margin-right: 17rpx;
opacity: 0.7;
}
.action-text {
font-family: Source Han Sans SC, Source Han Sans SC;
font-weight: 400;
font-size: 27rpx;
color: #666666;
text-align: left;
font-style: normal;
text-transform: none;
}
}
.action-arrow-icon {
width: 28rpx;
height: 28rpx;
opacity: 0.6;
}
}
/* 空状态 */
.empty-state {
display: flex;
align-items: center;
justify-content: center;
padding: 120rpx 0;
.empty-text {
font-size: 28rpx;
color: #999999;
}
}
/* 底部按钮 - 固定底部 */
.bottom-btn-wrapper {
position: fixed;
left: 0;
right: 0;
bottom: 0;
padding: 24rpx 38rpx;
padding-bottom: calc(24rpx + env(safe-area-inset-bottom));
background-color: #F5F5F5;
.submit-btn {
width: 100%;
height: 96rpx;
background: linear-gradient(135deg, #FF8A65 0%, #FF6B35 100%);
border-radius: 48rpx;
border: none;
font-size: 32rpx;
font-weight: 500;
color: #FFFFFF;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 8rpx 24rpx rgba(255, 107, 53, 0.3);
&::after {
border: none;
}
&:active {
opacity: 0.9;
transform: scale(0.98);
}
}
}
/* 驳回原因弹窗内容 - 使用 su-popup 容器 */
.reject-modal-content {
width: 560rpx;
padding-bottom: 20rpx;
.modal-header {
display: flex;
align-items: center;
justify-content: center;
padding: 32rpx 24rpx 16rpx;
.modal-title {
font-size: 34rpx;
font-weight: 600;
color: #333333;
}
}
.modal-body {
padding: 8rpx 28rpx 36rpx;
display: flex;
line-height: 1.6;
.reject-label {
font-size: 28rpx;
color: #FF6B35;
font-weight: 500;
flex-shrink: 0;
}
.reject-reason {
font-size: 28rpx;
color: #666666;
flex: 1;
}
}
}
</style>