HomeLease/pages/lease/lease.vue

643 lines
15 KiB
Vue
Raw Normal View History

2025-08-13 11:43:35 +08:00
<template>
<view class="lease-page">
<!-- 头部区域 -->
2025-08-14 09:44:11 +08:00
<custom-nav-bar2 title="租赁申请"></custom-nav-bar2>
2025-08-13 11:43:35 +08:00
<view class="header">
<image
:src="commonEnum.FIRE_BACKGROUND_FULL"
class="fire-background-full"
mode="aspectFill"
></image>
2025-08-13 11:43:35 +08:00
</view>
<!-- 主要内容区域 -->
<view class="main-content">
<!-- 租赁信息表单 -->
<view class="form-section">
<view class="section-header">
<view class="section-indicator"></view>
<text class="section-title">填写租赁信息</text>
</view>
<view class="form-fields">
<!-- 姓名 -->
<view class="form-item">
<text class="field-label">姓名</text>
2025-08-13 14:37:35 +08:00
<input v-model="formData.name" class="field-input" placeholder="请输入姓名" />
2025-08-13 11:43:35 +08:00
</view>
<!-- 手机号 -->
<view class="form-item">
<text class="field-label">手机号</text>
2025-08-13 14:37:35 +08:00
<input
v-model="formData.phone"
class="field-input"
placeholder="请填写手机号"
type="number"
/>
2025-08-13 11:43:35 +08:00
</view>
<!-- 地址 -->
2025-08-13 14:54:55 +08:00
<view class="form-item address-form-item">
2025-08-13 11:43:35 +08:00
<text class="field-label">地址</text>
<view class="address-selector" @click="selectAddress">
<text class="address-text">{{ formData.address || '选择收货地址' }}</text>
2025-08-13 14:54:55 +08:00
<view class="map-icon-wrapper">
<text class="map-icon">📍</text>
</view>
2025-08-13 11:43:35 +08:00
</view>
</view>
<!-- 当前定位 -->
2025-08-13 18:06:47 +08:00
<view class="location-suggestion">
<view v-if="currentLocation" class="location-card">
2025-08-13 14:54:55 +08:00
<view class="location-content">
<view class="location-header">
<text class="location-title">当前定位</text>
<text class="location-company">{{ currentLocation.company }}</text>
</view>
<text class="location-address">{{ currentLocation.address }}</text>
</view>
<button class="use-location-btn" @click="useCurrentLocation">使用</button>
2025-08-13 11:43:35 +08:00
</view>
2025-08-13 18:06:47 +08:00
<view v-else class="location-card">
<view class="location-content">
<view class="location-header">
<text class="location-title">获取位置</text>
<text class="location-company">点击获取当前位置</text>
</view>
<text class="location-address">需要定位权限</text>
</view>
<button class="get-location-btn" @click="getCurrentLocation">获取</button>
</view>
2025-08-13 11:43:35 +08:00
</view>
<!-- 详细位置 -->
<view class="form-item">
<text class="field-label">详细位置</text>
2025-08-13 14:37:35 +08:00
<input v-model="formData.detailAddress" class="field-input" placeholder="例:6栋201室" />
2025-08-13 11:43:35 +08:00
</view>
<!-- 租赁设备 -->
<view class="form-item">
<text class="field-label">租赁设备</text>
<view class="selector" @click="selectEquipment">
<text class="selector-text">{{ formData.equipment || '选择设备类型' }}</text>
<text class="arrow-icon">></text>
</view>
</view>
<!-- 租赁周期 -->
<view class="form-item">
<text class="field-label">租赁周期</text>
<view class="selector" @click="selectPeriod">
<text class="selector-text">{{ formData.period || '1年' }}</text>
<text class="arrow-icon">></text>
</view>
</view>
</view>
</view>
<!-- 支付区域 -->
<view class="payment-section">
2025-08-13 14:37:35 +08:00
<button class="pay-button" @click="handlePayment">立即支付 ¥{{ totalAmount }}</button>
2025-08-13 11:43:35 +08:00
<view class="payment-details">
<view class="details-header" @click="toggleDetails">
<text class="details-title">明细</text>
2025-08-13 15:11:09 +08:00
<view :class="{ expanded: showDetails }" class="arrow-wrapper">
<image :src="commonEnum.DOWN_ARROW" class="details-arrow"></image>
</view>
2025-08-13 11:43:35 +08:00
</view>
2025-08-13 14:37:35 +08:00
<view v-if="showDetails" class="details-content">
2025-08-13 11:43:35 +08:00
<view class="detail-item">
<text class="detail-label">租金</text>
<text class="detail-value">¥{{ totalAmount }}</text>
</view>
</view>
</view>
</view>
</view>
<!-- 底部导航已由系统tabBar处理 -->
</view>
</template>
<script>
2025-08-13 14:37:35 +08:00
import commonEnum from '../../enum/commonEnum'
2025-08-13 18:06:47 +08:00
import { getLocationWithPermission, handleLocationError } from '@/utils/permission.js'
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
export default {
name: 'LeasePage',
2025-08-13 14:37:35 +08:00
computed: {
commonEnum() {
return commonEnum
},
},
2025-08-13 18:06:47 +08:00
onLoad() {
// 页面加载时获取当前位置
2025-08-14 09:57:19 +08:00
//this.getCurrentLocation()
2025-08-13 18:06:47 +08:00
},
2025-08-13 11:43:35 +08:00
data() {
return {
formData: {
name: '张珊珊',
phone: '',
address: '',
detailAddress: '',
equipment: '',
2025-08-13 14:37:35 +08:00
period: '1年',
2025-08-13 11:43:35 +08:00
},
2025-08-13 18:06:47 +08:00
currentLocation: null,
2025-08-13 11:43:35 +08:00
showDetails: false,
2025-08-13 14:37:35 +08:00
totalAmount: '100.10',
2025-08-13 11:43:35 +08:00
}
},
methods: {
2025-08-13 18:06:47 +08:00
// 获取当前位置信息
async getCurrentLocation() {
try {
uni.showLoading({
2025-08-14 09:44:11 +08:00
title: '获取位置中...',
2025-08-13 18:06:47 +08:00
})
2025-08-14 09:44:11 +08:00
2025-08-13 18:06:47 +08:00
const location = await getLocationWithPermission()
console.log('位置信息:', location)
this.reverseGeocode(location.latitude, location.longitude)
} catch (err) {
uni.hideLoading()
handleLocationError(err)
}
},
2025-08-14 09:44:11 +08:00
2025-08-13 18:06:47 +08:00
// 处理位置信息
reverseGeocode(latitude, longitude) {
uni.hideLoading()
2025-08-14 09:44:11 +08:00
2025-08-13 18:06:47 +08:00
// 直接使用坐标信息避免依赖外部API
this.currentLocation = {
company: '当前位置',
address: `纬度: ${latitude.toFixed(6)}, 经度: ${longitude.toFixed(6)}`,
latitude: latitude,
2025-08-14 09:44:11 +08:00
longitude: longitude,
2025-08-13 18:06:47 +08:00
}
2025-08-14 09:44:11 +08:00
2025-08-13 18:06:47 +08:00
// 尝试使用uni-app的地理编码如果平台支持
// #ifdef APP-PLUS || MP-WEIXIN
uni.reverseGeocoder({
location: {
latitude: latitude,
2025-08-14 09:44:11 +08:00
longitude: longitude,
2025-08-13 18:06:47 +08:00
},
2025-08-14 09:44:11 +08:00
success: res => {
2025-08-13 18:06:47 +08:00
console.log('逆地理编码结果:', res)
if (res.result) {
this.currentLocation = {
company: res.result.addressComponent?.city || '当前位置',
2025-08-14 09:44:11 +08:00
address:
res.result.formatted_addresses?.recommend || res.result.address || '未知地址',
2025-08-13 18:06:47 +08:00
latitude: latitude,
2025-08-14 09:44:11 +08:00
longitude: longitude,
2025-08-13 18:06:47 +08:00
}
}
},
2025-08-14 09:44:11 +08:00
fail: err => {
2025-08-13 18:06:47 +08:00
console.log('逆地理编码不可用,使用坐标信息')
2025-08-14 09:44:11 +08:00
},
2025-08-13 18:06:47 +08:00
})
// #endif
2025-08-14 09:44:11 +08:00
2025-08-13 18:06:47 +08:00
uni.showToast({
title: '位置获取成功',
2025-08-14 09:44:11 +08:00
icon: 'success',
2025-08-13 18:06:47 +08:00
})
},
2025-08-14 09:44:11 +08:00
2025-08-13 11:43:35 +08:00
selectAddress() {
// 选择地址逻辑
uni.showToast({
title: '选择地址功能',
2025-08-13 14:37:35 +08:00
icon: 'none',
2025-08-13 11:43:35 +08:00
})
},
2025-08-14 09:44:11 +08:00
2025-08-13 11:43:35 +08:00
useCurrentLocation() {
2025-08-13 18:06:47 +08:00
if (!this.currentLocation) {
this.getCurrentLocation()
return
}
2025-08-14 09:44:11 +08:00
2025-08-13 11:43:35 +08:00
this.formData.address = this.currentLocation.company + ' ' + this.currentLocation.address
uni.showToast({
title: '已使用当前定位',
2025-08-13 14:37:35 +08:00
icon: 'success',
2025-08-13 11:43:35 +08:00
})
},
selectEquipment() {
// 选择设备逻辑
uni.showActionSheet({
itemList: ['节能灶', '燃烧器', '燃气灶', '电磁炉'],
2025-08-13 14:37:35 +08:00
success: res => {
2025-08-13 11:43:35 +08:00
const equipmentList = ['节能灶', '燃烧器', '燃气灶', '电磁炉']
this.formData.equipment = equipmentList[res.tapIndex]
2025-08-13 14:37:35 +08:00
},
2025-08-13 11:43:35 +08:00
})
},
selectPeriod() {
// 选择租赁周期逻辑
uni.showActionSheet({
itemList: ['1个月', '3个月', '6个月', '1年', '2年'],
2025-08-13 14:37:35 +08:00
success: res => {
2025-08-13 11:43:35 +08:00
const periodList = ['1个月', '3个月', '6个月', '1年', '2年']
this.formData.period = periodList[res.tapIndex]
2025-08-13 14:37:35 +08:00
},
2025-08-13 11:43:35 +08:00
})
},
toggleDetails() {
this.showDetails = !this.showDetails
},
handlePayment() {
// 支付逻辑
uni.showModal({
title: '确认支付',
content: `确认支付 ¥${this.totalAmount} 吗?`,
2025-08-13 14:37:35 +08:00
success: res => {
2025-08-13 11:43:35 +08:00
if (res.confirm) {
uni.showToast({
title: '支付成功',
2025-08-13 14:37:35 +08:00
icon: 'success',
2025-08-13 11:43:35 +08:00
})
}
2025-08-13 14:37:35 +08:00
},
2025-08-13 11:43:35 +08:00
})
},
// 页面跳转现在由系统tabBar处理
goToHome() {
uni.switchTab({
2025-08-13 14:37:35 +08:00
url: '/pages/index/index',
2025-08-13 11:43:35 +08:00
})
},
goToProfile() {
uni.switchTab({
2025-08-13 14:37:35 +08:00
url: '/pages/profile/profile',
2025-08-13 11:43:35 +08:00
})
2025-08-13 14:37:35 +08:00
},
},
2025-08-13 11:43:35 +08:00
}
</script>
<style lang="scss" scoped>
.lease-page {
position: relative;
2025-08-14 09:57:19 +08:00
background: #f3f5f6;
border: #120d0d solid 2rpx;
2025-08-13 11:43:35 +08:00
}
// 头部区域
.header {
position: relative;
2025-08-13 14:37:35 +08:00
//border: #120d0d solid 2rpx;
background: white;
2025-08-14 09:57:19 +08:00
.fire-background-full {
width: 750rpx;
height: 592rpx;
2025-08-13 11:43:35 +08:00
}
}
// 主要内容区域
.main-content {
position: relative;
top: -220rpx;
2025-08-13 14:37:35 +08:00
background: #ffffff;
2025-08-13 11:43:35 +08:00
border-radius: 40rpx 40rpx 0 0;
2025-08-13 14:37:35 +08:00
margin: 0 30rpx;
2025-08-13 11:43:35 +08:00
padding: 40rpx;
min-height: 60vh;
2025-08-13 15:35:49 +08:00
//border: #120d0d solid 2rpx;
2025-08-14 09:57:19 +08:00
//box-shadow: 0 10rpx 30rpx rgba(0, 0, 0, 0.3);
2025-08-13 11:43:35 +08:00
}
// 表单区域
.form-section {
margin-bottom: 60rpx;
2025-08-13 15:35:49 +08:00
//border: #0c1387 solid 2rpx;
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
.section-header {
display: flex;
align-items: center;
margin-bottom: 40rpx;
2025-08-13 15:35:49 +08:00
//border: red solid 2rpx;
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
.section-indicator {
width: 8rpx;
height: 40rpx;
background: #ff4757;
border-radius: 4rpx;
margin-right: 20rpx;
}
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
.section-title {
font-size: 32rpx;
font-weight: bold;
color: #333;
}
}
}
.form-fields {
.form-item {
2025-08-13 15:35:49 +08:00
//margin-bottom: 40rpx;
2025-08-13 14:37:35 +08:00
display: flex;
align-items: center;
border-bottom: 1rpx solid #d8d8d8;
2025-08-13 11:43:35 +08:00
.field-label {
display: block;
font-size: 28rpx;
color: #333;
2025-08-13 14:37:35 +08:00
font-weight: 400;
flex: 1;
2025-08-13 15:35:49 +08:00
//border: 2rpx solid #d81313;
2025-08-13 11:43:35 +08:00
}
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
.field-input {
2025-08-13 15:35:49 +08:00
//border: 2rpx solid #d81313;
2025-08-13 14:54:55 +08:00
flex: 3;
2025-08-13 11:43:35 +08:00
height: 80rpx;
2025-08-13 14:54:55 +08:00
padding: 0 20rpx;
2025-08-13 11:43:35 +08:00
font-size: 28rpx;
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
&:focus {
border-color: #ff9a9e;
background: #fff;
}
}
}
}
2025-08-13 14:54:55 +08:00
// 地址表单项特殊样式
.address-form-item {
margin-bottom: 20rpx;
}
2025-08-13 11:43:35 +08:00
// 地址选择器
.address-selector {
2025-08-13 14:54:55 +08:00
flex: 3;
2025-08-13 11:43:35 +08:00
display: flex;
align-items: center;
2025-08-13 14:54:55 +08:00
justify-content: space-between;
2025-08-13 11:43:35 +08:00
height: 80rpx;
2025-08-13 14:54:55 +08:00
padding: 0 20rpx;
border-radius: 12rpx;
transition: all 0.3s ease;
&:active {
background: #f0f0f0;
border-color: #ff6b6b;
}
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
.address-text {
2025-08-13 14:54:55 +08:00
flex: 1;
2025-08-13 11:43:35 +08:00
font-size: 28rpx;
color: #666;
2025-08-13 14:54:55 +08:00
margin-right: 20rpx;
2025-08-13 11:43:35 +08:00
}
2025-08-13 14:37:35 +08:00
2025-08-13 14:54:55 +08:00
.map-icon-wrapper {
display: flex;
align-items: center;
justify-content: center;
width: 40rpx;
height: 40rpx;
background: #ff6b6b;
border-radius: 50%;
.map-icon {
font-size: 24rpx;
color: white;
}
2025-08-13 11:43:35 +08:00
}
}
2025-08-13 14:54:55 +08:00
// 位置建议卡片
.location-suggestion {
2025-08-13 11:43:35 +08:00
margin-bottom: 40rpx;
2025-08-13 14:37:35 +08:00
2025-08-13 14:54:55 +08:00
.location-card {
display: flex;
align-items: center;
justify-content: space-between;
background: white;
border: 2rpx solid #e8f4fd;
border-radius: 16rpx;
padding: 24rpx;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.05);
position: relative;
2025-08-13 14:37:35 +08:00
2025-08-13 14:54:55 +08:00
&::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 6rpx;
2025-08-13 15:26:21 +08:00
background: #f3f5f6;
2025-08-13 14:54:55 +08:00
border-radius: 6rpx 0 0 6rpx;
2025-08-13 11:43:35 +08:00
}
2025-08-13 14:37:35 +08:00
2025-08-13 14:54:55 +08:00
.location-content {
flex: 1;
margin-right: 20rpx;
.location-header {
display: flex;
align-items: center;
margin-bottom: 8rpx;
.location-title {
font-size: 24rpx;
color: #ff6b6b;
font-weight: 500;
margin-right: 12rpx;
}
.location-company {
font-size: 26rpx;
color: #333;
font-weight: 500;
}
}
.location-address {
font-size: 24rpx;
color: #666;
line-height: 1.4;
}
2025-08-13 11:43:35 +08:00
}
2025-08-13 14:37:35 +08:00
2025-08-13 14:54:55 +08:00
.use-location-btn {
2025-08-13 15:26:21 +08:00
background: #f3f5f5;
color: #000000;
2025-08-13 14:54:55 +08:00
border: none;
border-radius: 24rpx;
padding: 12rpx 24rpx;
font-size: 24rpx;
font-weight: 500;
box-shadow: 0 4rpx 12rpx rgba(255, 107, 107, 0.3);
transition: all 0.3s ease;
&:active {
transform: translateY(2rpx);
box-shadow: 0 2rpx 8rpx rgba(255, 107, 107, 0.4);
}
}
2025-08-14 09:44:11 +08:00
2025-08-13 18:06:47 +08:00
.get-location-btn {
background: #ff6b6b;
color: #ffffff;
border: none;
border-radius: 24rpx;
padding: 12rpx 24rpx;
font-size: 24rpx;
font-weight: 500;
box-shadow: 0 4rpx 12rpx rgba(255, 107, 107, 0.3);
transition: all 0.3s ease;
&:active {
transform: translateY(2rpx);
box-shadow: 0 2rpx 8rpx rgba(255, 107, 107, 0.4);
}
}
2025-08-13 11:43:35 +08:00
}
}
// 选择器
.selector {
2025-08-13 14:54:55 +08:00
flex: 3;
2025-08-13 11:43:35 +08:00
display: flex;
justify-content: space-between;
align-items: center;
height: 80rpx;
2025-08-13 14:54:55 +08:00
2025-08-13 11:43:35 +08:00
border-radius: 12rpx;
padding: 0 20rpx;
2025-08-13 14:54:55 +08:00
transition: all 0.3s ease;
&:active {
background: #f0f0f0;
border-color: #ff6b6b;
}
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
.selector-text {
font-size: 28rpx;
color: #666;
}
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
.arrow-icon {
font-size: 24rpx;
2025-08-13 14:54:55 +08:00
color: #999;
transition: transform 0.3s ease;
}
&:active .arrow-icon {
transform: scale(1.2);
2025-08-13 11:43:35 +08:00
}
}
// 支付区域
.payment-section {
2025-08-13 15:11:09 +08:00
display: flex;
flex-direction: column;
2025-08-13 11:43:35 +08:00
.pay-button {
width: 100%;
2025-08-13 15:26:21 +08:00
height: 100%;
2025-08-13 14:37:35 +08:00
background: #f15a04;
2025-08-13 11:43:35 +08:00
color: #fff;
border: none;
2025-08-13 15:26:21 +08:00
border-radius: 10rpx;
2025-08-13 11:43:35 +08:00
font-size: 32rpx;
font-weight: bold;
margin-bottom: 40rpx;
box-shadow: 0 10rpx 30rpx rgba(255, 154, 158, 0.3);
}
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
.payment-details {
.details-header {
display: flex;
align-items: center;
2025-08-13 15:26:21 +08:00
2025-08-13 11:43:35 +08:00
padding: 20rpx 0;
border-bottom: 2rpx solid #f0f0f0;
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
.details-title {
font-size: 28rpx;
2025-08-13 15:11:09 +08:00
color: #f15a04;
2025-08-13 15:26:21 +08:00
padding-right: 10rpx;
2025-08-13 11:43:35 +08:00
}
2025-08-13 14:37:35 +08:00
2025-08-13 15:11:09 +08:00
.arrow-wrapper {
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease;
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
&.expanded {
transform: rotate(180deg);
}
}
2025-08-13 15:11:09 +08:00
.details-arrow {
width: 20rpx;
height: 10rpx;
}
2025-08-13 11:43:35 +08:00
}
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
.details-content {
padding: 20rpx 0;
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
.detail-item {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20rpx;
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
.detail-label {
font-size: 28rpx;
2025-08-13 15:26:21 +08:00
color: #868686;
2025-08-13 11:43:35 +08:00
}
2025-08-13 14:37:35 +08:00
2025-08-13 11:43:35 +08:00
.detail-value {
font-size: 28rpx;
2025-08-13 15:26:21 +08:00
color: #3d3d3d;
2025-08-13 11:43:35 +08:00
font-weight: bold;
}
}
}
}
}
// 底部导航样式已移除使用系统tabBar
// 动画
@keyframes pulse {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.1);
opacity: 0.8;
}
100% {
transform: scale(1);
opacity: 1;
}
}
2025-08-13 14:37:35 +08:00
</style>