更新api列表
This commit is contained in:
parent
7248cce277
commit
6d13688aa8
|
@ -63,5 +63,47 @@ export const mer_admin = {
|
||||||
//直接获取城市数据
|
//直接获取城市数据
|
||||||
getCityOptions: () => {
|
getCityOptions: () => {
|
||||||
return city_data;
|
return city_data;
|
||||||
|
},
|
||||||
|
//省市县数据
|
||||||
|
getCity: () => {
|
||||||
|
return $http.get(`/merchant-api/common/pca`);
|
||||||
|
},
|
||||||
|
//添加运费模板
|
||||||
|
addShippingTemplate: (data) => {
|
||||||
|
return $http.post(`/merchant-api/shippingTemplates/add`, data);
|
||||||
|
},
|
||||||
|
//删除模板
|
||||||
|
removeShippingTemplate: (id) => {
|
||||||
|
return $http.post(`/merchant-api/shippingTemplates/delete`, {
|
||||||
|
id
|
||||||
|
})
|
||||||
|
},
|
||||||
|
//更新模板
|
||||||
|
updateShippingTemplate: (data) => {
|
||||||
|
return $http.post(`/merchant-api/shippingTemplates/update`, data);
|
||||||
|
},
|
||||||
|
//获取模板分页
|
||||||
|
getShippingTemplatePage: (data) => {
|
||||||
|
return $http.request({
|
||||||
|
method: 'get',
|
||||||
|
url: '/merchant-api/shippingTemplates/page',
|
||||||
|
params: data
|
||||||
|
})
|
||||||
|
},
|
||||||
|
//获取配送模板列表
|
||||||
|
getShippingTemplateList: (data) => {
|
||||||
|
return $http.request({
|
||||||
|
method: 'get',
|
||||||
|
url: '/merchant-api/shippingTemplates/list',
|
||||||
|
params: data
|
||||||
|
})
|
||||||
|
},
|
||||||
|
//获取模板详情
|
||||||
|
getShippingTemplateInfo: (id) => {
|
||||||
|
return $http.request({
|
||||||
|
method: 'get',
|
||||||
|
url: '/merchant-api/shippingTemplates/list',
|
||||||
|
params: { id }
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue