| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054 |
- <template>
- <!-- 访客申请 -->
- <view class="container">
- <!-- 导航栏 -->
- <custom-navbar title="访客申请" :showBack="true"></custom-navbar>
- <!-- 表单内容 -->
- <view class="form-container">
- <!-- 第一块:对接人信息 -->
- <view class="section">
- <view class="section-title">
- <image class="title-icon" src="/static/images/person.png" mode="aspectFit"></image>
- 对接人信息
- </view>
- <view class="mar-b-16">
- <text class="label">所属部门:</text>
- <view class="select-wrapper">
- <!-- 调试信息 -->
- <uni-data-select v-model="formData.departmentId" :localdata="departmentOptions"
- placeholder="请选择所属部门" @change="onDepartmentSelectChange" :clear="false">
- </uni-data-select>
- </view>
- </view>
- <view class="form-item1">
- <text class="label">员工姓名:</text>
- <view class="select-wrapper">
- <uni-data-select v-model="formData.employeeId" :localdata="employeeOptions" placeholder="请选择员工"
- @change="onEmployeeSelectChange" :clear="false">
- </uni-data-select>
- </view>
- </view>
- </view>
- <!-- 第二块:访问信息 -->
- <view class="section">
- <view class="section-title">
- <image class="title-icon" src="/static/images/calendar.png" mode="aspectFit"></image>
- 访问信息
- </view>
- <view class="form-item">
- <text class="label">访问事由</text>
- <input class="input" v-model="formData.visitReason" placeholder="请输入访问事由"
- placeholder-style="color: #c0c4cc" />
- </view>
- <view class="form-item">
- <text class="label">到访时间</text>
- <uni-datetime-picker type="datetime" v-model="formData.visitTime" @change="onVisitTimeChange"
- :clear-icon="false" placeholder="请选择到访时间" format="YYYY-MM-DD HH:mm" :hide-second="true">
- <view class="input-wrapper">
- <text class="placeholder" v-if="!formData.visitTime">请选择到访时间</text>
- <text v-else>{{ formData.visitTime }}</text>
- <uni-icons type="calendar" size="16" color="#c0c4cc"></uni-icons>
- </view>
- </uni-datetime-picker>
- </view>
- <view class="form-item">
- <text class="label">访客姓名</text>
- <input class="input" v-model="formData.visitorName" placeholder="请输入访客姓名"
- placeholder-style="color: #c0c4cc" />
- </view>
- <view class="form-item">
- <text class="label">访客单位</text>
- <input class="input" v-model="formData.visitorCompany" placeholder="请输入访客单位"
- placeholder-style="color: #c0c4cc" />
- </view>
- <view class="form-item">
- <text class="label">手机号</text>
- <input class="input" v-model="formData.visitorPhone" placeholder="请输入手机号"
- placeholder-style="color: #c0c4cc" type="number" />
- </view>
- </view>
- <!-- 第三块:随行人员 -->
- <view class="section">
- <view class="section-title">随行人员</view>
- <view class="accompany-list">
- <view class="accompany-item" v-for="(item, index) in formData.accompanyPersons" :key="index">
- <view class="form-item">
- <text class="label">随行人员</text>
- <input class="input" v-model="item.name" placeholder="请输入随行人员姓名"
- placeholder-style="color: #c0c4cc" />
- </view>
- <view class="form-item">
- <text class="label">手机号</text>
- <input class="input" v-model="item.phone" placeholder="请输入手机号"
- placeholder-style="color: #c0c4cc" type="number" />
- </view>
- <view class="delete-btn" v-if="formData.accompanyPersons.length > 1"
- @click.stop="removeAccompany(index)">
- <uni-icons type="trash" size="18" color="#ff4757"></uni-icons>
- </view>
- </view>
- </view>
- <view class="add-accompany-btn" @click="addAccompany">
- <uni-icons type="plus" size="16" color="#007aff"></uni-icons>
- <text>添加随行人员</text>
- </view>
- </view>
- <!-- 第四块:使用车辆 -->
- <view class="section">
- <view class="vehicle-header">
- <view class="section-title">
- <image class="title-icon" src="/static/images/cart.png" mode="aspectFit"></image>
- 使用车辆
- </view>
- <switch :checked="formData.useVehicle" @change="onVehicleChange" color="#007aff" />
- </view>
- <view v-if="formData.useVehicle" class="vehicle-content">
- <view class="form-item">
- <text class="label">接客时间</text>
- <uni-datetime-picker type="datetime" v-model="formData.pickupTime" @change="onPickupTimeChange"
- :clear-icon="false" placeholder="请选择接客时间" format="YYYY-MM-DD HH:mm" :hide-second="true">
- <view class="input-wrapper">
- <text class="placeholder" v-if="!formData.pickupTime">请选择接客时间</text>
- <text v-else>{{ formData.pickupTime }}</text>
- <uni-icons type="calendar" size="16" color="#c0c4cc"></uni-icons>
- </view>
- </uni-datetime-picker>
- </view>
- <view class="form-item">
- <text class="label">接客地点</text>
- <input class="input" v-model="formData.pickupLocation" placeholder="请输入接客地点"
- placeholder-style="color: #c0c4cc" />
- </view>
- </view>
- </view>
- </view>
- <!-- 提交按钮 -->
- <view class="submit-container">
- <button class="submit-btn" @click="submitForm">提交</button>
- </view>
- <!-- 提交成功弹框 -->
- <uni-popup ref="successPopup" type="center" :mask-click="false">
- <view class="success-popup">
- <view class="popup-content">
- <view class="success-icon">
- <uni-icons type="checkmarkempty" size="60" color="#52c41a"></uni-icons>
- </view>
- <view class="popup-title">申请提交成功</view>
- <view class="popup-message">您的申请已成功提交,请关注公众号即时查询审核结果</view>
- <view class="popup-buttons">
- <button class="cancel-btn" @click="closeSuccessPopup">取消</button>
- <button class="follow-btn" @click="showQRCode">关注</button>
- </view>
- </view>
- </view>
- </uni-popup>
- <!-- 授权登录组件 -->
- <auth-login-popup ref="authLoginPopup" @success="onLoginSuccess" @close="onLoginClose"></auth-login-popup>
- </view>
- </template>
- <script>
- import user from '../../store/modules/user';
- import {
- getDept,
- selectUser,
- addVisit
- } from '@/config/api.js';
- import AuthLoginPopup from '@/components/auth-login-popup/auth-login-popup.vue';
-
- export default {
- components: {
- AuthLoginPopup
- },
- data() {
- return {
- type: '', // 从上一页传递过来的参数
- tabbarHeight: 50, // tabbar高度,默认50px
- user: null, // 用户信息
- formData: {
- departmentId: '',
- department: '',
- employeeId: '',
- employeeName: '',
- visitReason: '',
- visitTime: '',
- visitorName: '',
- visitorCompany: '',
- visitorPhone: '',
- accompanyPersons: [{
- name: '',
- phone: ''
- }],
- useVehicle: false,
- pickupTime: '',
- pickupLocation: ''
- },
- // 部门数据
- departments: [],
- // 部门选项(格式化为uni-data-select所需格式)
- departmentOptions: [],
- // 员工选项
- employeeOptions: []
- }
- },
- onLoad(options) {
- // 页面加载,该钩子被调用时
- console.log("加载记录页面", "usususuus")
- // 获取传递过来的参数
- if (options.type) {
- this.type = options.type;
- }
- // 获取用户信息
- this.user = uni.getStorageSync("user")
- this.getTabbarHeight()
- this.getDeptList()
- },
- onReady() {
- // 页面渲染完成后再次获取,确保准确
- this.getTabbarHeight()
- // 打开授权登录弹窗
- // this.$refs.authLoginPopup.open()
- },
- methods: {
- // 获取tabbar高度
- getTabbarHeight() {
- // 获取菜单按钮信息,用于计算真实的可用高度
- const systemInfo = uni.getSystemInfoSync()
- // 在微信小程序中,使用 windowHeight 和 screenHeight 的差值
- // windowHeight 是不包含 tabbar 的可用高度
- const windowHeight = systemInfo.windowHeight
- const screenHeight = systemInfo.screenHeight
- // 微信小程序 tabbar 高度通常是 50px,但在不同设备可能不同
- // 直接使用差值
- let tabbarHeight = screenHeight - windowHeight
- console.log('系统信息:', {
- screenHeight,
- windowHeight,
- 计算的tabbar高度: tabbarHeight,
- safeAreaBottom: systemInfo.safeAreaInsets?.bottom || systemInfo.safeArea?.bottom || 0
- })
- // 在小程序中通常是 50-80 之间
- // 如果是 H5,差值会包含地址栏等,会更大
- // #ifdef MP-WEIXIN
- if (tabbarHeight < 30 || tabbarHeight > 100) {
- tabbarHeight = 50 // 微信小程序默认 50px
- }
- // #endif
- // #ifdef H5
- tabbarHeight = 50 // H5 固定使用 50px
- // #endif
- this.tabbarHeight = tabbarHeight
- },
- async getDeptList() {
- console.log("获取DEPT")
- try {
- const res = await getDept({
- parentId: 100
- })
- console.log("部门API返回数据:", res)
- this.departments = res.data
- // 格式化部门数据为uni-data-select所需格式
- this.departmentOptions = res.data.map(item => ({
- value: item.dept_id,
- text: item.dept_name
- }))
- console.log("格式化后的部门选项:", this.departmentOptions)
- // 添加延时确保数据已经设置
- this.$nextTick(() => {
- console.log("nextTick后的部门选项:", this.departmentOptions)
- })
- } catch (error) {
- console.error("获取部门列表失败:", error)
- uni.showToast({
- title: '获取部门列表失败',
- icon: 'none'
- })
- }
- },
- // 部门选择改变
- async onDepartmentSelectChange(value) {
- console.log("选择的部门ID:", value)
- this.formData.departmentId = value
- // 找到选中的部门信息
- const selectedDept = this.departments.find(dept => dept.dept_id === value)
- if (selectedDept) {
- this.formData.department = selectedDept.dept_name
- // 根据部门ID获取员工列表
- try {
- const userRes = await selectUser({
- deptId: value
- })
- console.log("员工列表:", userRes)
- // 格式化员工数据为uni-data-select所需格式
- if (userRes && userRes.rows) {
- this.employeeOptions = userRes.rows.map(item => ({
- value: item.user_id,
- text: item.nick_name
- }))
- console.log("格式化后的员工选项:", this.employeeOptions)
- } else if (userRes && userRes.data && userRes.data.rows) {
- // 备用路径,以防数据结构不同
- this.employeeOptions = userRes.data.rows.map(item => ({
- value: item.user_id,
- text: item.nick_name
- }))
- console.log("格式化后的员工选项(备用路径):", this.employeeOptions)
- }
- // 清空之前选择的员工
- this.formData.employeeId = ''
- this.formData.employeeName = ''
- } catch (error) {
- console.error("获取员工列表失败:", error)
- uni.showToast({
- title: '获取员工列表失败',
- icon: 'none'
- })
- }
- }
- },
- // 员工选择改变
- onEmployeeSelectChange(value) {
- console.log("选择的员工ID:", value)
- this.formData.employeeId = value
- // 根据employeeOptions找到对应的员工名称
- const selectedEmployee = this.employeeOptions.find(emp => emp.value === value)
- if (selectedEmployee) {
- this.formData.employeeName = selectedEmployee.text
- console.log("选择的员工名称:", selectedEmployee.text)
- }
- },
- // 到访时间改变
- onVisitTimeChange(e) {
- this.formData.visitTime = e;
- },
- // 接客时间改变
- onPickupTimeChange(e) {
- this.formData.pickupTime = e;
- },
- // 获取当前日期时间
- getCurrentDatetime() {
- const now = new Date();
- const year = now.getFullYear();
- const month = String(now.getMonth() + 1).padStart(2, '0');
- const day = String(now.getDate()).padStart(2, '0');
- const hour = String(now.getHours()).padStart(2, '0');
- const minute = String(now.getMinutes()).padStart(2, '0');
- return `${year}-${month}-${day} ${hour}:${minute}`;
- },
- // 添加随行人员
- addAccompany() {
- this.formData.accompanyPersons.push({
- name: '',
- phone: ''
- });
- },
- // 删除随行人员
- removeAccompany(index) {
- console.log('删除随行人员,索引:', index, '当前数量:', this.formData.accompanyPersons.length);
- if (this.formData.accompanyPersons.length > 1) {
- uni.showModal({
- title: '确认删除',
- content: '确定要删除这个随行人员吗?',
- success: (res) => {
- if (res.confirm) {
- this.formData.accompanyPersons.splice(index, 1);
- console.log('删除成功,剩余数量:', this.formData.accompanyPersons.length);
- }
- }
- });
- } else {
- uni.showToast({
- title: '至少保留一个随行人员',
- icon: 'none'
- });
- }
- },
- // 车辆开关改变
- onVehicleChange(e) {
- this.formData.useVehicle = e.detail.value;
- if (!this.formData.useVehicle) {
- // 关闭车辆使用时清空相关信息
- this.formData.pickupTime = '';
- this.formData.pickupLocation = '';
- }
- },
- // 手机号格式校验
- validatePhone(phone) {
- const phoneRegex = /^1[3-9]\d{9}$/;
- return phoneRegex.test(phone);
- },
- // 表单验证
- validateForm() {
- if (!this.formData.department) {
- uni.showToast({
- title: '请选择所属部门',
- icon: 'none'
- });
- return false;
- }
- if (!this.formData.employeeName) {
- uni.showToast({
- title: '请输入员工姓名',
- icon: 'none'
- });
- return false;
- }
- if (!this.formData.visitReason) {
- uni.showToast({
- title: '请输入访问事由',
- icon: 'none'
- });
- return false;
- }
- if (!this.formData.visitTime) {
- uni.showToast({
- title: '请选择到访时间',
- icon: 'none'
- });
- return false;
- }
- if (!this.formData.visitorName) {
- uni.showToast({
- title: '请输入访客姓名',
- icon: 'none'
- });
- return false;
- }
- // if (!this.formData.visitorCompany) {
- // uni.showToast({
- // title: '请输入访客单位',
- // icon: 'none'
- // });
- // return false;
- // }
- if (!this.formData.visitorPhone) {
- uni.showToast({
- title: '请输入手机号',
- icon: 'none'
- });
- return false;
- }
- // 校验访客手机号格式
- if (!this.validatePhone(this.formData.visitorPhone)) {
- uni.showToast({
- title: '请输入正确的手机号格式',
- icon: 'none'
- });
- return false;
- }
- // 验证随行人员信息
- for (let i = 0; i < this.formData.accompanyPersons.length; i++) {
- const person = this.formData.accompanyPersons[i];
- if (person.name && !person.phone) {
- uni.showToast({
- title: `请输入第${i + 1}个随行人员的手机号`,
- icon: 'none'
- });
- return false;
- }
- if (!person.name && person.phone) {
- uni.showToast({
- title: `请输入第${i + 1}个随行人员的姓名`,
- icon: 'none'
- });
- return false;
- }
- // 校验随行人员手机号格式
- if (person.phone && !this.validatePhone(person.phone)) {
- uni.showToast({
- title: `第${i + 1}个随行人员手机号格式不正确`,
- icon: 'none'
- });
- return false;
- }
- }
- // 验证车辆使用信息
- if (this.formData.useVehicle) {
- if (!this.formData.pickupTime) {
- uni.showToast({
- title: '请选择接客时间',
- icon: 'none'
- });
- return false;
- }
- if (!this.formData.pickupLocation) {
- uni.showToast({
- title: '请选择接客地点',
- icon: 'none'
- });
- return false;
- }
- }
- return true;
- },
- // 提交表单
- async submitForm() {
- if (!this.validateForm()) {
- return;
- }
- // 检查是否已登录(通过 openid 缓存判断)
- const openid = uni.getStorageSync('openid');
- console.log('当前 openid:', openid);
-
- if (!openid) {
- // 未登录,弹出授权登录组件
- console.log('未登录,弹出授权登录组件');
- uni.showToast({
- title: '请先登录',
- icon: 'none',
- duration: 1500
- });
- // 延迟弹出登录框,确保提示显示
- setTimeout(() => {
- this.$refs.authLoginPopup.open();
- }, 500);
- return;
- }
- // 已登录,继续提交表单
- console.log('已登录,继续提交表单');
- // 过滤空的随行人员
- const validAccompanyPersons = this.formData.accompanyPersons.filter(person =>
- person.name && person.phone
- );
- // 构建提交数据
- const submitData = {
- visitDate: this.formData.visitTime, // 访问时间
- userId: this.formData.employeeId, // 员工id(从选择的员工中获取user_id)后端不用了
- empName: this.formData.employeeName, // 访问部门人(员工姓名)
- visDept: this.formData.department, // 访客部门
- visitPerson: this.formData.visitorName, // 访客姓名
- visitorTel: this.formData.visitorPhone, // 访客手机
- visitorNum: (validAccompanyPersons.length + 1).toString(), // 访问人数(访客+随行人员)
- visitReson: this.formData.visitReason, // 访问事由
- // visDept: this.formData.visitorCompany, // 访客单位 后端没有给
- accPerson: JSON.stringify(validAccompanyPersons) // 随行人员转为JSON字符串
- };
- console.log('提交数据:', submitData);
- try {
- // 调用后端接口提交数据
- const response = await addVisit(submitData);
- console.log('提交响应:', response);
- // 检查返回结果(支持 code === 200 或 code === "200")
- if (response && (response.code === 200 || response.code === "200")) {
- //提示提交成功
- // uni.showToast({
- // title: response.msg || '操作成功',
- // icon: 'success',
- // duration: 2000
- // });
- this.$refs.successPopup.open();
- // 延迟返回上一页
- // setTimeout(() => {
- // uni.navigateBack({
- // fail: () => {
- // // 如果返回失败,跳转到访客页面
- // uni.switchTab({
- // url: '/pages/tabbar/visitor'
- // });
- // }
- // });
- // }, 2000);
- } else {
- // 提交失败
- uni.showToast({
- title: response.msg || response.message || '提交失败,请重试',
- icon: 'none',
- duration: 2000
- });
- }
- } catch (error) {
- console.error('提交异常:', error);
- // 优先使用后端返回的错误信息
- const errorMsg = error.data?.msg || error.msg || error.message || '提交失败,请重试';
- uni.showToast({
- title: errorMsg,
- icon: 'none',
- duration: 2000
- });
- }
- },
- // 关闭成功弹框
- closeSuccessPopup() {
- this.$refs.successPopup.close();
- // 返回上一页
- uni.navigateBack();
- },
- // 显示二维码
- showQRCode() {
- console.log('提交关注-跳转');
- this.$refs.successPopup.close();
- // this.$refs.qrcodePopup.open();
- uni.switchTab({
- url: '/pages/tabbar/visitor'
- });
- },
- // 关闭二维码弹框
- closeQRCode() {
- this.$refs.qrcodePopup.close();
- // 返回上一页
- uni.navigateBack();
- },
- // 跳转到隐私政策
- goToPrivacy() {
- uni.navigateTo({
- url: '/pagesA/public/richtext'
- });
- },
- // 跳转到服务协议
- goToService() {
- uni.navigateTo({
- url: '/pagesA/public/richtext'
- });
- },
- // 预览二维码
- previewQRCode() {
- uni.previewImage({
- urls: ['/static/images/qrcode.png'],
- current: 0
- });
- },
- // 登录成功回调
- onLoginSuccess(userInfo) {
- console.log('登录成功,用户信息:', userInfo);
- // 更新当前页面的用户信息
- this.user = userInfo;
- // 登录成功后提示用户可以继续提交
- uni.showToast({
- title: '登录成功,请继续提交',
- icon: 'success',
- duration: 1500
- });
- },
- // 登录弹窗关闭回调
- onLoginClose() {
- console.log('用户关闭了登录弹窗');
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- background-color: #f5f5f5;
- min-height: 100vh;
- }
- .form-container {
- padding: 20rpx;
- }
- .section {
- background-color: #fff;
- border-radius: 12rpx;
- margin-bottom: 20rpx;
- padding: 30rpx;
- }
- .section-title {
- font-size: 32rpx;
- font-weight: 600;
- color: #333;
- margin-bottom: 30rpx;
- display: flex;
- align-items: center;
- }
- .title-icon {
- width: 40rpx;
- height: 40rpx;
- margin-right: 15rpx;
- }
- .form-item {
- display: flex;
- align-items: center;
- margin-bottom: 30rpx;
- position: relative;
- &:last-child {
- margin-bottom: 0;
- }
- }
- .label {
- width: 160rpx;
- font-size: 28rpx;
- color: #666;
- flex-shrink: 0;
- }
- .input {
- flex: 1;
- height: 70rpx;
- padding: 0 20rpx;
- background-color: #f8f8f8;
- border-radius: 8rpx;
- font-size: 28rpx;
- color: #333;
- }
- .input-wrapper {
- flex: 1;
- height: 70rpx;
- padding: 0 20rpx;
- background-color: #f8f8f8;
- border-radius: 8rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .placeholder {
- color: #c0c4cc;
- font-size: 28rpx;
- }
- .select-wrapper {
- flex: 1;
- ::v-deep .uni-stat__select {
- width: 100%;
- }
- ::v-deep .uni-stat-box {
- width: 100%;
- }
- ::v-deep .uni-select {
- width: 100%;
- border: none;
- }
- ::v-deep .uni-select__input-box {
- height: 70rpx;
- padding: 0 20rpx;
- background-color: #f8f8f8;
- border-radius: 8rpx;
- border: none;
- }
- ::v-deep .uni-select__input-text {
- font-size: 28rpx;
- color: #333;
- }
- ::v-deep .uni-select__input-placeholder {
- color: #c0c4cc;
- }
- ::v-deep .uni-select__selector {
- max-height: 400rpx;
- }
- }
- .accompany-list {
- .accompany-item {
- position: relative;
- padding: 20rpx;
- background-color: #f8f8f8;
- border-radius: 8rpx;
- margin-bottom: 20rpx;
- &:last-child {
- margin-bottom: 0;
- }
- }
- }
- .delete-btn {
- position: absolute;
- top: 10rpx;
- right: 10rpx;
- width: 70rpx;
- height: 70rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #fff;
- border-radius: 50%;
- box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
- z-index: 10;
- cursor: pointer;
- &:active {
- opacity: 0.7;
- transform: scale(0.95);
- }
- }
- .add-accompany-btn {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 80rpx;
- background-color: #f8f9fa;
- border: 2rpx dashed #c0c4cc;
- border-radius: 8rpx;
- color: #909399;
- font-size: 28rpx;
- text {
- margin-left: 10rpx;
- }
- }
- .vehicle-header {
- display: flex;
- align-items: center;
- margin-bottom: 30rpx;
- .section-title {
- flex: 1;
- margin-bottom: 0;
- margin-left: 15rpx;
- }
- }
- .vehicle-content {
- padding-top: 20rpx;
- border-top: 1rpx solid #eee;
- }
- .submit-container {
- padding: 20rpx;
- background-color: #fff;
- margin-top: 20rpx;
- }
- .submit-btn {
- width: 100%;
- height: 88rpx;
- background: linear-gradient(135deg, #ff6b35 0%, #ff9500 100%);
- border-radius: 44rpx;
- border: none;
- color: #fff;
- font-size: 32rpx;
- font-weight: 600;
- }
- .picker-container {
- background-color: #fff;
- border-radius: 20rpx 20rpx 0 0;
- }
- .picker-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 30rpx;
- border-bottom: 1rpx solid #eee;
- text {
- color: #007aff;
- font-size: 28rpx;
- }
- }
- .picker-title {
- font-size: 32rpx;
- font-weight: 600;
- color: #333 !important;
- }
- .picker-view {
- height: 400rpx;
- }
- .picker-item {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 80rpx;
- font-size: 28rpx;
- color: #333;
- }
- // 提交成功弹框样式
- .success-popup {
- .popup-content {
- background-color: #fff;
- border-radius: 20rpx;
- padding: 60rpx 40rpx 40rpx;
- width: 560rpx;
- text-align: center;
- }
- .success-icon {
- margin-bottom: 30rpx;
- }
- .popup-title {
- font-size: 36rpx;
- font-weight: 600;
- color: #333;
- margin-bottom: 20rpx;
- }
- .popup-message {
- font-size: 28rpx;
- color: #666;
- line-height: 1.6;
- margin-bottom: 50rpx;
- }
- .popup-buttons {
- display: flex;
- gap: 20rpx;
- button {
- flex: 1;
- height: 80rpx;
- border-radius: 40rpx;
- font-size: 28rpx;
- border: none;
- }
- .cancel-btn {
- background-color: #f5f5f5;
- color: #666;
- }
- .follow-btn {
- background: linear-gradient(135deg, #ff6b35 0%, #ff9500 100%);
- color: #fff;
- }
- }
- }
- // 二维码弹框样式
- .qrcode-popup {
- .qrcode-content {
- background-color: #fff;
- border-radius: 20rpx;
- padding: 50rpx 40rpx;
- width: 560rpx;
- text-align: center;
- }
- .qrcode-title {
- font-size: 32rpx;
- font-weight: 600;
- color: #333;
- margin-bottom: 40rpx;
- }
- .qrcode-image {
- width: 400rpx;
- height: 400rpx;
- margin: 0 auto 30rpx;
- border: 1rpx solid #eee;
- border-radius: 12rpx;
- overflow: hidden;
- position: relative;
- image {
- width: 100%;
- height: 100%;
- }
- .preview-tip {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- height: 60rpx;
- background: rgba(0, 0, 0, 0.5);
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- font-size: 24rpx;
- text {
- margin-left: 10rpx;
- }
- }
- &:active {
- opacity: 0.8;
- }
- }
- .qrcode-tip {
- font-size: 26rpx;
- color: #999;
- margin-bottom: 40rpx;
- line-height: 1.5;
- }
- .qrcode-close-btn {
- width: 100%;
- height: 80rpx;
- background: linear-gradient(135deg, #ff6b35 0%, #ff9500 100%);
- border-radius: 40rpx;
- color: #fff;
- font-size: 28rpx;
- border: none;
- }
- }
- </style>
|