This commit is contained in:
Leo_Ding 2025-08-06 18:12:54 +08:00
commit a411e94890
5 changed files with 1821 additions and 1642 deletions

View File

@ -96,7 +96,7 @@
<text class="card-desc">维修方便便捷</text>
<view class="card-bg"></view>
</view>
<image class="card-icon" src="/static/imgs/index/weixiu.png"></image>
<image class="card-icon" src="/static/imgs/index/weixiu.png" style="width: 80rpx;height: 80rpx;bottom: 32rpx;"></image>
</view>
<!-- <view class="service-card large card-3" @click="goDetail('neighborList')" hover-class="card-hover">
@ -522,13 +522,13 @@
&.card-2 {
.card-bg {
background: #ff7e7e;
top: -30rpx;
background: #5b9cf8;
top: -50rpx;
right: -30rpx;
}
.card-icon {
filter: drop-shadow(0 4rpx 8rpx rgba(255, 126, 126, 0.3));
filter: drop-shadow(0 4rpx 8rpx rgba(91, 156, 248, 0.3));
}
}

View File

@ -6,7 +6,7 @@
<view class="avatar-section">
<view class="avatar-wrapper">
<image class="avatar" :src="userInfo.avatarUrl || '/static/imgs/index/nav.png'"
mode="aspectFill"></image>
mode="aspectFill" @click="onAvatarClick"></image>
<view class="edit-icon" @click="handleEditClick">
<u-icon name="edit-pen" color="#fff" size="24"></u-icon>
</view>
@ -23,7 +23,6 @@
</view>
</view>
</view>
<!-- 功能按钮区域 -->
<view class="function-card">
<view class="button-item" v-for="(item, index) in choseList" :key="index" @click="goPage(item)">
@ -34,7 +33,6 @@
<u-icon name="arrow-right" color="#c8c9cc" size="28"></u-icon>
</view>
</view>
<!-- 修改用户信息弹窗 -->
<u-modal :show="showEditModal" :title="isLogin ? '修改用户信息' : '微信授权登录'" :show-confirm-button="isLogin"
:show-cancel-button="isLogin" @confirm="handleSubmit" @cancel="handleCancel" confirm-color="#2979ff"
@ -55,25 +53,33 @@
</button>
<view class="auth-tip">登录即表示同意用户协议隐私政策</view>
</view>
<!-- 已登录时显示编辑表单 -->
<view v-else class="edit-section">
<view class="form-item">
<text class="form-label">头像</text>
<u-upload :file-list="avatarList" :max-count="1" @afterRead="handleAvatarUpload"
@delete="handleAvatarDelete" width="160" height="160" preview-full-image>
<view slot="delete" class="custom-delete">
<u-icon name="close" color="#fff" size="24"></u-icon>
<view class="avatar-upload-container" @click="onAvatarClick">
<view class="avatar-preview">
<image
v-if="avatarList.length > 0"
:src="avatarList[0].url"
mode="aspectFill"
class="avatar-img">
</image>
<view v-else class="avatar-placeholder">
<u-icon name="plus" color="#c0c4cc" size="28"></u-icon>
<text class="placeholder-text">点击上传</text>
</view>
</u-upload>
<view class="upload-tip">点击上传建议尺寸1:1</view>
<view v-if="avatarList.length > 0" class="avatar-delete" @click.stop="handleAvatarDelete">
<u-icon name="close" color="#fff" size="26"></u-icon>
</view>
</view>
</view>
<view class="upload-tip">点击上传支持拍照或从相册选择</view>
</view>
<view class="form-item">
<text class="form-label">姓名</text>
<u-input v-model="formData.name" placeholder="请输入姓名" border="bottom" clearable></u-input>
</view>
<view class="form-item">
<text class="form-label">简介</text>
<u-input v-model="formData.bio" type="textarea" placeholder="请输入简介" :maxlength="200"
@ -84,7 +90,6 @@
</view>
</view>
</u-modal>
<u-modal
:show="showPhoneDialog"
title="联系社区"
@ -98,7 +103,6 @@
<text class="phone-number">{{communityPhone}}</text>
</view>
</u-modal>
<Footer></Footer>
</view>
</template>
@ -113,7 +117,6 @@
IMAGE_BASE_URL,
BASE_URL
} from '@/utils/config';
import { navigateTo } from '@/utils/router';
export default {
components: {
Footer
@ -179,6 +182,44 @@ import { navigateTo } from '@/utils/router';
this.initData();
},
methods: {
//
onAvatarClick() {
if (!this.isLogin) {
this.showEditModal = true;
return;
}
//
if (this.uploading) return;
//
uni.chooseImage({
count: 1, //
sizeType: ['original', 'compressed'], //
sourceType: ['album', 'camera'], //
success: (res) => {
//
const tempFilePaths = res.tempFilePaths;
if (tempFilePaths && tempFilePaths.length > 0) {
// filehandleAvatarUpload
const file = {
url: tempFilePaths[0]
};
//
this.handleAvatarUpload({ file });
}
},
fail: (err) => {
console.error('选择图片失败', err);
uni.showToast({
title: '选择图片失败',
icon: 'none'
});
}
});
},
// ...
handleCloseModal() {
this.showPhoneDialog = false;
},
@ -203,34 +244,28 @@ import { navigateTo } from '@/utils/router';
this.clearUserData();
}
},
//
updateUserInfo(data) {
// IMAGE_BASE_URL
const avatarUrl = data.avatar ? `${IMAGE_BASE_URL}${data.avatar}` : '/static/imgs/index/nav.png';
this.userInfo = {
nickName: data.name || data.nickName || '未命名用户',
avatarUrl: avatarUrl,
bio: data.introduce || data.bio || '这家伙很懒,什么都没有写~',
phone: data.phone || ''
};
//
this.displayAvatar = this.userInfo.avatarUrl;
this.formData = {
name: this.userInfo.nickName,
bio: this.userInfo.bio
};
if (this.userInfo.avatarUrl) {
this.avatarList = [{
url: this.userInfo.avatarUrl
}];
}
},
//
clearUserData() {
this.isLogin = false;
@ -247,20 +282,17 @@ import { navigateTo } from '@/utils/router';
uni.removeStorageSync('token');
uni.removeStorageSync('userInfo');
},
//
handleEditClick() {
if (!this.isLogin) {
this.showEditModal = true;
return;
}
//
this.formData = {
name: this.userInfo.nickName,
bio: this.userInfo.bio
};
if (this.userInfo.avatarUrl) {
this.avatarList = [{
url: this.userInfo.avatarUrl
@ -268,10 +300,8 @@ import { navigateTo } from '@/utils/router';
} else {
this.avatarList = [];
}
this.showEditModal = true;
},
//
onGetUserInfo(e) {
if (e.detail.userInfo) {
@ -286,13 +316,12 @@ import { navigateTo } from '@/utils/router';
this.showEditModal = false;
}
},
// code
wxLogin() {
uni.showLoading({
title: '登录中...'
});
this.showEditModal = false;
uni.login({
provider: 'weixin',
success: (loginRes) => {
@ -308,17 +337,14 @@ import { navigateTo } from '@/utils/router';
}
});
},
//
async sendLoginRequest(code) {
try {
const res = await post('/api/v1/apps/login/weixins', {
code: code
});
if (res.success) {
uni.setStorageSync('token', res.data.access_token);
if (!res.data.phone) {
this.showPhoneButton = true;
uni.showToast({
@ -340,7 +366,6 @@ import { navigateTo } from '@/utils/router';
console.error('登录接口错误:', err);
}
},
//
async getPhoneNumber(e) {
if (e.detail.errMsg !== "getPhoneNumber:ok") {
@ -350,16 +375,13 @@ import { navigateTo } from '@/utils/router';
});
return;
}
uni.showLoading({
title: '获取手机号中...'
});
try {
const res = await post('/api/v1/app_auth/weixin/bind_phone', {
code: e.detail.code
});
if (res.success) {
await this.loginComplete(res.data);
} else {
@ -374,7 +396,6 @@ import { navigateTo } from '@/utils/router';
console.error('绑定手机号失败:', err);
}
},
//
async loginComplete(data) {
try {
@ -385,7 +406,6 @@ import { navigateTo } from '@/utils/router';
uni.setStorageSync('userInfo', res.data);
this.updateUserInfo(res.data);
this.isLogin = true;
// this.showEditModal = false;
this.showPhoneButton = false;
uni.showToast({
title: '登录成功'
@ -401,21 +421,17 @@ import { navigateTo } from '@/utils/router';
console.error('登录完成处理失败:', err);
}
},
//
async handleAvatarUpload(event) {
if (!this.isLogin) {
this.showEditModal = true;
return;
}
const {
file
} = event;
if (!file || !file.url) return;
this.uploading = true;
try {
//
const fileInfo = await new Promise((resolve, reject) => {
@ -425,17 +441,13 @@ import { navigateTo } from '@/utils/router';
fail: reject
});
});
if (fileInfo.size > 3 * 1024 * 1024) {
throw new Error('图片大小不能超过2MB');
throw new Error('图片大小不能超过3MB');
}
//
const avatarUrl = await this.uploadAvatar(file.url);
//
await this.updateUserAvatar(avatarUrl);
uni.showToast({
title: '头像上传成功'
});
@ -449,7 +461,6 @@ import { navigateTo } from '@/utils/router';
this.uploading = false;
}
},
//
uploadAvatar(filePath) {
return new Promise((resolve, reject) => {
@ -478,7 +489,6 @@ import { navigateTo } from '@/utils/router';
});
});
},
//
async updateUserAvatar(avatarUrl) {
try {
@ -488,7 +498,6 @@ import { navigateTo } from '@/utils/router';
introduce: this.formData.bio,
name: this.formData.name
});
// 2.
const res = await get('/api/v1/app_auth/mine');
if (res && res.success) {
@ -503,29 +512,38 @@ import { navigateTo } from '@/utils/router';
throw err;
}
},
//
// -
handleAvatarDelete() {
uni.showModal({
title: '提示',
content: '确定要删除当前头像吗?',
confirmText: '删除',
cancelText: '取消',
success: (res) => {
if (res.confirm) {
this.avatarList = [];
this.displayAvatar = '/static/imgs/index/nav.png';
this.userInfo.avatarUrl = '';
uni.showToast({
title: '已删除',
icon: 'none'
});
}
}
});
},
//
async handleSubmit() {
if (!this.isLogin) return;
const {
name,
bio
} = this.formData;
console.log("====", this.avatarList)
let avatarUrl = this.avatarList.length > 0 ? this.avatarList[0].url : "";
let avatarUrl = this.avatarList.length > 0 ? this.avatarList[0].url : "";
if (avatarUrl && avatarUrl.includes(IMAGE_BASE_URL)) {
avatarUrl = avatarUrl.replace(IMAGE_BASE_URL, '');
}
if (!name) {
uni.showToast({
title: '请输入姓名',
@ -533,11 +551,9 @@ import { navigateTo } from '@/utils/router';
});
return;
}
uni.showLoading({
title: '提交中...'
});
try {
// 1.
await post('/api/v1/app_auth/bind', {
@ -545,7 +561,6 @@ import { navigateTo } from '@/utils/router';
introduce: bio,
name: name
});
// 2.
const res = await get('/api/v1/app_auth/mine');
if (res && res.success) {
@ -553,12 +568,10 @@ import { navigateTo } from '@/utils/router';
uni.setStorageSync('userInfo', res.data);
this.updateUserInfo(res.data);
this.showEditModal = false;
uni.hideLoading();
uni.showToast({
title: '修改成功'
});
} else {
throw new Error(res.message || '获取用户信息失败');
}
@ -571,13 +584,10 @@ import { navigateTo } from '@/utils/router';
console.error('修改失败:', err);
}
},
//
handleCancel() {
this.showEditModal = false;
},
//
//
goPage(item) {
if (item.key === 6) { //
@ -588,19 +598,16 @@ import { navigateTo } from '@/utils/router';
this.handleEditClick(); //
return;
}
// if (!this.checkLogin()) {
// this.showEditModal = true;
// return;
// }
if (!this.checkLogin()) {
this.showEditModal = true;
return;
}
if (item.pageUrl) {
navigateTo({
uni.navigateTo({
url: `/pages/${item.pageUrl}/index`
},false);
});
}
},
//
handleContactCommunity() {
if (!this.checkLogin()) {
@ -620,7 +627,6 @@ import { navigateTo } from '@/utils/router';
}
});
},
//
callCommunityPhone() {
uni.makePhoneCall({
@ -638,7 +644,6 @@ import { navigateTo } from '@/utils/router';
});
this.showPhoneDialog = false;
},
//
checkLogin() {
const token = uni.getStorageSync('token');
@ -663,29 +668,24 @@ import { navigateTo } from '@/utils/router';
box-sizing: border-box;
padding-bottom: 120rpx;
}
.user-info-card {
background: #fff;
border-radius: 16rpx;
padding: 40rpx 30rpx;
margin-bottom: 24rpx;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.04);
.user-info {
display: flex;
flex-direction: column;
align-items: center;
}
}
.avatar-section {
margin-bottom: 20rpx;
.avatar-wrapper {
position: relative;
width: 140rpx;
height: 140rpx;
.avatar {
width: 100%;
height: 100%;
@ -693,7 +693,6 @@ import { navigateTo } from '@/utils/router';
border: 4rpx solid #fff;
box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.1);
}
.edit-icon {
position: absolute;
right: 0;
@ -707,7 +706,6 @@ import { navigateTo } from '@/utils/router';
justify-content: center;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
}
.u-loading-icon {
position: absolute;
top: 0;
@ -723,79 +721,66 @@ import { navigateTo } from '@/utils/router';
}
}
}
.name-section {
width: 100%;
align-items: center;
text-align: center;
margin-bottom: 30rpx;
.name {
font-size: 36rpx;
font-weight: 600;
color: #333;
}
.phone {
color: #999;
font-size: 24rpx;
}
}
.description-card {
background: #f8f9fa;
border-radius: 12rpx;
padding: 24rpx;
width: 100%;
text-align: center;
.title {
font-size: 28rpx;
color: #666;
margin-bottom: 12rpx;
display: block;
}
.content {
font-size: 26rpx;
color: #999;
line-height: 1.5;
}
}
.function-card {
background: #fff;
border-radius: 16rpx;
padding: 0 30rpx;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.04);
.button-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 28rpx 0;
border-bottom: 1rpx solid #f2f3f5;
&:active {
background-color: #f8f8f8;
}
&:last-child {
border-bottom: none;
}
.button-content {
display: flex;
align-items: center;
flex: 1;
}
.icon {
width: 48rpx;
height: 48rpx;
margin-right: 24rpx;
}
.label {
font-size: 30rpx;
color: #333;
@ -803,21 +788,17 @@ import { navigateTo } from '@/utils/router';
}
}
}
.modal-content {
padding: 0 30rpx;
width: 90%;
margin: 0 auto;
max-height: 70vh;
overflow-y: auto;
/* 编辑表单区域 */
.edit-section {
padding: 20rpx 0;
.form-item {
margin-bottom: 40rpx;
.form-label {
display: block;
font-size: 28rpx;
@ -825,14 +806,12 @@ import { navigateTo } from '@/utils/router';
margin-bottom: 16rpx;
font-weight: 500;
}
.upload-tip {
font-size: 24rpx;
color: #999;
margin-top: 10rpx;
text-align: center;
}
.word-count {
text-align: right;
font-size: 24rpx;
@ -840,31 +819,13 @@ import { navigateTo } from '@/utils/router';
margin-top: 10rpx;
}
}
/* 自定义删除按钮样式 */
.custom-delete {
position: absolute;
top: -10rpx;
right: -10rpx;
width: 40rpx;
height: 40rpx;
background: #f56c6c;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.2);
}
}
/* 授权登录区域 */
.auth-section {
display: flex;
flex-direction: column;
align-items: center;
padding: 40rpx 0;
.auth-title {
font-size: 32rpx;
color: #333;
@ -872,7 +833,6 @@ import { navigateTo } from '@/utils/router';
text-align: center;
font-weight: 500;
}
.auth-button {
width: 100%;
height: 90rpx;
@ -887,20 +847,16 @@ import { navigateTo } from '@/utils/router';
justify-content: center;
position: relative;
box-shadow: 0 4rpx 12rpx rgba(7, 193, 96, 0.3);
&::after {
border: none;
}
&.phone-button {
background: #2979ff;
box-shadow: 0 4rpx 12rpx rgba(41, 121, 255, 0.3);
}
&:active {
opacity: 0.9;
}
.wechat-icon,
.phone-icon {
width: 40rpx;
@ -908,7 +864,6 @@ import { navigateTo } from '@/utils/router';
margin-right: 15rpx;
}
}
.auth-tip {
font-size: 24rpx;
color: #999;
@ -916,12 +871,10 @@ import { navigateTo } from '@/utils/router';
text-align: center;
}
}
.phone-dialog-content {
padding: 40rpx;
text-align: center;
font-size: 32rpx;
.phone-number {
font-weight: bold;
color: #2979ff;
@ -929,4 +882,61 @@ import { navigateTo } from '@/utils/router';
}
}
}
//
.avatar-upload-container {
width: 160rpx;
height: 160rpx;
margin: 0 auto;
position: relative;
border-radius: 8rpx;
overflow: hidden;
}
//
.avatar-preview {
width: 100%;
height: 100%;
position: relative;
border-radius: 8rpx;
overflow: hidden;
background-color: #f5f7fa;
display: flex;
align-items: center;
justify-content: center;
.avatar-img {
width: 100%;
height: 100%;
object-fit: cover;
}
.avatar-placeholder {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #c0c4cc;
.placeholder-text {
font-size: 24rpx;
margin-top: 10rpx;
}
}
.avatar-delete {
position: absolute;
top: -10rpx;
right: -10rpx;
width: 40rpx;
height: 40rpx;
background-color: #f56c6c;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.2);
}
}
</style>

