9 lines
175 B
JavaScript
9 lines
175 B
JavaScript
import http from './index.js';
|
|
|
|
// 获取商户详情
|
|
export const getSetting = (settingKey) => http.get('/open/system/setting/' + settingKey)
|
|
|
|
export default {
|
|
getSetting
|
|
}
|