From 30232619eeb95099a30fb5579da898d698dcacbb Mon Sep 17 00:00:00 2001 From: ZhangXianQiang <1135831638@qq.com> Date: 星期二, 28 五月 2024 09:34:46 +0800 Subject: [PATCH] fix:多选回显问题 --- src/api/question.js | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/api/question.js b/src/api/question.js index f28d6ce..27a3121 100644 --- a/src/api/question.js +++ b/src/api/question.js @@ -1,8 +1,10 @@ -import { post } from '@/utils/request' +import { post, download, downloadPost } from '@/utils/request' export default { pageList: query => post('/api/admin/question/page', query), edit: query => post('/api/admin/question/edit', query), select: id => post('/api/admin/question/select/' + id), - deleteQuestion: id => post('/api/admin/question/delete/' + id) + deleteQuestion: id => post('/api/admin/question/delete/' + id), + downloadImportTemplate: () => download('/api/admin/question/download/question/import/temp'), + exportQuestion: query => downloadPost('/api/admin/question/question/export', query) } -- Gitblit v1.8.0