From 4a836815f12e8ba717702cc8ed431e1b4f96134c Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期五, 25 四月 2025 13:55:34 +0800 Subject: [PATCH] 新增内部线索相关管理逻辑 --- src/model/clueQuestion.js | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/model/clueQuestion.js b/src/model/clueQuestion.js index dc7d77f..338523f 100644 --- a/src/model/clueQuestion.js +++ b/src/model/clueQuestion.js @@ -1,8 +1,8 @@ -import { imgUrl } from '@/api/clue/index'; +import { $clue } from '@/api/index'; function getClueQuestion(data) { - data.cqFilePath = data.cqFilePath.split(';').map((val) => { - return imgUrl + val; + data.files = data.cqFilePath.split(';').map((val) => { + return $clue.imgUrl + val; }); return data; } -- Gitblit v1.9.3