爱尚家接口合并到cms-api.websoft.top

This commit is contained in:
2025-03-05 17:21:00 +08:00
parent 5a030d5a30
commit 2c77a45e5d
23 changed files with 202 additions and 94 deletions

View File

@@ -1,9 +1,12 @@
import http from './index.js';
import {
serverUrl
} from '@/config.js';
// 读取字典数据
export const getDictionaryOptions = (params) => http.get('/system/dict-data', {params})
export const getDictionaryOptions = (params) => http.get(serverUrl + '/system/dict-data', {params})
export const listDictionary = (params) => http.get('/system/dict/tree', {params})
export const listDictionary = (params) => http.get(serverUrl + '/system/dict/tree', {params})
export default {