From 056ea576d820729878ffd62cd54cd7598e72d07e Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期二, 29 七月 2025 16:07:31 +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