123456789101112131415161718192021222324252627 |
- module.exports = {
- goodsDetail: {
- requestBody: ['!id'],
- },
- indexGoodsList: {
- parameters: {
- query: {
- 'meta.createdAt@start': 'meta.createdAt@start',
- 'meta.createdAt@end': 'meta.createdAt@end',
- name: '%name%',
- view_num: 'view_num',
- sell_num: 'sell_num',
- sell_money: 'sell_money',
- shop: 'shop',
- },
- // options: {
- // "meta.state": 0 // 默认条件
- // },
- },
- options: {
- query: ['skip', 'limit'],
- },
- },
- iatg: {
- service: 'indexActTagsGoods',
- },
- };
|