展品维保小程序前端代码接口
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.
 
 
 

47 lines
943 B

// import request from "@/api/request";
import http from "@/api/http";
export default {
async queryCareerList() {
return http({
url: '/config/queryCareerList',
method: 'GET',
noToken: true
})
},
async queryConfigList() {
return http({
url: '/config/queryConfigList',
method: 'GET',
noToken: true
})
},
async queryQualificationList() {
return http({
url: '/config/queryQualificationList',
method: 'GET',
noToken: true
})
},
// 系统配置- 查询活动分类列表
async queryCategoryActivityList() {
return http({
url: '/config/queryCategoryActivityList',
method: 'GET',
noToken: true
})
},
// 系统配置- 查询商品分类列表
async queryCategoryGoodsList() {
return http({
url: '/config/queryCategoryGoodsList',
method: 'GET',
noToken: true
})
},
}