From 9d21a549243b4e2bf2730eb2ed753278f4bea71b Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期二, 17 九月 2024 11:57:14 +0800
Subject: [PATCH] 工单图片在详情中展示
---
src/api/platform/threshold.js | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/api/platform/threshold.js b/src/api/platform/threshold.js
index 89086fa..45d254e 100644
--- a/src/api/platform/threshold.js
+++ b/src/api/platform/threshold.js
@@ -12,7 +12,7 @@
// 鏌ヨ杩愮淮闃堝�艰缁�
export function getVideo(id) {
return request({
- url: '/threshold/video' + id,
+ url: '/threshold/video/' + id,
method: 'get'
})
}
@@ -20,7 +20,7 @@
// 鏌ヨ杩愮淮闃堝�艰缁�
export function getCar(id) {
return request({
- url: '/threshold/car' + id,
+ url: '/threshold/car/' + id,
method: 'get'
})
}
@@ -28,7 +28,7 @@
// 鏌ヨ杩愮淮闃堝�艰缁�
export function getFace(id) {
return request({
- url: '/threshold/face' + id,
+ url: '/threshold/face/' + id,
method: 'get'
})
}
--
Gitblit v1.8.0