发布v1.0.3

This commit is contained in:
kele
2022-11-22 15:45:36 +08:00
commit 01f091fcd8
525 changed files with 80922 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import request from '@/sheep/request';
export default {
area: () =>
request({
url: 'data/area',
method: 'GET',
}),
faq: () =>
request({
url: 'data/faq',
method: 'GET',
}),
richtext: (id) =>
request({
url: 'data/richtext/' + id,
method: 'GET',
}),
};