Commit ddaf0030 by linboxuan

ucommune-back operate api

parent b0542edd
......@@ -43,11 +43,9 @@ class UtilsUcommuneService extends AppServiceBase {
* @param {*} actionBody
*/
async getProductTypesales(pobj, actionBody) {
var obj = {
productType : ["sbzc"],
sum : [666]
}
return system.getResultSuccess(obj);
var reqUrl = this.centerOrderUrl + "action/ucommuneOrder/springBoard";
var result = await this.restPostUrl(pobj, reqUrl);
return result;
}
/**
......@@ -56,17 +54,9 @@ class UtilsUcommuneService extends AppServiceBase {
* @param {*} actionBody
*/
async getCustomerArea(pobj, actionBody) {
var obj = [
{name:"北京",value:1},
{name:"西藏",value:1},
{name:"天津",value:1},
{name:"新疆",value:1},
{name:"青海",value:1},
{name:"甘肃",value:1},
{name:"宁夏",value:1},
{name:"台湾",value:1}
]
return system.getResultSuccess(obj);
var reqUrl = this.centerOrderUrl + "action/ucommuneOrder/springBoard";
var result = await this.restPostUrl(pobj, reqUrl);
return result;
}
/**
......
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