|
|
@@ -131,9 +131,14 @@ function checkHandleRequest() {
|
|
|
// 公告类别
|
|
|
break;
|
|
|
case '/api/randomcompound/indexdetail':
|
|
|
- // 好运合成
|
|
|
+ // 好运合成 post= {id:189}
|
|
|
handleCompoundIndex();
|
|
|
break;
|
|
|
+ case '/api/randomcompound/compound':
|
|
|
+ // 好运合成-立即合成 post= {id:189,token:'',random_json:'[]',random_id:'[]'}
|
|
|
+ // random_json {collection_id:0,collection_group:0,num:1}
|
|
|
+ //
|
|
|
+ break;
|
|
|
case '/api/award/index':
|
|
|
// 限时抽奖 post= {activity_id:6}
|
|
|
handleAwardIndex();
|
|
|
@@ -148,8 +153,11 @@ function checkHandleRequest() {
|
|
|
// 限时抽奖-抽奖 post= {num:1 || 5,type:1,activity_id:6}
|
|
|
break;
|
|
|
default:
|
|
|
- if (path.indexOf('/api/collection/index') > -1) {
|
|
|
- // 个人资产
|
|
|
+ if (path.indexOf('/api/collection/indexdetail') > -1) {
|
|
|
+ // 个人资产-单个产品类别详情
|
|
|
+ handleCollectionIdxDetail();
|
|
|
+ }else if (path.indexOf('/api/collection/index') > -1) {
|
|
|
+ // 个人资产-所有产品类别列表
|
|
|
handleCollectionIndex();
|
|
|
}else if (path.indexOf('/api/market/packlistdetail') > -1) {
|
|
|
// 产品详情
|
|
|
@@ -420,6 +428,56 @@ function handlePacklistDetail(){
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+function handleCollectionIdxDetail(){
|
|
|
+ // let rspData = {
|
|
|
+ // "code": 1000,
|
|
|
+ // "message": "获取成功",
|
|
|
+ // "data": {
|
|
|
+ // "current_page": 1,
|
|
|
+ // "data": [
|
|
|
+ // {
|
|
|
+ // "title": "黑卡",
|
|
|
+ // "image": "https://luanshu.hbcpre.com/uploads/collection/96d4bd988be689544757ae1dcc9c8d20.jpg",
|
|
|
+ // "tag": null,
|
|
|
+ // "collection_id": 2988,
|
|
|
+ // "num": 2355867,
|
|
|
+ // "id": 2309705,
|
|
|
+ // "all_num": 9622378,
|
|
|
+ // "remark": "空投",
|
|
|
+ // "status": 0
|
|
|
+ // },
|
|
|
+ // ],
|
|
|
+ // "first_page_url": "https://lsjk.hbcpre.com/api/collection/indexdetail?page=1",
|
|
|
+ // "from": 1,
|
|
|
+ // "last_page": 1,
|
|
|
+ // "last_page_url": "https://lsjk.hbcpre.com/api/collection/indexdetail?page=1",
|
|
|
+ // "links": [
|
|
|
+ // {
|
|
|
+ // "url": null,
|
|
|
+ // "label": "« Previous",
|
|
|
+ // "active": false
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // "url": "https://lsjk.hbcpre.com/api/collection/indexdetail?page=1",
|
|
|
+ // "label": "1",
|
|
|
+ // "active": true
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // "url": null,
|
|
|
+ // "label": "Next »",
|
|
|
+ // "active": false
|
|
|
+ // }
|
|
|
+ // ],
|
|
|
+ // "next_page_url": null,
|
|
|
+ // "path": "https://lsjk.hbcpre.com/api/collection/indexdetail",
|
|
|
+ // "per_page": 999,
|
|
|
+ // "prev_page_url": null,
|
|
|
+ // "to": 1,
|
|
|
+ // "total": 1
|
|
|
+ // }
|
|
|
+ // };
|
|
|
+}
|
|
|
+
|
|
|
function handleCollectionIndex(){
|
|
|
let rspData = getResponsePlainData();
|
|
|
if (!rspData) {
|