Commit c6b77a82 authored by rencs's avatar rencs

Merge branch 'dev_ren' into 'master'

1.7

See merge request !30
parents 3c577ac2 33b9b6f7
......@@ -13,82 +13,82 @@ import fetch from 'utils/fetch';
* 获取所有行业应用类型
* @param {Object} indexShow
*/
export function getAllApplicationType(obj){
return fetch({
url: '/api/website/industryApplicationType/app/unauth/getAll',
method: 'get',
param: obj
});
export function getAllApplicationType(obj) {
return fetch({
url: '/api/website/industryApplicationType/app/unauth/getAll',
method: 'get',
param: obj
});
}
/**
* 分页获取所有行业应用类型
* @param {Object} obj
*/
export function getListApplicationType(obj){
return fetch({
url: '/api/website/industryApplicationType/getList',
method: 'get',
params: obj
});
export function getListApplicationType(obj) {
return fetch({
url: '/api/website/industryApplicationType/getList',
method: 'get',
params: obj
});
}
/**
* 新增或更新行业应用类型
* @param {Object} obj
*/
export function addUpdateApplicationType(obj){
return fetch({
url: '/api/website/industryApplicationType/addUpdate',
method: 'post',
data: obj
});
export function addUpdateApplicationType(obj) {
return fetch({
url: '/api/website/industryApplicationType/addUpdate',
method: 'post',
data: obj
});
}
/**
* 分页获取行业应用信息
* @param {Object} obj
*/
export function getListApplicationInfo(obj){
return fetch({
url: '/api/website/industryApplicationInfo/getList',
method: 'get',
params: obj
});
export function getListApplicationInfo(obj) {
return fetch({
url: '/api/website/industryApplicationInfo/getList',
method: 'get',
params: obj
});
}
/**
* 新增或更新行业应用信息
* @param {Object} obj
*/
export function addUpdateApplicationInfo(obj){
return fetch({
url: '/api/website/industryApplicationInfo/addUpdate',
method: 'post',
data: obj
});
export function addUpdateApplicationInfo(obj) {
return fetch({
url: '/api/website/industryApplicationInfo/addUpdate',
method: 'post',
data: obj
});
}
/**
* 新增或更新交易保障
* @param {Object} obj
* @param {Object} obj
*/
export function addUpdateProtection(obj){
return fetch({
url: "/api/website/commonInfo/addUpdate",
method: "post",
data: obj
})
export function addUpdateProtection(obj) {
return fetch({
url: '/api/website/commonInfo/addUpdate',
method: 'post',
data: obj
})
}
/**
* 获取分页的交易保障
* @param {Object} obj
* @param {Object} obj
*/
export function getListProtections(obj){
return fetch({
url: "/api/website/commonInfo/getAll",
method: "get",
param: obj
})
}
\ No newline at end of file
export function getListProtections(obj) {
return fetch({
url: '/api/website/commonInfo/getAll?type=1',
method: 'get',
param: obj
})
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment