Files
jg_app/src/pages/violationAlerts/detail.vue

580 lines
12 KiB
Vue
Raw Normal View History

2026-04-10 17:10:36 +08:00
<template>
<div class="violation-detail-page">
<!-- 顶部导航栏 -->
<div class="nav-bar">
<van-icon name="arrow-left" class="nav-back" @click="goBack" />
<h1 class="nav-title">违章详情</h1>
<div class="nav-placeholder"></div>
</div>
2026-04-17 17:59:39 +08:00
<!-- 加载状态 -->
<van-loading v-if="loading" class="loading-state" color="#2563eb">加载中...</van-loading>
<template v-else>
<!-- 违章信息卡片 -->
<div class="detail-card">
<!-- 车牌号和状态 -->
<div class="card-header">
<div class="vehicle-info">
<van-icon name="cart" class="vehicle-icon" />
<span class="plate-number">{{ violationDetail.plateNo }}</span>
<span class="plate-color">{{ violationDetail.plateColor }}</span>
<span class="separator">|</span>
<span class="vehicle-type">{{ violationDetail.vehicleType }}</span>
</div>
<span class="status-tag" :class="getStatusClass(allDetail.taskStatus)">
{{ statusMap[allDetail.taskStatus] }}
</span>
2026-04-10 17:10:36 +08:00
</div>
2026-04-17 17:59:39 +08:00
<!-- 等级和标题 -->
<div class="title-row">
<span class="level-tag" :class="getLevelClass(violationDetail.eventLevel)">
{{ levelMap[violationDetail.eventLevel] }}
</span>
<span class="alert-title">{{ violationDetail.eventContent }}</span>
2026-04-10 17:10:36 +08:00
</div>
2026-04-17 17:59:39 +08:00
<!-- 图片 -->
<div class="card-image" v-if="violationDetail.imgUrl">
<van-image :src="violationDetail.imgUrl" fit="cover" class="alert-img" />
</div>
2026-04-10 17:10:36 +08:00
2026-04-17 17:59:39 +08:00
<!-- 检测信息 -->
<div class="card-details">
<div class="detail-item">
<van-icon name="location" class="detail-icon" />
<span class="label">检测点位</span>
<span class="value">{{ violationDetail.siteName }}</span>
</div>
<div class="detail-item">
<van-icon name="clock" class="detail-icon" />
<span class="label">检测时间</span>
<span class="value">{{ violationDetail.eventTime }}</span>
</div>
</div>
2026-04-10 17:10:36 +08:00
</div>
2026-04-17 17:59:39 +08:00
<!-- 打卡情况 - 执行中和已完成状态显示 -->
<div v-if="allDetail.taskStatus == '1' || allDetail.taskStatus == '2'" class="checkin-card">
<div class="checkin-time-row">
<span class="checkin-date">{{allDetail.clickTime}}</span>
<span class="checkin-type">定位打卡</span>
</div>
2026-04-10 17:10:36 +08:00
2026-04-17 17:59:39 +08:00
<div class="checkin-row">
<span class="checkin-label">打卡账号</span>
<span class="checkin-value">21515800</span>
</div>
2026-04-10 17:10:36 +08:00
2026-04-17 17:59:39 +08:00
<div class="checkin-row checkin-location">
<van-icon name="location" class="location-icon" />
<span>{{allDetail.clickAddress}}</span>
</div>
2026-04-10 17:10:36 +08:00
2026-04-17 17:59:39 +08:00
<!-- 未拦截成功标识 -->
<div v-if="violationId !== '1' && violationId !== '3' && allDetail.taskStatus === '1'" class="intercept-status">
<span v-if="violationId === '6'" class="result-btn" @click="goToResult">
处罚结果
</span>
<span v-else class="fail-tag">未拦截成功</span>
</div>
2026-04-10 17:10:36 +08:00
</div>
2026-04-17 17:59:39 +08:00
<!-- 底部按钮 - 未执行状态 -->
<div v-if="allDetail.taskStatus == '0'" class="action-bar">
<van-button block round type="primary" class="action-btn" @click="handleCheckIn">
定位打卡
</van-button>
2026-04-10 17:10:36 +08:00
</div>
2026-04-17 17:59:39 +08:00
<!-- 底部按钮 - 执行中状态 -->
<div v-if="allDetail.taskStatus == '1'" class="action-bar">
<van-button block round type="primary" class="action-btn" @click="showResultDialog">
执行结果
</van-button>
2026-04-10 17:10:36 +08:00
</div>
2026-04-17 17:59:39 +08:00
</template>
2026-04-10 17:10:36 +08:00
<!-- 执行结果弹框 -->
<van-popup v-model:show="showMatchDialog" round class="result-popup">
<div class="popup-content">
<h2 class="popup-title">执行结果</h2>
<div class="popup-buttons">
<van-button block round class="popup-btn success" @click="handlePlateMatch(true)">
<van-icon name="checked" class="btn-icon" />
处罚上报
</van-button>
<van-button block round class="popup-btn error" @click="handlePlateMatch(false)">
<van-icon name="cross" class="btn-icon" />
未拦截成功
</van-button>
</div>
</div>
</van-popup>
</div>
</template>
<script setup>
2026-04-17 17:59:39 +08:00
import { ref, computed, onMounted } from "vue";
2026-04-10 17:10:36 +08:00
import { useRouter, useRoute } from "vue-router";
2026-04-17 17:59:39 +08:00
import { getTrafficEventDetail, interceptNotSuccess } from "@/api/traffic";
import { ImagePreview } from 'vant';
2026-04-10 17:10:36 +08:00
const router = useRouter();
const route = useRoute();
// 获取URL参数
const violationId = route.query.id || "1";
const status = route.query.status || "未执行";
2026-04-17 17:59:39 +08:00
// 加载状态
const loading = ref(false);
2026-04-10 17:10:36 +08:00
// 执行结果弹框状态
const showMatchDialog = ref(false);
2026-04-17 17:59:39 +08:00
// 状态映射
const statusMap = {
0: "待执行",
1: "执行中",
2: "已完成",
};
// 等级映射
const levelMap = {
0: "一级",
1: "二级",
2: "三级",
3: "四级"
};
2026-04-10 17:10:36 +08:00
// 根据ID获取详情
2026-04-17 17:59:39 +08:00
const violationDetail = ref({})
const allDetail = ref({})
const taskDetail = ref({})
// 获取详情数据
const fetchDetail = async () => {
if (!violationId) return;
loading.value = true;
try {
const res = await getTrafficEventDetail(violationId);
if (res) {
const data = res.data || res;
// 处理详情数据
violationDetail.value = data.eventDetailVO;
taskDetail.value = data.eventDetailVO.tasksVo;
allDetail.value = data
}
} catch (error) {
console.error("获取详情失败:", error);
} finally {
loading.value = false;
}
};
2026-04-10 17:10:36 +08:00
// 状态标签样式
const statusTagClass = computed(() => {
if (status === "执行中") return "status-blue";
if (status === "已完成") return "status-green";
return "status-gray";
});
2026-04-17 17:59:39 +08:00
// 等级样式
function getLevelClass(level) {
const map = {
1: "level-red",
2: "level-orange",
3: "level-yellow",
4: "level-blue",
};
return map[level] || "level-blue";
}
// 状态样式
function getStatusClass(status) {
const map = {
0: "status-gray",
1: "status-blue",
2: "status-green",
};
return map[status] || "status-gray";
}
2026-04-10 17:10:36 +08:00
// 返回
function goBack() {
router.back();
}
// 定位打卡
function handleCheckIn() {
router.push({
path: "/checkInPage",
query: { id: violationId }
});
}
// 显示执行结果弹框
function showResultDialog() {
showMatchDialog.value = true;
}
// 前往处罚结果
function goToResult() {
router.push({
path: "/dataReport",
query: { id: violationId, status: status }
});
}
// 处理车牌匹配结果
function handlePlateMatch(matched) {
showMatchDialog.value = false;
if (matched) {
router.push({
path: "/dataReport",
query: { id: violationId, status: status }
});
2026-04-17 17:59:39 +08:00
} else {
// 未拦截成功
interceptNotSuccess(violationId).then(() => {
router.back();
});
2026-04-10 17:10:36 +08:00
}
}
2026-04-17 17:59:39 +08:00
// 页面初始化
onMounted(() => {
fetchDetail();
});
2026-04-10 17:10:36 +08:00
</script>
<style lang="scss" scoped>
.violation-detail-page {
min-height: 100vh;
background: #f1f5f9;
padding-bottom: 100px;
}
.nav-bar {
position: sticky;
top: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
background: white;
border-bottom: 1px solid #e5e5e5;
padding: 12px 16px;
.nav-back {
font-size: 24px;
color: #333;
}
.nav-title {
font-size: 17px;
font-weight: 600;
color: #333;
}
.nav-placeholder {
width: 24px;
}
}
.detail-card {
margin: 16px;
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.card-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 16px 12px;
}
.vehicle-info {
display: flex;
align-items: center;
gap: 6px;
.vehicle-icon {
font-size: 18px;
color: #2563eb;
}
.plate-number {
font-size: 15px;
font-weight: 600;
color: #333;
}
.plate-color,
.vehicle-type {
font-size: 14px;
color: #64748b;
}
.separator {
color: #d1d5db;
margin: 0 2px;
}
}
.status-tag {
padding: 4px 12px;
border-radius: 20px;
font-size: 12px;
&.status-gray {
background: #f1f5f9;
color: #64748b;
border: 1px solid #e2e8f0;
}
&.status-blue {
background: #eff6ff;
color: #2563eb;
border: 1px solid #bfdbfe;
}
&.status-green {
background: #f0fdf4;
color: #16a34a;
border: 1px solid #bbf7d0;
}
}
.title-row {
display: flex;
align-items: center;
gap: 8px;
padding: 0 16px 12px;
.level-tag {
padding: 4px 8px;
border-radius: 8px;
font-size: 12px;
&.level-red {
background: #fee2e2;
color: #dc2626;
}
&.level-orange {
background: #ffedd5;
color: #ea580c;
}
&.level-yellow {
background: #fef9c3;
color: #ca8a04;
}
&.level-blue {
background: #dbeafe;
color: #2563eb;
}
}
.alert-title {
font-size: 15px;
font-weight: 500;
color: #333;
}
}
.card-image {
padding: 0 16px 12px;
.alert-img {
width: 100%;
height: 180px;
border-radius: 12px;
}
}
.card-details {
padding: 0 16px 16px;
.detail-item {
display: flex;
align-items: center;
margin-bottom: 8px;
font-size: 14px;
&:last-child {
margin-bottom: 0;
}
.detail-icon {
font-size: 16px;
color: #2563eb;
margin-right: 8px;
}
.label {
color: #94a3b8;
}
.value {
color: #475569;
}
}
}
.checkin-card {
margin: 0 16px 16px;
background: white;
border-radius: 20px;
padding: 16px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
.checkin-time-row {
margin-bottom: 12px;
font-size: 14px;
.checkin-date {
color: #64748b;
}
.checkin-type {
color: #2563eb;
margin-left: 8px;
}
}
.checkin-row {
margin-bottom: 12px;
font-size: 14px;
&:last-child {
margin-bottom: 0;
}
.checkin-label {
color: #64748b;
}
.checkin-value {
color: #333;
}
&.checkin-location {
color: #475569;
display: flex;
align-items: flex-start;
gap: 6px;
.location-icon {
font-size: 16px;
color: #94a3b8;
margin-top: 2px;
}
}
}
.intercept-status {
margin-top: 12px;
.result-btn {
display: block;
width: 100%;
height: 44px;
background: #2563eb;
border: none;
border-radius: 12px;
font-size: 15px;
font-weight: 500;
color: white;
text-align: center;
line-height: 44px;
}
.fail-tag {
color: #ef4444;
font-size: 14px;
}
}
.result-btn {
height: 44px;
background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
border: none;
border-radius: 12px;
font-size: 15px;
font-weight: 500;
color: white;
margin-top: 16px;
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
}
.action-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: white;
border-top: 1px solid #e5e5e5;
padding: 12px 16px;
padding-bottom: calc(12px + env(safe-area-inset-bottom));
.action-btn {
height: 48px;
background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
border: none;
border-radius: 16px;
font-size: 16px;
font-weight: 600;
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
}
.result-popup {
width: 90%;
max-width: 360px;
}
.popup-content {
padding: 24px;
}
.popup-title {
font-size: 18px;
font-weight: 600;
color: #333;
text-align: center;
margin-bottom: 20px;
}
.popup-buttons {
display: flex;
flex-direction: column;
gap: 12px;
.popup-btn {
height: 48px;
border-radius: 12px;
font-size: 16px;
font-weight: 500;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
&.success {
background: #16a34a;
border: none;
color: white;
}
&.error {
background: white;
border: 1px solid #ef4444;
color: #ef4444;
}
.btn-icon {
font-size: 20px;
}
}
}
</style>