Commit 1ee894bf authored by rencs's avatar rencs

Merge branch 'dev_ren' into 'dev'

1.7

See merge request !31
parents bcba81e7 33b9b6f7
...@@ -13,82 +13,82 @@ import fetch from 'utils/fetch'; ...@@ -13,82 +13,82 @@ import fetch from 'utils/fetch';
* 获取所有行业应用类型 * 获取所有行业应用类型
* @param {Object} indexShow * @param {Object} indexShow
*/ */
export function getAllApplicationType(obj){ export function getAllApplicationType(obj) {
return fetch({ return fetch({
url: '/api/website/industryApplicationType/app/unauth/getAll', url: '/api/website/industryApplicationType/app/unauth/getAll',
method: 'get', method: 'get',
param: obj param: obj
}); });
} }
/** /**
* 分页获取所有行业应用类型 * 分页获取所有行业应用类型
* @param {Object} obj * @param {Object} obj
*/ */
export function getListApplicationType(obj){ export function getListApplicationType(obj) {
return fetch({ return fetch({
url: '/api/website/industryApplicationType/getList', url: '/api/website/industryApplicationType/getList',
method: 'get', method: 'get',
params: obj params: obj
}); });
} }
/** /**
* 新增或更新行业应用类型 * 新增或更新行业应用类型
* @param {Object} obj * @param {Object} obj
*/ */
export function addUpdateApplicationType(obj){ export function addUpdateApplicationType(obj) {
return fetch({ return fetch({
url: '/api/website/industryApplicationType/addUpdate', url: '/api/website/industryApplicationType/addUpdate',
method: 'post', method: 'post',
data: obj data: obj
}); });
} }
/** /**
* 分页获取行业应用信息 * 分页获取行业应用信息
* @param {Object} obj * @param {Object} obj
*/ */
export function getListApplicationInfo(obj){ export function getListApplicationInfo(obj) {
return fetch({ return fetch({
url: '/api/website/industryApplicationInfo/getList', url: '/api/website/industryApplicationInfo/getList',
method: 'get', method: 'get',
params: obj params: obj
}); });
} }
/** /**
* 新增或更新行业应用信息 * 新增或更新行业应用信息
* @param {Object} obj * @param {Object} obj
*/ */
export function addUpdateApplicationInfo(obj){ export function addUpdateApplicationInfo(obj) {
return fetch({ return fetch({
url: '/api/website/industryApplicationInfo/addUpdate', url: '/api/website/industryApplicationInfo/addUpdate',
method: 'post', method: 'post',
data: obj data: obj
}); });
} }
/** /**
* 新增或更新交易保障 * 新增或更新交易保障
* @param {Object} obj * @param {Object} obj
*/ */
export function addUpdateProtection(obj){ export function addUpdateProtection(obj) {
return fetch({ return fetch({
url: "/api/website/commonInfo/addUpdate", url: '/api/website/commonInfo/addUpdate',
method: "post", method: 'post',
data: obj data: obj
}) })
} }
/** /**
* 获取分页的交易保障 * 获取分页的交易保障
* @param {Object} obj * @param {Object} obj
*/ */
export function getListProtections(obj){ export function getListProtections(obj) {
return fetch({ return fetch({
url: "/api/website/commonInfo/getAll", url: '/api/website/commonInfo/getAll?type=1',
method: "get", method: 'get',
param: obj param: obj
}) })
} }
\ No newline at end of file
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