渲染数据
This commit is contained in:
@@ -69,6 +69,7 @@ api = {
|
||||
appStatisticsOcust: "app/statistics/ocust", //数据分析-订单数据
|
||||
appStatisticsHcust: "app/statistics/hcust", //首页-客户图标数据
|
||||
appStatisticsHorder: "app/statistics/horder", //首页-订单图表数据
|
||||
appScore: "app/score", //首页-最新运营分
|
||||
|
||||
appStatisticsStats: "app/statistics/stats", //获取渠道经理数据分析入口数据
|
||||
appStatisticsStats_days: "app/statistics/stats_days", //获取渠道经理数据分析数据
|
||||
@@ -183,7 +184,10 @@ api = {
|
||||
appSign: "app/sign", //用户签到
|
||||
|
||||
|
||||
appSeriesMbrand: "app/series/mbrand" //获取车系品牌
|
||||
appSeriesMbrand: "app/series/mbrand", //获取车系品牌
|
||||
|
||||
appScoreLists: "app/score/lists", //运营分排行
|
||||
appScoreDetail: "app/score/detail", //运营分详情
|
||||
}
|
||||
|
||||
//远程图片存储地址
|
||||
|
||||
@@ -397,6 +397,13 @@ apiQuery.getAppStatisticsHorder = function(params){
|
||||
})
|
||||
}
|
||||
|
||||
//首页-最新运营分
|
||||
apiQuery.getAppScore = function(params){
|
||||
return new Promise(function (resolve, reject) {
|
||||
HttpRequest(false, Config.api.appScore, 2, params, "GET", resolve, reject)
|
||||
})
|
||||
}
|
||||
|
||||
//更新用户店铺id
|
||||
apiQuery.putAppUserResetbiz = function (params) {
|
||||
return new Promise(function (resolve, reject) {
|
||||
@@ -1059,4 +1066,19 @@ apiQuery.getMbrand = function (params) {
|
||||
HttpRequest(false, Config.api.appSeriesMbrand, 2, params, "GET", resolve, reject)
|
||||
})
|
||||
}
|
||||
|
||||
//运营分排行列表
|
||||
apiQuery.appScoreLists = function(params){
|
||||
return new Promise(function (resolve, reject) {
|
||||
HttpRequest(false, Config.api.appScoreLists, 2, params, "GET", resolve, reject)
|
||||
})
|
||||
}
|
||||
|
||||
//运营分详情
|
||||
apiQuery.appScoreDetail = function(params){
|
||||
return new Promise(function (resolve, reject) {
|
||||
HttpRequest(false, Config.api.appScoreDetail, 2, params, "GET", resolve, reject)
|
||||
})
|
||||
}
|
||||
|
||||
export default apiQuery;
|
||||
Reference in New Issue
Block a user