源文件

This commit is contained in:
gyq
2024-04-24 09:52:04 +08:00
commit 127202beac
386 changed files with 102573 additions and 0 deletions

39
src/api/setting.js Normal file
View File

@@ -0,0 +1,39 @@
import request from '@/utils/request'
/**
* 支付方式
* @returns
*/
export function tbShopPayTypeGet(params) {
return request({
url: '/api/tbShopPayType',
method: 'get',
params
})
}
/**
* 更改/增加支付方式
* @returns
*/
export function tbShopPayType(data, method = 'post') {
return request({
url: '/api/tbShopPayType',
method: method,
data
})
}
/**
* 增删改查新增字典
* @returns
*/
export function dict(data, method = 'get') {
return request({
url: '/api/dict',
method: method,
data: data,
params: data
})
}