静音,订单详情

This commit is contained in:
邱贞招 2025-03-04 11:16:47 +08:00
parent 7876711245
commit c4b650b36d
3 changed files with 147 additions and 51 deletions

View File

@ -84,6 +84,13 @@ export function refreshDevice(deviceId) {
})
}
// 静音
export function mute(sn) {
return request({
url: '/system/device/mute/' + sn,
method: 'post'
})
}
// 查询所有车辆信息
export function allDevice() {

View File

@ -207,7 +207,7 @@
<el-button type="info" icon="el-icon-unlock" @click="seatCushionLock">坐垫锁</el-button>
</el-col>
<el-col :span="6">
<el-button type="success" icon="el-icon-volume-off" @click="refresh">静音</el-button>
<el-button :type="deviceInfo.isSound === '0'?'success':'danger'" icon="el-icon-volume-off" @click="mute">{{ deviceInfo.isSound === '0'? '关闭静音': '静音' }}</el-button>
</el-col>
</el-row>
</div>
@ -348,7 +348,7 @@ import {
refreshDevice,
seatCushionLock,
updateDevice,
getDeviceBySn
getDeviceBySn, mute
} from '@/api/system/device'
import LocationMap from "@/components/Map/location/LocationMapss.vue";
import { listDept2 } from "@/api/system/dept";
@ -649,6 +649,16 @@ export default {
this.initData();
}).catch(() => { });
},
mute(){
if (!this.deviceInfo.sn) {
this.$modal.msgError("设备ID不能为空");
return;
}
mute(this.deviceInfo.sn).then(() => {
this.$modal.msgSuccess("更新成功");
this.initData();
}).catch(() => { });
},
handleUpdate() {
this.reset();
this.open = true;

View File

@ -39,15 +39,18 @@
<span v-else>--</span>
</el-descriptions-item>
<el-descriptions-item label="还车定位">
<template v-if="detail.returnLon && detail.returnLat">
<a
:href="`https://uri.amap.com/marker?position=${detail.returnLon},${detail.returnLat}`"
target="_blank"
class="link-type">
<dict-tag :options="dict.type.et_return_mode" :value="detail.returnMode" />
</a>
<template v-if="detail.returnType === '1'">
<template v-if="detail.returnLon && detail.returnLat">
<a
:href="`https://uri.amap.com/marker?position=${detail.returnLon},${detail.returnLat}`"
target="_blank"
class="link-type">
<dict-tag :options="dict.type.et_return_mode" :value="detail.returnMode" />
</a>
</template>
<span v-else>--</span>
</template>
<span v-else>--</span>
<el-tag v-else type="warning">辅助还车</el-tag>
</el-descriptions-item>
</el-descriptions>
<div class="card-header2">
@ -141,44 +144,57 @@
<div slot="header" class="card-header">
<span>行程记录</span>
</div>
<el-timeline class="padding0" v-if="detail.tripLogs && detail.tripLogs.length > 0">
<el-timeline-item
v-for="log in detail.tripLogs"
:key="log.createTime"
:timestamp="parseTime(log.createTime)"
:color="getTimelineItemColor(log.type)"
>
<div class="timeline-content">
<span class="operation-type" :style="{ color: getTimelineItemColor(log.type) }">
<dict-tag :options="dict.type.et_trip_log_type" :value="log.type" />
<span
class="link-type nobold"
@click="$router.push('/system/device/sn/index/' + log.sn)">
{{ log.sn }}
</span>
<!-- 添加一个包裹 el-timeline div 并设置固定高度和滚动 -->
<div class="timeline-container" v-if="detail.commandLogs && detail.commandLogs.length > 0">
<el-timeline class="padding0">
<el-timeline-item
v-for="log in detail.commandLogs"
:key="log.createTime"
:timestamp="parseTime(log.createTime)"
:color="getTimelineItemColor(log.type)"
>
<div class="timeline-content">
<span class="operation-type" :style="{ color: getTimelineItemColor(log.type) }">
<span>{{log.type}}</span>
<span
class="link-type nobold"
@click="$router.push('/system/device/sn/index/' + log.sn)">
{{ log.sn }}
</span>
</span>
<el-tooltip placement="right" effect="light" popper-class="operation-tooltip">
<div slot="content">
<div>{{ log.description }}</div>
<div v-if="log.longitude && log.latitude">
位置:
<a
:href="`https://uri.amap.com/marker?position=${log.longitude},${log.latitude}`"
target="_blank"
class="link-type">
{{ log.longitude }},{{ log.latitude }}
</a>
<!-- 如果最后一个对象是还车关锁则显示辅助还车还是正常还车 -->
<span v-if="log.type === '4'">
<span v-if="detail.returnType === '1'">
<el-tag type="success">正常还车</el-tag>
</span>
<span v-else>
<el-tag type="warning">辅助还车</el-tag>
</span>
</span>
<el-tooltip placement="right" effect="light" popper-class="operation-tooltip">
<div slot="content">
<div>{{ log.description }}</div>
<div v-if="log.longitude && log.latitude">
位置:
<!-- 点击位置链接时触发弹窗 -->
<span
class="link-type"
@click.stop="openLocationDialog(log.longitude, log.latitude)">
{{ log.longitude }},{{ log.latitude }}
</span>
</div>
</div>
</div>
<i
class="el-icon-info tooltip-icon"
:style="{ color: getTimelineItemColor(log.type) }"
></i>
</el-tooltip>
</div>
</el-timeline-item>
</el-timeline>
<i
class="el-icon-info tooltip-icon"
:style="{ color: getTimelineItemColor(log.type) }"
></i>
</el-tooltip>
</div>
</el-timeline-item>
</el-timeline>
</div>
<div v-else class="empty-history">
<i class="el-icon-document"></i>
<p>暂无行程记录</p>
@ -186,6 +202,21 @@
</el-card>
</el-col>
</el-row>
<!-- 弹窗组件 -->
<el-dialog
title="位置详情"
:visible.sync="locationDialogVisible"
width="60%"
top="5vh"
custom-class="location-dialog"
@opened="initMap"
>
<div v-if="selectedLocation" id="mapContainer" style="width: 100%; height: 400px;"></div>
<span slot="footer" class="dialog-footer">
<el-button type="primary" @click="locationDialogVisible = false">关闭</el-button>
</span>
</el-dialog>
</div>
</template>
@ -209,15 +240,48 @@ export default {
areaId: '',
tripRouteStr: '',
tripLogs: [],
commandLogs: [],
// ...
},
loading: false
loading: false,
locationDialogVisible: false,
selectedLocation: null,
}
},
created() {
this.fetchData()
},
methods: {
initMap() {
if (this.selectedLocation) {
this.map = new AMap.Map('mapContainer', {
zoom: 15, //
center: [this.selectedLocation.longitude, this.selectedLocation.latitude], //
viewMode: '3D', // 使3D
});
//
if (this.marker) {
this.marker.setMap(null);
}
//
this.marker = new AMap.Marker({
position: [this.selectedLocation.longitude, this.selectedLocation.latitude],
map: this.map,
});
}
},
// ...
openLocationDialog(longitude, latitude) {
this.selectedLocation = { longitude, latitude };
if (this.map) {
//
this.map.destroy();
this.map = null;
}
this.locationDialogVisible = true;
},
async fetchData() {
this.loading = true;
const orderId = this.$route.params.orderId;
@ -282,14 +346,20 @@ export default {
//
getTimelineItemColor(type) {
switch (type) {
case '1': //
case '编号开锁': //
return '#67C23A';
case '2': //
case '临时锁车': //
return '#F56C6C';
case '3': //
return '#E6A23C';
case '4': //
case '解锁': //
return '#67C23A';
case '还车关锁': //
return '#409EFF';
case '换车关锁': //
return '#f63f3f';
case '换车开锁': //
return '#67C23A';
case '辅助还车关锁': //
return '#08913f';
default:
return '#909399';
}
@ -390,4 +460,13 @@ export default {
.refund-card {
margin-top: 20px;
}
#mapContainer {
margin-top: 20px;
}
/* 设置固定高度并启用垂直滚动 */
.timeline-container {
max-height: 500px; /* 根据需要调整高度 */
overflow-y: auto;
}
</style>