From dc97fd369a6239fb0d3dcce097f9a4460413dccd Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Fri, 12 Dec 2025 17:29:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/common.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/api/common.js diff --git a/src/api/common.js b/src/api/common.js new file mode 100644 index 00000000..c2db83d8 --- /dev/null +++ b/src/api/common.js @@ -0,0 +1,14 @@ +import request from '@/utils/request' + +// 获取系统配置 +export const getPriceShowConfigApi = () => { + return request({ + url: '/system/dict/type/list', + method: 'get', + params: { + pageNum: 1, + pageSize: 10, + dictType: 'price_normal_disable', + }, + }) +}