34 lines
591 B
JavaScript
Raw Normal View History

import request from '@/sheep/request';
export default {
// 招租列表
rentlist: (params) =>
request({
url: 'meal.information/information_list',
method: 'GET',
params,
custom: {
showLoading: false,
},
}),
// 标签列表
tagsList: (params) =>
request({
url: 'meal.information/cate_list',
method: 'GET',
params,
custom: {
showLoading: false,
},
}),
// detail: (id, user_coupon_id) =>
// request({
// url: 'coupon/detail',
// method: 'GET',
// params: {
// id: id,
// user_coupon_id,
// },
// }),
};