核心修复: - 状态机加 SELECT FOR UPDATE 行锁,消除并发竞态 - hss_md_staff 加 role 列,登录从数据库读取真实角色 - 申请重复校验排除自身,全流程 20 步闭环通过 - 派单 SQL 修复 + 支付状态机过渡 + 完成服务 plan_item_id 修复 并发控制新增: - RedisLockService (SET NX PX + Lua 安全解锁) - RateLimiterService (Redis 滑动窗口 + API 拦截器) - TransactionIsolationConfig (SERIALIZABLE for 支付回调) - MqttPublisher (异步队列 + JDK TCP 探测) - ObjectStorageService (AWS SigV4 预签名, 纯 JDK) 冗余清理: - 删除 6 个死代码文件 (~620 行) - hutool-all → JDK MessageDigest, 去 MapStruct, 去 jsr310 - haversine 提取到 GeoUtil, count/round 提取到 JdbcUtil - 创建 platform layout 组件 前端修复: - 登录页移除角色选择器, 由后端 JWT 返回 - 移除 ClientOnly 包裹, 页面正常渲染 - SPA fallback Nginx 配置修复 Docker: 运行时镜像 eclipse-temurin:17-jre-jammy (缩小 ~300MB) 文档: 新增系统实现与修复报告.md Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
57 lines
2.8 KiB
Vue
57 lines
2.8 KiB
Vue
<template>
|
|
<view class="page">
|
|
<view class="card"><text class="title">工单 #{{ workOrderId }}</text><text class="info">请在确认接单前查看服务详情</text></view>
|
|
<view class="actions">
|
|
<button @click="doAccept" :loading="loading" class="btn-accept">确认接单</button>
|
|
<button @click="showReject = true" class="btn-reject">拒单</button>
|
|
</view>
|
|
<view v-if="showReject" class="card">
|
|
<text class="label">拒单原因</text>
|
|
<textarea v-model="reason" placeholder="请填写拒单原因" class="textarea" />
|
|
<button @click="doReject" :loading="loading" class="btn-reject">确认拒单</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { apiPost } from '@/common/api.js';
|
|
|
|
export default {
|
|
data() { return { workOrderId: 0, loading: false, showReject: false, reason: '' }; },
|
|
onLoad(options) { this.workOrderId = parseInt(options.id) || 0; },
|
|
methods: {
|
|
async doAccept() {
|
|
this.loading = true;
|
|
try {
|
|
const res = await apiPost('/work-orders/' + this.workOrderId + '/accept');
|
|
if (res.data.code === 200) { uni.showToast({ title: '接单成功' }); setTimeout(() => uni.navigateBack(), 800); }
|
|
else { uni.showToast({ title: res.data.message, icon: 'none' }); }
|
|
} catch(e) { uni.showToast({ title: '网络错误', icon: 'none' }); }
|
|
this.loading = false;
|
|
},
|
|
async doReject() {
|
|
if (!this.reason.trim()) { uni.showToast({ title: '请填写拒单原因', icon: 'none' }); return; }
|
|
this.loading = true;
|
|
try {
|
|
const res = await apiPost('/work-orders/' + this.workOrderId + '/reject', { reason: this.reason });
|
|
if (res.data.code === 200) { uni.showToast({ title: '已拒单' }); setTimeout(() => uni.navigateBack(), 800); }
|
|
else { uni.showToast({ title: res.data.message, icon: 'none' }); }
|
|
} catch(e) { uni.showToast({ title: '网络错误', icon: 'none' }); }
|
|
this.loading = false;
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.page { padding: 24rpx; background: #F8F8F8; min-height: 100vh; }
|
|
.card { background: #fff; border-radius: 16rpx; padding: 32rpx; margin-bottom: 20rpx; }
|
|
.title { font-size: 34rpx; font-weight: 700; display: block; margin-bottom: 8rpx; }
|
|
.info { font-size: 26rpx; color: #999; }
|
|
.actions { display: flex; gap: 20rpx; margin-bottom: 20rpx; }
|
|
.btn-accept { flex: 1; background: #155EEF; color: #fff; border-radius: 12rpx; padding: 24rpx; font-size: 30rpx; font-weight: 600; }
|
|
.btn-reject { flex: 1; background: #fff; color: #FF4D4F; border: 1px solid #FF4D4F; border-radius: 12rpx; padding: 24rpx; font-size: 30rpx; }
|
|
.label { font-size: 26rpx; color: #666; display: block; margin-bottom: 12rpx; }
|
|
.textarea { width: 100%; height: 150rpx; border: 1px solid #ddd; border-radius: 12rpx; padding: 16rpx; font-size: 28rpx; }
|
|
</style>
|