1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| import service from './service'
| // 品宣分类api
|
| export class CatPublicityApi {
| getList = (params) => {
| return service.post('/wly-customization-service/productPublicityClassification/getPageProductPublicityClassification', params)
| }
|
| /**
| * 获取对应分类下的文章
| * @param {*} params
| * @returns
| */
| getAppList =(params) => {
| return service.post('/wly-customization-service/articleInfo/app/getPageArticleInfo', params)
| }
| }
| export default new CatPublicityApi()
|
|