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 | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/model/clueQuestion.js b/src/model/clueQuestion.js index 5616f09..338523f 100644 --- a/src/model/clueQuestion.js +++ b/src/model/clueQuestion.js @@ -1,7 +1,7 @@ import { $clue } from '@/api/index'; function getClueQuestion(data) { - data.cqFilePath = data.cqFilePath.split(';').map((val) => { + data.files = data.cqFilePath.split(';').map((val) => { return $clue.imgUrl + val; }); return data; -- Gitblit v1.9.3