mall-uniapp/sheep/api/data.js

24 lines
390 B
JavaScript
Raw Normal View History

2023-12-11 01:24:16 +00:00
import request from '@/sheep/request';
export default {
2023-12-12 08:13:27 +00:00
area: () =>
request({
url: '/app-api/system/area/tree',
method: 'GET',
}),
// area: () =>
// request({
// url: 'data/area',
// method: 'GET',
// }),
faq: () =>
request({
url: 'data/faq',
method: 'GET',
}),
richtext: (id) =>
request({
url: 'data/richtext/' + id,
method: 'GET',
}),
};