You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
403 B
25 lines
403 B
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',
|
|
method: 'GET',
|
|
params: {
|
|
id: id,
|
|
},
|
|
}),
|
|
};
|
|
|