This commit is contained in:
BianLzhaoMin 2025-12-12 17:29:12 +08:00
parent 65ab44d2b0
commit dc97fd369a
1 changed files with 14 additions and 0 deletions

14
src/api/common.js Normal file
View File

@ -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',
},
})
}