View File

@ -42,7 +42,7 @@
<view class="date">{{ formatTime(order.createdAt,"YYYY-MM-DD") }}</view>
</view>
<view class="order-description">{{ order.title }}</view>
<button @click="handleAction(order)" class="order-action" v-if="order.status == 1 || order.status == 2 || order.status == 99">撤回</button>
<button @click.stop="handleAction(order, $event)" class="order-action" v-if="order.status == 1 || order.status == 2 || order.status == 99">撤回</button>
</view>
</view>
<!-- 空状态提示 -->
@ -73,7 +73,7 @@
<script>
// import Header from '@/components/header_common.vue';
import Footer from '@/components/footer_common.vue';
import { get, post } from '@/utils/request';
import { get, post,put } from '@/utils/request';
import { IMAGE_BASE_URL,BASE_URL } from '@/utils/config';
import { formatTime, formatRelativeTime } from '@/utils/timeFormat';
export default {
@ -116,7 +116,7 @@
2: '进行中',
3: '已完成',
99:'驳回',
98:'已删除'
98:'已撤回'
};
return statusMap[status] || '未知状态';
},
@ -153,20 +153,39 @@
uni.navigateTo({ url: '/pages/serviceTickets/index' });
},
//
handleAction(order) {
if (order.actionText === '撤回') {
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'
});
//
this.getWorkOrderList();
}
}
} catch (err) {
console.error('撤回工单失败:', err);
uni.showToast({
title: '撤回失败',
icon: 'none'
});
}
},

