33 lines
537 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,
},
}),
rentInfo: (id) =>
request({
url: 'meal.information/detail',
method: 'GET',
params: {
id: id,
},
}),
};