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.
18 lines
583 B
18 lines
583 B
2 years ago
|
import request from '@/apis/request.js'
|
||
|
const { get, post } = request
|
||
|
|
||
|
export const partnerOperatingList = (data) => {
|
||
|
return post('nakadai/nakadai/partner/article/management/partnerOperatingList', data)
|
||
|
}
|
||
|
|
||
|
export const findById = id => {
|
||
|
return post('nakadai/nakadai/applets/partner/browse?contentId=' + id)
|
||
|
}
|
||
|
|
||
|
export const queryClassificationByType = id => {
|
||
|
return post('nakadai/nakadai/partner/article/classification/queryClassificationByType?typeId=' + id)
|
||
|
}
|
||
|
|
||
|
export const schemeList = data => {
|
||
|
return post('nakadai/nakadai/partner/schemeManagement/schemeList', data)
|
||
|
}
|