View File

@ -1,22 +1,5 @@
<template>
<view class="work-order-detail">
<!-- 图片区域 - 编辑状态下可修改 -->
<view class="image-area card">
<view class="img-container">
<image
class="work-order-img"
:src="!isEditing ? `${IMAGE_BASE_URL}${detailObj.images[0] || ''}` : workOrderImg"
mode="widthFix"
:lazy-load="true"
></image>
<view class="upload-btn" @click="uploadImage" v-if="isEditing">
<u-icon name="camera" size="28" color="#fff"></u-icon>
<text class="upload-text">更换图片</text>
</view>
</view>
</view>
<!-- 标题与日期 -->
<view class="title-area card">
<view class="title-wrap">
@ -31,7 +14,6 @@
<view class="content card">
<view class="label">
<view class="label-name">
<!-- <u-icon name="map-marker" size="24" color="#409EFF"></u-icon> -->
<text>工单地点</text>
</view>
<text v-if="!isEditing" style="font-weight: normal;" :class="{empty: !detailObj.address}">{{detailObj.address || '未填写'}}</text>
@ -39,7 +21,6 @@
</view>
<view class="label">
<view class="label-name">
<!-- <u-icon name="user" size="24" color="#409EFF"></u-icon> -->
<text>联系人</text>
</view>
<text v-if="!isEditing" style="font-weight: normal;" :class="{empty: !detailObj.concatName}">{{detailObj.concatName || '未填写'}}</text>
@ -47,7 +28,6 @@
</view>
<view class="label">
<view class="label-name">
<!-- <u-icon name="phone" size="24" color="#409EFF"></u-icon> -->
<text>联系电话</text>
</view>
<text v-if="!isEditing" style="font-weight: normal;" :class="{empty: !detailObj.customerPhone}">{{detailObj.customerPhone || '未填写'}}</text>
@ -55,7 +35,6 @@
</view>
<view class="label label-content">
<view class="label-name">
<!-- <u-icon name="file-text" size="24" color="#409EFF"></u-icon> -->
<text>工单内容</text>
</view>
<text v-if="!isEditing" style="font-weight: normal; white-space: pre-line;" :class="{empty: !detailObj.title}">{{detailObj.title || '未填写'}}</text>
@ -68,6 +47,65 @@
/>
</view>
</view>
<!-- 图片区域 - 支持多张展示和编辑 -->
<view class="image-area card">
<view class="img-container">
<!-- 非编辑状态显示服务器图片 -->
<scroll-view
class="image-scroll"
scroll-x="true"
v-if="!isEditing && detailObj.images && detailObj.images.length > 0"
>
<view class="image-list">
<image
class="work-order-img"
v-for="(img, index) in detailObj.images"
:key="index"
:src="`${IMAGE_BASE_URL}${img}`"
mode="aspectFill"
lazy-load="true"
@click="previewImage(index)"
></image>
</view>
</scroll-view>
<!-- 编辑状态显示本地选择的图片 -->
<scroll-view
class="image-scroll"
scroll-x="true"
v-if="isEditing && localImages.length > 0"
>
<view class="image-list">
<view class="image-item" v-for="(img, index) in localImages" :key="index">
<image
class="work-order-img"
:src="img"
mode="aspectFill"
lazy-load="true"
></image>
<view class="delete-btn" @click="removeImage(index)">
<u-icon name="close" size="20" color="#fff"></u-icon>
</view>
</view>
</view>
</scroll-view>
<!-- 没有图片时的占位 -->
<view class="empty-placeholder" v-if="(!detailObj.images || detailObj.images.length === 0) && !isEditing">
<u-icon name="photo" size="48" color="#c0c4cc"></u-icon>
<text class="empty-text">暂无图片</text>
</view>
<!-- 编辑状态的上传按钮 -->
<view class="upload-btn-container" v-if="isEditing">
<view class="upload-btn" @click="uploadImage">
<u-icon name="camera" size="28" color="#fff"></u-icon>
<text class="upload-text">{{ localImages.length > 0 ? '添加更多' : '上传图片' }}</text>
</view>
<text class="upload-tip" v-if="localImages.length > 0">最多可上传9张</text>
</view>
</view>
</view>
<!-- 操作按钮 -->
<view class="btn-group">
@ -105,44 +143,85 @@
formatTime,
isEditing: false, //
isLoading: false, //
workOrderImg: '', //
localImages: [], //
//
editLabel: '',
editAddress: '',
editTitle: '',
editContactName: '', //
editContactPhone: '', //
editContactName: '',
editContactPhone: '',
detailObj: {},
tempImagePath: '' //
tempImagePaths: [] //
};
},
mounted() {
let obj = uni.getStorageSync("Detail");
this.detailObj = {...obj};
this.workOrderImg = `${IMAGE_BASE_URL}${this.detailObj.images[0]}`;
//
if (this.detailObj.images && this.detailObj.images.length > 0) {
this.localImages = this.detailObj.images.map(img => `${IMAGE_BASE_URL}${img}`);
}
//
this.editContactName = this.detailObj.concatName || '';
this.editContactPhone = this.detailObj.customerPhone || '';
},
methods: {
//
uploadImage() {
uni.chooseImage({
count: 1,
success: async (res) => {
const tempFilePaths = res.tempFilePaths[0];
this.tempImagePath = tempFilePaths;
this.workOrderImg = tempFilePaths;
uni.showToast({
title: '图片已更换',
icon: 'success'
//
previewImage(index) {
uni.previewImage({
current: index,
urls: this.detailObj.images.map(img => `${IMAGE_BASE_URL}${img}`)
});
},
//
uploadImage() {
const maxCount = 9 - this.localImages.length;
if (maxCount <= 0) {
uni.showToast({
title: '最多只能上传9张图片',
icon: 'none'
});
return;
}
uni.chooseImage({
count: maxCount,
sizeType: ['original', 'compressed'],
sourceType: ['album', 'camera'],
success: (res) => {
this.tempImagePaths = [...this.tempImagePaths, ...res.tempFilePaths];
this.localImages = [...this.localImages, ...res.tempFilePaths];
}
});
},
//
removeImage(index) {
this.localImages.splice(index, 1);
// tempImagePaths
if (index >= this.localImages.length - this.tempImagePaths.length) {
this.tempImagePaths.splice(index - (this.localImages.length - this.tempImagePaths.length), 1);
}
},
//
async uploadImageToServer(filePath) {
async uploadImagesToServer() {
const uploadedPaths = [];
for (const filePath of this.tempImagePaths) {
try {
const path = await this.uploadSingleImage(filePath);
uploadedPaths.push(path);
} catch (error) {
console.error('图片上传失败:', error);
throw error;
}
}
return uploadedPaths;
},
//
uploadSingleImage(filePath) {
return new Promise((resolve, reject) => {
uni.uploadFile({
url: `${BASE_URL}/api/v1/upload`,
@ -155,7 +234,7 @@
try {
const res = JSON.parse(uploadRes.data);
if (res && res.success) {
resolve(res.data); //
resolve(res.data);
} else {
reject(new Error(res.message || '上传失败'));
}
@ -188,9 +267,16 @@
let images = this.detailObj.images;
//
if (this.tempImagePath) {
const uploadedPath = await this.uploadImageToServer(this.tempImagePath);
images = [uploadedPath]; //
if (this.tempImagePaths.length > 0) {
const uploadedPaths = await this.uploadImagesToServer();
//
const originalPaths = this.localImages
.filter(img => img.startsWith(IMAGE_BASE_URL))
.map(img => img.replace(IMAGE_BASE_URL, ''));
images = [...originalPaths, ...uploadedPaths];
} else if (this.localImages.length === 0) {
//
images = [];
}
const requestData = {
@ -199,8 +285,8 @@
title: this.editTitle,
images: images,
status: 1,
concatName: this.editContactName, //
customerPhone: this.editContactPhone //
concatName: this.editContactName,
customerPhone: this.editContactPhone
};
const res = await put(`/api/v1/app_auth/work-order/${this.detailObj.id}`, requestData);
@ -218,7 +304,7 @@
});
this.isEditing = false;
this.tempImagePath = ''; //
this.tempImagePaths = []; //
} else {
uni.showToast({
title: res.message || '修改失败',
@ -240,9 +326,14 @@
// /
async handleWithdraw() {
if (this.isEditing) {
//
//
this.isEditing = false;
this.tempImagePath = '';
this.tempImagePaths = [];
if (this.detailObj.images && this.detailObj.images.length > 0) {
this.localImages = this.detailObj.images.map(img => `${IMAGE_BASE_URL}${img}`);
} else {
this.localImages = [];
}
return;
}
@ -267,7 +358,7 @@
<style lang="scss" scoped>
/* 基础变量优化 */
$primary-color: #409EFF; //
$primary-color: #409EFF;
$success-color: #67C23A;
$warning-color: #F56C6C;
$text-color: #303133;
@ -299,87 +390,6 @@
}
}
/* 页面容器 */
.work-order-detail {
background-color: $bg-color;
min-height: 100vh;
padding: 0 30rpx 40rpx;
}
/* 导航栏 */
.navbar {
@include flex-center;
height: 100rpx;
width: 100%;
padding: 0 10rpx;
background: $card-bg;
border-bottom: 1px solid $border-color;
position: sticky;
top: 0;
z-index: 10;
margin-bottom: 24rpx;
.nav-title {
font-size: 36rpx;
color: $text-color;
font-weight: 500;
flex: 1;
text-align: center;
margin-left: -36rpx; //
}
}
/* 头部用户信息 */
.header {
@include card;
display: flex;
align-items: center;
padding: 24rpx 30rpx;
.avatar {
width: 100rpx;
height: 100rpx;
border-radius: 50%;
background-color: $bg-color;
border: 2rpx solid #F0F2F5;
}
.user-info {
margin-left: 24rpx;
flex: 1;
}
.user-name-wrap {
@include flex-center;
margin-bottom: 8rpx;
}
.username {
font-size: 34rpx;
color: $text-color;
font-weight: 500;
}
.status-tag {
margin-left: 12rpx;
height: 40rpx;
line-height: 40rpx;
}
.contact-info {
@include flex-center;
font-size: 28rpx;
}
.info-icon {
margin-right: 6rpx;
}
.user-phone {
color: $subtext-color;
}
}
/* 图片区域优化 */
.image-area {
@include card;
@ -391,37 +401,76 @@
border-radius: 8rpx;
overflow: hidden;
background-color: $bg-color;
min-height: 200rpx;
}
.image-scroll {
width: 100%;
white-space: nowrap;
}
.image-list {
display: inline-flex;
gap: 16rpx;
}
.image-item {
position: relative;
width: 200rpx;
height: 200rpx;
border-radius: 8rpx;
overflow: hidden;
}
.work-order-img {
width: 100%;
width: 200rpx;
height: 200rpx;
border-radius: 8rpx;
transition: $transition;
//
&:empty {
height: 300rpx;
background-color: $bg-color;
display: flex;
align-items: center;
justify-content: center;
color: $light-text;
}
.delete-btn {
position: absolute;
right: 8rpx;
top: 8rpx;
width: 36rpx;
height: 36rpx;
background: rgba(0, 0, 0, 0.5);
border-radius: 50%;
@include flex-center;
justify-content: center;
}
.empty-placeholder {
width: 100%;
height: 300rpx;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #f5f7fa;
border-radius: 8rpx;
.empty-text {
margin-top: 16rpx;
font-size: 28rpx;
color: #909399;
}
}
.upload-btn-container {
margin-top: 20rpx;
display: flex;
flex-direction: column;
align-items: center;
gap: 10rpx;
}
.upload-btn {
position: absolute;
right: 16rpx;
bottom: 16rpx;
background: rgba(0, 0, 0, 0.5);
padding: 8rpx 16rpx;
background: $primary-color;
padding: 12rpx 24rpx;
border-radius: 24rpx;
@include flex-center;
transition: $transition;
cursor: pointer;
&:hover {
background: rgba(0, 0, 0, 0.7);
}
.upload-text {
color: #fff;
@ -429,9 +478,20 @@
margin-left: 6rpx;
}
}
.upload-tip {
font-size: 24rpx;
color: $light-text;
}
}
/* 其他样式保持不变 */
.work-order-detail {
background-color: $bg-color;
min-height: 100vh;
padding: 0 30rpx 40rpx;
}
/* 标题区域优化 */
.title-area {
@include card;
display: flex;
@ -443,11 +503,6 @@
width: 100%;
}
.title-icon {
margin-right: 12rpx;
flex-shrink: 0;
}
.title {
font-size: 34rpx;
color: $text-color;
@ -461,17 +516,12 @@
padding-top: 4rpx;
}
.date-icon {
margin-right: 6rpx;
}
.date {
font-size: 26rpx;
color: $light-text;
}
}
/* 内容区域优化 */
.content {
@include card;
@ -498,10 +548,6 @@
flex-shrink: 0;
}
.label-name u-icon {
margin-right: 8rpx;
}
& > text {
font-size: 28rpx;
color: $text-color;
@ -549,7 +595,6 @@
}
}
/* 按钮区域优化 */
.btn-group {
display: flex;
gap: 24rpx;
@ -574,28 +619,4 @@
}
}
}
/* 适配小屏幕 */
@media (max-width: 375px) {
$font-base: 28rpx;
.header {
padding: 18rpx;
.avatar {
width: 80rpx;
height: 80rpx;
}
}
.btn-group {
padding: 20rpx 5rpx;
.action-btn {
height: 80rpx;
line-height: 80rpx;
font-size: 28rpx;
}
}
}
</style>

View File

@ -11,11 +11,7 @@
<u-icon name="arrow-down" color="#999" size="30"></u-icon>
</view>
</view>
<u-picker
:show="showTypeSelect"
:columns="areaList"
keyName="title"
@confirm="handleTypeConfirm"
<u-picker :show="showTypeSelect" :columns="areaList" keyName="title" @confirm="handleTypeConfirm"
@cancel="showTypeSelect = false">
</u-picker>
</view>
@ -35,7 +31,6 @@
</u-picker>
</view>
<view class="form-item">
<view class="label">
<u-icon name="order" color="#3B8CFF" size="38"></u-icon>
@ -65,21 +60,29 @@
</view>
</view>
<!-- 上传照片/视频 -->
<!-- 上传照片/视频 - 完全重写的上传组件 -->
<view class="form-item">
<view class="label">
<u-icon name="photo" color="#3B8CFF" size="38"></u-icon>
上传照片/视频
</view>
<view class="upload-area">
<u-upload :fileList="fileList" @afterRead="handleAfterRead" @delete="handleDelete" :maxCount="8"
width="160" height="160" accept="image/*,video/*" :previewFullImage="true">
</u-upload>
<view class="upload-list">
<view class="upload-item" v-for="(item, index) in fileList" :key="index">
<image v-if="!item.isVideo" :src="item.url" mode="aspectFill" @click="previewImage(index)"></image>
<video v-else :src="item.url" controls></video>
<view class="delete-btn" @click="handleDelete(index)">
<u-icon name="close" color="#fff" size="24"></u-icon>
</view>
</view>
<view class="upload-btn" @click="showUploadAction" v-if="fileList.length < 8">
<u-icon name="plus" size="40" color="#c0c4cc"></u-icon>
</view>
</view>
</view>
<text class="note">照片可识别工单内容支持分批上传但最大数量为8</text>
</view>
<!-- 工单地点 -->
<view class="form-item">
<view class="label">
@ -95,42 +98,52 @@
</view>
</view>
<Footer></Footer>
<!-- 上传操作菜单 -->
<u-action-sheet
:list="actionList"
v-model="showActionSheet"
@click="handleActionClick"
></u-action-sheet>
</view>
</template>
<script>
import Footer from '@/components/footer_common.vue';
import {
get,
post
} from '@/utils/request';
import {
IMAGE_BASE_URL,
BASE_URL
} from '@/utils/config';
export default {
import Footer from '@/components/footer_common.vue';
import { get, post } from '@/utils/request';
import { IMAGE_BASE_URL, BASE_URL } from '@/utils/config';
import uActionSheet from 'uview-ui/components/u-action-sheet/u-action-sheet';
export default {
components: {
Footer
Footer,uActionSheet
},
data() {
return {
workOrderContent: '',
concatName: '', //
customerPhone: '', //
concatName: '',
customerPhone: '',
fileList: [],
workOrderCategory: '',
workOrderCategoryID: '',
workOrderArea:'',
workOrderAreaID:'',
workOrderArea: '',
workOrderAreaID: '',
showSelect: false,
showTypeSelect:false,
showTypeSelect: false,
categoryList: [],
workOrderLocation: '',
expectedTime: '',
uploadedImages: [],
uploadedVideos: [],
videoFormats: ['mp4', 'mov', 'avi', 'wmv', 'mpeg', '3gp', 'flv', 'mkv'],
areaList:[],
areaList: [],
//
showActionSheet: false,
actionList: [
{ text: '拍照', value: 'camera' },
{ text: '从相册选择', value: 'album' }
]
};
},
mounted() {
@ -138,129 +151,206 @@
this.getOrderTypeList();
},
methods: {
handleBack() {
uni.navigateBack({
delta: 1
//
showUploadAction() {
uni.showActionSheet({
itemList: ['拍照', '从相册选择'],
success: (res) => {
if (res.tapIndex === 0) {
this.chooseMedia('camera');
} else {
this.chooseMedia('album');
}
}
});
},
//
handleAfterRead(event) {
const {
file
} = event;
let files = [].concat(file);
//
handleActionClick(index) {
const action = this.actionList[index].value;
if (action === 'camera') {
this.chooseMedia('camera');
} else {
this.chooseMedia('album');
}
},
if (this.fileList.length + files.length > 8) {
uni.showToast({
title: '最多只能上传8个文件',
icon: 'none'
//
async chooseMedia(sourceType) {
try {
// 1.
const res = await new Promise((resolve, reject) => {
uni.chooseImage({
count: 8 - this.fileList.length,
sourceType: [sourceType === 'camera' ? 'camera' : 'album'],
success: resolve,
fail: reject
});
return;
});
// 2.
const newFiles = res.tempFilePaths.map(url => ({
url,
isVideo: false,
status: 'uploading'
}));
this.fileList = [...this.fileList, ...newFiles];
// 3.
for (const file of newFiles) {
await this.uploadFile(file);
}
files.forEach(item => {
const extension = this.getFileExtension(item.url);
const isVideo = this.videoFormats.includes(extension.toLowerCase());
} catch (err) {
console.error('选择图片失败:', err);
uni.showToast({ title: '选择图片失败', icon: 'none' });
}
},
_chooseMedia(sourceType) {
uni.chooseMedia({
count: 8 - this.fileList.length,
mediaType: ['image', 'video'],
sourceType: [sourceType],
success: async (res) => {
//
const newFiles = res.tempFiles.map(file => ({
url: file.tempFilePath,
isVideo: file.fileType === 'video',
status: 'uploading' //
}));
this.fileList = [...this.fileList, ...newFiles];
this.fileList.push({
...item,
status: 'uploading',
message: '上传中...',
isVideo: isVideo
});
this.uploadFile(item, isVideo);
//
for (const file of newFiles) {
await this.uploadFile(file); //
}
}
});
},
getFileExtension(filename) {
return filename.split('.').pop().split('?')[0];
},
handleDelete(event) {
const {
index
} = event;
const file = this.fileList[index];
//
uploadFiles(files) {
files.forEach(file => {
this.uploadFile(file).then(res => {
const index = this.fileList.findIndex(item => item.url === file.url);
if (index !== -1) {
this.$set(this.fileList, index, {
...file,
status: 'success',
serverUrl: res
});
if (file.isVideo) {
const videoIndex = this.uploadedVideos.indexOf(file.url);
this.uploadedVideos.push(res.replace(BASE_URL, ''));
} else {
this.uploadedImages.push(res.replace(BASE_URL, ''));
}
}
}).catch(err => {
const index = this.fileList.findIndex(item => item.url === file.url);
if (index !== -1) {
this.$set(this.fileList, index, {
...file,
status: 'failed'
});
}
console.error('上传失败:', err);
});
});
},
//
async uploadFile(file) {
try {
const res = await new Promise((resolve, reject) => {
uni.uploadFile({
url: `${BASE_URL}/api/v1/upload`,
filePath: file.url,
name: 'file',
header: {
'Authorization': `Bearer ${uni.getStorageSync('token')}`,
'Content-Type': 'multipart/form-data'
},
success: (uploadRes) => {
try {
const data = JSON.parse(uploadRes.data);
if (data.success) {
resolve(data.data); // 使URL
} else {
reject(data.message || '上传失败');
}
} catch (e) {
reject('解析响应失败');
}
},
fail: (err) => reject(err)
});
});
//
const index = this.fileList.findIndex(f => f.url === file.url);
if (index !== -1) {
this.$set(this.fileList, index, {
...file,
status: 'success',
serverUrl: res // URL
});
//
if (file.isVideo) {
this.uploadedVideos.push(res);
} else {
this.uploadedImages.push(res);
}
}
} catch (err) {
console.error('上传失败:', err);
const index = this.fileList.findIndex(f => f.url === file.url);
if (index !== -1) {
this.$set(this.fileList, index, {
...file,
status: 'failed',
error: err.message || err
});
}
uni.showToast({
title: `上传失败: ${err.message || err}`,
icon: 'none'
});
}
},
//
previewImage(index) {
const images = this.fileList
.filter(item => !item.isVideo)
.map(item => item.url);
uni.previewImage({
current: index,
urls: images
});
},
//
handleDelete(index) {
const file = this.fileList[index];
if (file.serverUrl) {
if (file.isVideo) {
const videoIndex = this.uploadedVideos.indexOf(file.serverUrl.replace(BASE_URL, ''));
if (videoIndex !== -1) this.uploadedVideos.splice(videoIndex, 1);
} else {
const imageIndex = this.uploadedImages.indexOf(file.url);
const imageIndex = this.uploadedImages.indexOf(file.serverUrl.replace(BASE_URL, ''));
if (imageIndex !== -1) this.uploadedImages.splice(imageIndex, 1);
}
}
this.fileList.splice(index, 1);
},
async uploadFile(file, isVideo) {
try {
const fullUrl = await this.uploadAvatar(file.url);
const relativePath = fullUrl.replace(BASE_URL, '');
const fileIndex = this.fileList.findIndex(item => item.url === file.url);
if (fileIndex !== -1) {
this.fileList[fileIndex] = {
...this.fileList[fileIndex],
status: 'success',
message: '上传成功',
url: fullUrl,
relativeUrl: relativePath,
isVideo: isVideo
};
if (isVideo) {
this.uploadedVideos.push(relativePath);
} else {
this.uploadedImages.push(relativePath);
}
}
} catch (error) {
const fileIndex = this.fileList.findIndex(item => item.url === file.url);
if (fileIndex !== -1) {
this.fileList[fileIndex] = {
...this.fileList[fileIndex],
status: 'failed',
message: '上传失败'
};
}
uni.showToast({
title: `${isVideo ? '视频' : '图片'}上传失败: ${error.message}`,
icon: 'none'
});
}
},
uploadAvatar(filePath) {
return new Promise((resolve, reject) => {
uni.uploadFile({
url: `${BASE_URL}/api/v1/upload`,
filePath: filePath,
name: 'file',
header: {
'Authorization': `Bearer ${uni.getStorageSync('token')}`
},
success: (uploadRes) => {
try {
const res = JSON.parse(uploadRes.data);
if (res && res.success) {
resolve(`${IMAGE_BASE_URL}${res.data}`);
} else {
reject(new Error(res.message || '上传失败'));
}
} catch (e) {
reject(new Error('解析响应失败'));
}
},
fail: (err) => {
reject(new Error('上传失败: ' + JSON.stringify(err)));
}
});
});
},
// ...
async handleSubmit() {
if (!this.workOrderContent) {
uni.showToast({
@ -304,10 +394,10 @@
const submitData = {
title: this.workOrderContent,
concatName: this.concatName, //
customerPhone: this.customerPhone, //
concatName: this.concatName,
customerPhone: this.customerPhone,
orderTypeId: this.workOrderCategoryID,
orderAreaId:this.workOrderAreaID,
orderAreaId: this.workOrderAreaID,
address: this.workOrderLocation,
images: this.uploadedImages,
videos: this.uploadedVideos,
@ -315,7 +405,6 @@
console.log('提交数据:', submitData);
// API
const res = await post('/api/v1/app_auth/work-order', submitData);
uni.hideLoading();
@ -327,11 +416,11 @@
duration: 2000
});
this.resetForm();
setTimeout(()=>{
setTimeout(() => {
uni.navigateTo({
url: `/pages/myTickets/index`,
});
},1000)
}, 1000)
} else {
uni.showToast({
title: res?.message || '提交失败',
@ -387,8 +476,7 @@
}
},
//
async getOrderTypeList(){
async getOrderTypeList() {
try {
const res = await get('/api/v1/apps/work-order-area');
if (res?.success) {
@ -405,11 +493,11 @@
}
}
}
};
};
</script>
<style lang="scss" scoped>
.container {
.container {
width: 100%;
min-height: 100vh;
background: #f5f7fa;
@ -467,6 +555,47 @@
.upload-area {
margin-top: 16rpx;
.upload-list {
display: flex;
flex-wrap: wrap;
margin: -5rpx;
.upload-item, .upload-btn {
width: 160rpx;
height: 160rpx;
margin: 5rpx;
position: relative;
background: #f8f8f8;
border-radius: 8rpx;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
image, video {
width: 100%;
height: 100%;
}
.delete-btn {
position: absolute;
right: 0;
top: 0;
width: 40rpx;
height: 40rpx;
background: rgba(0, 0, 0, 0.5);
border-radius: 0 0 0 8rpx;
display: flex;
justify-content: center;
align-items: center;
}
}
.upload-btn {
border: 1rpx dashed #c0c4cc;
}
}
}
.note {
@ -512,5 +641,5 @@
}
}
}
}
}
</style>