Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
new_taobao
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wildfirecode13
new_taobao
Commits
10efe42a
Commit
10efe42a
authored
Nov 30, 2020
by
任建锋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--
parent
022c6912
Changes
39
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
39 changed files
with
185 additions
and
850 deletions
+185
-850
api.js
taobao_mini/client/api.js
+5
-0
base.acss
taobao_mini/client/base_acss/base.acss
+8
-0
comgetcardpanel.axml
...ni/client/components/comgetcardpanel/comgetcardpanel.axml
+12
-12
comgetcardpanel.js
...mini/client/components/comgetcardpanel/comgetcardpanel.js
+7
-2
comrulepanel.acss
taobao_mini/client/components/comrulepanel/comrulepanel.acss
+4
-0
comrulepanel.axml
taobao_mini/client/components/comrulepanel/comrulepanel.axml
+8
-7
comrulepanel.js
taobao_mini/client/components/comrulepanel/comrulepanel.js
+9
-3
your.acss
taobao_mini/client/components/comrulepanel/your.acss
+3
-0
panel.acss
taobao_mini/client/myComponents/panel/panel.acss
+21
-0
panel.axml
taobao_mini/client/myComponents/panel/panel.axml
+4
-0
panel.js
taobao_mini/client/myComponents/panel/panel.js
+17
-0
panel.json
taobao_mini/client/myComponents/panel/panel.json
+7
-0
pageindexpage.acss
taobao_mini/client/pages/pageindexpage/pageindexpage.acss
+1
-1
pageindexpage.axml
taobao_mini/client/pages/pageindexpage/pageindexpage.axml
+6
-4
pageindexpage.js
taobao_mini/client/pages/pageindexpage/pageindexpage.js
+70
-6
pageindexpage.json
taobao_mini/client/pages/pageindexpage/pageindexpage.json
+3
-1
your.acss
taobao_mini/client/pages/pageindexpage/your.acss
+0
-0
collectGood.getActivityBaseInfoById.json
taobao_mini/mocks/collectGood.getActivityBaseInfoById.json
+0
-14
mine.authorize.json
taobao_mini/mocks/mine.authorize.json
+0
-3
mine.getAppData.json
taobao_mini/mocks/mine.getAppData.json
+0
-11
mine.navigateToPage.json
taobao_mini/mocks/mine.navigateToPage.json
+0
-3
mine.showModal.json
taobao_mini/mocks/mine.showModal.json
+0
-3
tmallCat.doBrowseGoodsTask.json
taobao_mini/mocks/tmallCat.doBrowseGoodsTask.json
+0
-9
tmallCat.doFollowTask.json
taobao_mini/mocks/tmallCat.doFollowTask.json
+0
-9
tmallCat.doSignTask.json
taobao_mini/mocks/tmallCat.doSignTask.json
+0
-9
tmallCat.exchangeGood.json
taobao_mini/mocks/tmallCat.exchangeGood.json
+0
-14
tmallCat.exchangeGoodList.json
taobao_mini/mocks/tmallCat.exchangeGoodList.json
+0
-368
tmallCat.getMyPrizeList.json
taobao_mini/mocks/tmallCat.getMyPrizeList.json
+0
-219
tmallCat.getSence.json
taobao_mini/mocks/tmallCat.getSence.json
+0
-15
tmallCat.getTaskList.json
taobao_mini/mocks/tmallCat.getTaskList.json
+0
-60
tmallCat.getUserEnergy.json
taobao_mini/mocks/tmallCat.getUserEnergy.json
+0
-5
tmallCat.getUserInfo.json
taobao_mini/mocks/tmallCat.getUserInfo.json
+0
-20
tmallCat.interaction.json
taobao_mini/mocks/tmallCat.interaction.json
+0
-14
tmallCat.login.json
taobao_mini/mocks/tmallCat.login.json
+0
-1
tmallCat.recallCat.json
taobao_mini/mocks/tmallCat.recallCat.json
+0
-10
tmallCat.recallInfo.json
taobao_mini/mocks/tmallCat.recallInfo.json
+0
-8
tmallCat.receiveTaskRewards.json
taobao_mini/mocks/tmallCat.receiveTaskRewards.json
+0
-9
tmallCat.recoverEnergy.json
taobao_mini/mocks/tmallCat.recoverEnergy.json
+0
-5
tmallCat.updateSenceGuide.json
taobao_mini/mocks/tmallCat.updateSenceGuide.json
+0
-5
No files found.
taobao_mini/client/api.js
View file @
10efe42a
...
@@ -93,6 +93,11 @@ const apiList = {
...
@@ -93,6 +93,11 @@ const apiList = {
method
:
'get'
,
method
:
'get'
,
isShowLoading
:
false
isShowLoading
:
false
},
},
doJoin
:
{
handle
:
'doJoin'
,
method
:
'get'
,
isShowLoading
:
false
},
/**获取用户信息 */
/**获取用户信息 */
getUserInfo
:
{
getUserInfo
:
{
...
...
taobao_mini/client/base_acss/base.acss
View file @
10efe42a
...
@@ -20,4 +20,12 @@
...
@@ -20,4 +20,12 @@
overflow: hidden;
overflow: hidden;
text-overflow:ellipsis;
text-overflow:ellipsis;
white-space: nowrap;
white-space: nowrap;
}
.btn{
transform-origin:center center !important;
transition: 0.1s;
}
.btn:active{
transform: scale(0.9);
}
}
\ No newline at end of file
taobao_mini/client/components/comgetcardpanel/comgetcardpanel.axml
View file @
10efe42a
<view class="getcardpanel ">
<view class="getcardpanel ">
<image class="getcardcontinuebtn " src={{resList['48d28917-741f-45d4-bcc9-322f29bcf5d8'].url}} />
<image class="getcardcontinuebtn " src={{resList['48d28917-741f-45d4-bcc9-322f29bcf5d8'].url}} />
<image class="getcardopenboxbtn " src={{resList['65d0f064-2527-4aef-8563-858eaf7ccf1e'].url}} />
<image class="getcardopenboxbtn " src={{resList['65d0f064-2527-4aef-8563-858eaf7ccf1e'].url}} />
<image class="dim51 " src={{resList['8c31274b-1016-4b8c-b413-9fc98174e118'].url}} />
<image class="dim51 " src={{resList['8c31274b-1016-4b8c-b413-9fc98174e118'].url}} />
<image class="xi_you_qia_dim50 " src={{resList['a47a9645-1d0d-482b-af10-154def15e9f9'].url}} />
<image class="xi_you_qia_dim50 " src={{resList['a47a9645-1d0d-482b-af10-154def15e9f9'].url}} />
<image class="getcardimg " src={{resList['71612c2a-b0dc-463b-82dd-24a427e58ca1'].url}} />
<image class="getcardimg " src={{resList['71612c2a-b0dc-463b-82dd-24a427e58ca1'].url}} />
<span class="getcardtitle "> 运气爆棚! 解锁一张新卡牌</span>
<text class="getcardtitle "> 运气爆棚!\n解锁一张新卡牌</text>
<image class="getcardclosebtn " src={{resList['878b3751-e6b3-4ae6-9811-77e938801873'].url}} />
<image class="getcardclosebtn "onTap="hiddenPanelEvent" data-value="{{'getcardpanel'}}" src={{resList['878b3751-e6b3-4ae6-9811-77e938801873'].url}} />
<view class="fu_biao_ti45 ">
<view class="fu_biao_ti45 ">
<image class="yuan_jiao_ju368847 " src={{resList['d7329665-f4f6-42bc-ab46-0af63a0837eb'].url}} />
<image class="yuan_jiao_ju368847 " src={{resList['d7329665-f4f6-42bc-ab46-0af63a0837eb'].url}} />
<span class="getcardcontenttext ">再抽取n张不同卡牌即可领取奖励</span>
<text class="getcardcontenttext ">再抽取n张不同卡牌即可领取奖励</text>
</view>
</view>
</view>
</view>
\ No newline at end of file
\ No newline at end of file
taobao_mini/client/components/comgetcardpanel/comgetcardpanel.js
View file @
10efe42a
...
@@ -4,9 +4,14 @@ import resList from '../../resconfig/resList';
...
@@ -4,9 +4,14 @@ import resList from '../../resconfig/resList';
Component
({
Component
({
props
:
{},
props
:
{},
data
:
{},
data
:
{},
methods
:
{},
methods
:
{
hiddenPanelEvent
(
e
){
console
.
log
(
this
)
this
.
props
.
onTapHiddenPanelEvent
(
e
);
}
},
onIni
t
(
props
)
{
didMoun
t
(
props
)
{
this
.
setData
({
this
.
setData
({
resList
:
resList
resList
:
resList
});
});
...
...
taobao_mini/client/components/comrulepanel/comrulepanel.acss
View file @
10efe42a
/* 程序样式 */
@import './your.acss';
.rulepanel {
.rulepanel {
width: 633rpx;
width: 633rpx;
height: 840rpx;
height: 840rpx;
...
...
taobao_mini/client/components/comrulepanel/comrulepanel.axml
View file @
10efe42a
<view class="rulepanel ">
<image class="dim1131 " src={{resList['603034bb-2c7d-42c4-9be4-60aea30e0820'].url}} />
<view class="rulepanel">
<span class="ruletext ">
<image class="dim1131 " src={{resList['603034bb-2c7d-42c4-9be4-60aea30e0820'].url}} />
活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则
<view class="ruletext ">
</span>
活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则活动规则
<image class="ruleclosebtn " src={{resList['878b3751-e6b3-4ae6-9811-77e938801873'].url}} />
</view>
</view>
<image class="ruleclosebtn " onTap="hiddenPanelEvent" data-value="{{'rulepanel'}}" src={{resList['878b3751-e6b3-4ae6-9811-77e938801873'].url}} />
\ No newline at end of file
</view>
taobao_mini/client/components/comrulepanel/comrulepanel.js
View file @
10efe42a
...
@@ -4,12 +4,18 @@ import resList from '../../resconfig/resList';
...
@@ -4,12 +4,18 @@ import resList from '../../resconfig/resList';
Component
({
Component
({
props
:
{},
props
:
{},
data
:
{},
data
:
{},
methods
:
{},
methods
:
{
hiddenPanelEvent
(
e
){
console
.
log
(
this
)
this
.
props
.
onTapHiddenPanelEvent
(
e
);
}
},
onInit
(
props
)
{
didMount
(
props
)
{
console
.
log
(
"603034bb-2c7d-42c4-9be4-60aea30e0820"
,
resList
[
'603034bb-2c7d-42c4-9be4-60aea30e0820'
].
url
)
this
.
setData
({
this
.
setData
({
resList
:
resList
resList
:
resList
});
});
}
}
,
});
});
\ No newline at end of file
taobao_mini/client/components/comrulepanel/your.acss
0 → 100644
View file @
10efe42a
.ruletext{
overflow-y:scroll;
}
\ No newline at end of file
taobao_mini/client/myComponents/panel/panel.acss
0 → 100644
View file @
10efe42a
.win_bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
}
.win_bg > * {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
display: none;
}
.win_bg > *:first-of-type{
display: block;
}
\ No newline at end of file
taobao_mini/client/myComponents/panel/panel.axml
0 → 100644
View file @
10efe42a
<view class="win_bg" a:if={{showWinLists.length>0}}>
<rulepanel a:if={{showWinLists.indexOf("rulepanel")!=-1}} onTapHiddenPanelEvent="hiddenPanelEvent" />
<getcardpanel a:if={{showWinLists.indexOf("getcardpanel")!=-1}} onTapHiddenPanelEvent="hiddenPanelEvent" />
</view>
taobao_mini/client/myComponents/panel/panel.js
0 → 100644
View file @
10efe42a
'use strict'
;
Component
({
props
:
{
showWinLists
:[]
},
data
:
{},
methods
:
{
hiddenPanelEvent
(
e
){
this
.
props
.
onTapHiddenPanelEvent
(
e
);
}
},
onInit
(
props
)
{
},
});
\ No newline at end of file
taobao_mini/client/myComponents/panel/panel.json
0 → 100644
View file @
10efe42a
{
"component"
:
true
,
"usingComponents"
:
{
"rulepanel"
:
"../../components/comrulepanel/comrulepanel"
,
"getcardpanel"
:
"../../components/comgetcardpanel/comgetcardpanel"
}
}
\ No newline at end of file
taobao_mini/client/pages/pageindexpage/pageindexpage.acss
View file @
10efe42a
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
/* 程序样式 */
/* 程序样式 */
@import './
animation
.acss';
@import './
your
.acss';
/* 以下是编辑器导出样式,可从编辑器直接覆盖 */
/* 以下是编辑器导出样式,可从编辑器直接覆盖 */
...
...
taobao_mini/client/pages/pageindexpage/pageindexpage.axml
View file @
10efe42a
...
@@ -49,12 +49,12 @@
...
@@ -49,12 +49,12 @@
</view>
</view>
</view>
</view>
</view>
</view>
<view class="indexmycardbtn ">
<view class="indexmycardbtn
btn
">
<image class="indexmycardbtnbg " src={{resList['0f9fe800-6f3a-4a3d-a76c-93378a58e261'].url}} />
<image class="indexmycardbtnbg " src={{resList['0f9fe800-6f3a-4a3d-a76c-93378a58e261'].url}} />
<view class="indexmycardbtncount fontVerticalCenter">{{cardTypeCollectedCount}}/{{cardTypeCount}} </view>
<view class="indexmycardbtncount fontVerticalCenter">{{cardTypeCollectedCount}}/{{cardTypeCount}} </view>
</view>
</view>
<image class="indextaskbtn " src={{resList['ddece383-122a-4ed6-b035-dc695987650d'].url}} />
<image class="indextaskbtn
btn
" src={{resList['ddece383-122a-4ed6-b035-dc695987650d'].url}} />
<view class="indexjoinbtn
">
// <view class="indexjoinbtn btn" onTap="doJoin
">
<image class="indexjoinbtnbg " src={{resList['1f2538c3-c2fb-4792-9c6d-7cd756ed64ba'].url}} />
<image class="indexjoinbtnbg " src={{resList['1f2538c3-c2fb-4792-9c6d-7cd756ed64ba'].url}} />
<view class="indexjoinbtncount ">
<view class="indexjoinbtncount ">
<image class="indexjoinbtncountbg " src={{resList['c7838e10-23c7-4127-b5c6-c137c88aa26e'].url}} />
<image class="indexjoinbtncountbg " src={{resList['c7838e10-23c7-4127-b5c6-c137c88aa26e'].url}} />
...
@@ -71,7 +71,9 @@
...
@@ -71,7 +71,9 @@
<view class="indexpropuname textOverflow">{{CarouselListNow.userNick}}</view>
<view class="indexpropuname textOverflow">{{CarouselListNow.userNick}}</view>
<view class="indexproptext textOverflow">获得{{CarouselListNow.name}}</view>
<view class="indexproptext textOverflow">获得{{CarouselListNow.name}}</view>
</view>
</view>
<image class="indexrulebtn " src={{resList['abc5f112-fa04-42fa-bfec-f633567807c8'].url}} />
<image class="indexrulebtn "
onTap="showPanelEvent" data-value="{{'rulepanel'}}"
src={{resList['abc5f112-fa04-42fa-bfec-f633567807c8'].url}} />
<image class="indexrecordbtn " src={{resList['5a6679e0-89f7-4582-a89b-116a35e9750a'].url}} />
<image class="indexrecordbtn " src={{resList['5a6679e0-89f7-4582-a89b-116a35e9750a'].url}} />
</view>
</view>
<panel showWinLists="{{showWinLists}}" onTapHiddenPanelEvent="hiddenPanelEvent"/>
</view>
</view>
\ No newline at end of file
taobao_mini/client/pages/pageindexpage/pageindexpage.js
View file @
10efe42a
...
@@ -11,12 +11,14 @@ const { commonToast, getAuthUserInfo, navigateToOutside } = tbcc.tb;
...
@@ -11,12 +11,14 @@ const { commonToast, getAuthUserInfo, navigateToOutside } = tbcc.tb;
Page
({
Page
({
data
:
{
data
:
{
// showWinLists:["rulepanel","getcardpanel"],
showWinLists
:[]
},
},
onLoad
(
props
)
{
onLoad
(
props
)
{
this
.
setData
({
this
.
setData
({
resList
:
resList
resList
:
resList
,
showPanel
:
this
.
showPanel
});
});
//初始化首页信息
//初始化首页信息
this
.
getIndex
()
this
.
getIndex
()
...
@@ -27,10 +29,13 @@ Page({
...
@@ -27,10 +29,13 @@ Page({
async
getIndex
()
{
async
getIndex
()
{
const
{
activityId
}
=
getApp
();
const
{
activityId
}
=
getApp
();
//获取活动基础信息
//获取活动基础信息
let
BaseInfo
=
await
API
.
getActivityBaseInfoById
({
activityId
})
let
BaseInfo
=
await
API
.
getActivityBaseInfoById
({
activityId
}).
catch
(
res
=>
{
commonToast
(
res
&&
res
.
message
);
})
||
{};
//获取首页基础信息
//获取首页基础信息
let
CollectCardInfo
=
await
API
.
getCollectCardInfo
({
activityId
})
let
CollectCardInfo
=
await
API
.
getCollectCardInfo
({
activityId
}).
catch
(
res
=>
{
commonToast
(
res
&&
res
.
message
);
})
||
{};
let
{
let
{
joinedTimesPrizeList
,
joinedTimesPrizeList
,
...
@@ -57,7 +62,10 @@ Page({
...
@@ -57,7 +62,10 @@ Page({
async
setCarouselList
(){
async
setCarouselList
(){
const
{
activityId
}
=
getApp
();
const
{
activityId
}
=
getApp
();
//获取中奖轮播
//获取中奖轮播
let
CarouselList
=
await
API
.
getAwardsCarouselList
({
activityId
});
let
CarouselList
=
await
API
.
getAwardsCarouselList
({
activityId
}).
catch
(
res
=>
{
commonToast
(
res
&&
res
.
message
);
})
||
{};
let
{
list
}
=
CarouselList
.
data
;
let
{
list
}
=
CarouselList
.
data
;
this
.
setData
({
this
.
setData
({
CarouselListNow
:
list
[
0
]
CarouselListNow
:
list
[
0
]
...
@@ -73,5 +81,61 @@ Page({
...
@@ -73,5 +81,61 @@ Page({
CarouselListNow
:
list
[
i
]
CarouselListNow
:
list
[
i
]
})
})
},
1000
)
},
1000
)
},
/**
* 点击打开弹窗
*/
showPanelEvent
(
e
)
{
let
name
=
e
.
target
.
dataset
.
value
;
this
.
showPanel
(
name
)
},
async
doJoin
(){
//抽卡
const
{
activityId
}
=
getApp
();
let
doJoin
=
await
API
.
doJoin
({
activityId
}).
catch
(
res
=>
{
commonToast
(
res
&&
res
.
message
);
})
||
{};
this
.
setData
({
doJoinData
:
doJoin
})
this
.
showPanel
(
"getcardpanel"
)
},
/**
* 点击关闭弹窗
*/
hiddenPanelEvent
(
e
)
{
let
name
=
e
.
target
.
dataset
.
value
;
this
.
hiddenPanel
(
name
)
},
/**
* 打开弹窗
* @param {*} name
*/
showPanel
(
name
)
{
let
showWinLists
=
this
.
data
.
showWinLists
if
(
showWinLists
.
indexOf
(
name
)
==
-
1
)
{
//将弹窗插入在最前面
showWinLists
.
push
(
name
)
console
.
log
(
"showWinLists"
,
showWinLists
)
this
.
setData
({
showWinLists
})
}
},
/**
* 关闭弹窗
* @param {*} name
*/
hiddenPanel
(
name
)
{
let
showWinLists
=
this
.
data
.
showWinLists
var
index
=
showWinLists
.
indexOf
(
name
);
if
(
index
>
-
1
)
{
showWinLists
.
splice
(
index
,
1
);
this
.
setData
({
showWinLists
})
}
}
}
});
});
\ No newline at end of file
taobao_mini/client/pages/pageindexpage/pageindexpage.json
View file @
10efe42a
{
{
"usingComponents"
:
{}
"usingComponents"
:
{
"panel"
:
"../../myComponents/panel/panel"
}
}
}
\ No newline at end of file
taobao_mini/client/pages/pageindexpage/
animation
.acss
→
taobao_mini/client/pages/pageindexpage/
your
.acss
View file @
10efe42a
File moved
taobao_mini/mocks/collectGood.getActivityBaseInfoById.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
,
"message"
:
"proident Excepteur aute laborum"
,
"code"
:
"cillum in amet laborum Excepteur"
,
"data"
:
{
"_id"
:
"do"
,
"createTime"
:
1604709367853
,
"rule"
:
"aliquip consectetur elit mollit"
,
"startTime"
:
1600279071706
,
"endTime"
:
1611480504129
,
"title"
:
"nostrud laborum velit sunt"
,
"awardReceiveExpiredTime"
:
1615223049931
}
}
\ No newline at end of file
taobao_mini/mocks/mine.authorize.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
}
\ No newline at end of file
taobao_mini/mocks/mine.getAppData.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
,
"data"
:
{
"avatar"
:
"https://source.unsplash.com/user/erondu/76x76"
,
"nickName"
:
"我啊是大请问"
,
"activityId"
:
"string"
,
"openId"
:
"string"
,
"inviteId"
:
"string"
,
"isFollow"
:
true
}
}
taobao_mini/mocks/mine.navigateToPage.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
}
\ No newline at end of file
taobao_mini/mocks/mine.showModal.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.doBrowseGoodsTask.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
,
"data"
:
{
"value"
:
"500"
,
"backTime"
:
"1989897768"
,
"serverTime"
:
"188888776"
},
"message"
:
"fuck"
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.doFollowTask.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
1
,
"data"
:
{
"value"
:
"500"
,
"backTime"
:
"1989897768"
,
"serverTime"
:
"188888776"
},
"message"
:
"fuck"
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.doSignTask.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
false
,
"data"
:
{
"value"
:
"500"
,
"backTime"
:
"1989897768"
,
"serverTime"
:
"188888776"
},
"message"
:
"fuck"
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.exchangeGood.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
1
,
"data"
:
{
"channel"
:
"aliqua sint fugiat non do"
,
"strategyCode"
:
"anim"
,
"code"
:
"amet"
,
"image"
:
"ea nulla aute eu"
,
"name"
:
"in"
,
"type"
:
-27273675.128173023
},
"code"
:
"quis nostrud fugiat pariatur"
,
"message"
:
"欢乐币不足"
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.exchangeGoodList.json
deleted
100644 → 0
View file @
022c6912
This diff is collapsed.
Click to expand it.
taobao_mini/mocks/tmallCat.getMyPrizeList.json
deleted
100644 → 0
View file @
022c6912
{
"code"
:
"000000"
,
"data"
:
{
"list"
:
[
{
"_id"
:
"5f71d38a67f1375241ab6b2b"
,
"activityId"
:
"5f7183e852bbded304b27d71"
,
"amount"
:
20000
,
"amount_unit"
:
"分"
,
"asac"
:
"1A202010JWPLV3428VWIEP"
,
"can_win"
:
true
,
"code"
:
"a66621ec7c434842bfe4d01082128f1d"
,
"createDay"
:
"2020/09/28"
,
"createTime"
:
1601295242020
,
"display_amount"
:
"200"
,
"display_amount_unit"
:
"元"
,
"display_start_fee"
:
"2000"
,
"drawStatus"
:
1
,
"effective_end"
:
"2020-10-11 00:00:00"
,
"effective_start"
:
"2020-08-24 00:00:00"
,
"effective_time_mode"
:
"ABSOLUTE"
,
"ename"
:
""
,
"end_date"
:
"2020-09-25 23:59:59"
,
"expiredTime"
:
1601628302000
,
"feature"
:
{
"bcType"
:
"B"
,
"couponTag"
:
"1002"
,
"itemIds"
:
"611952670190"
,
"sellerId"
:
"2838892713"
,
"shopId"
:
"150920153"
,
"shopLogo"
:
"/5a/f4/TB16vpHhER1BeNjy0FmSuv0wVXa.jpg"
,
"shopName"
:
"华为官方旗舰店"
,
"shopSiteCategory"
:
"3"
,
"shopUrl"
:
"//store.taobao.com/shop/view_shop.htm?shop_id=150920153"
,
"spreadId"
:
"4327893208"
,
"templateCode"
:
"15398721100"
,
"title"
:
"MatePro"
,
"uuid"
:
"1094cefe51a348698e6647f5e6ba4181"
},
"has_inventory"
:
true
,
"id"
:
"5f71d38a67f1375241ab6b2b"
,
"image"
:
""
,
"material"
:
{
"SHORT_NAME"
:
"华为MatePad Pro"
,
"brandLogo"
:
"T1bOKxFoFcXXb1upjX.jpg"
,
"itemIDTianHe"
:
"611952670190"
,
"itemMainPicture"
:
"O1CN01HHEnRU1KZ6mud3VjW_!!6000000001177-2-yinhe.png"
,
"mamaCouponValue"
:
"学生专享200元"
,
"mamaShopItemurl"
:
"https://detail.tmall.com/item.htm?spm=a1z10.1-b-s.w20163031-21766675787.18.10577597DWdOA0&id=611952670190&scene=taobao_shop&sku_properties=5919063:6536025"
},
"name"
:
"fuckyou"
,
"openId"
:
"AAHaNvjuAMaJc3uyPjfEGuv9"
,
"prizeDataType"
:
2
,
"prizeId"
:
"5f6c3e7d114fbbc8c98bffae"
,
"remark"
:
""
,
"send_life_cycle_state"
:
"running"
,
"show_rules"
:
{
"show_rule_dto"
:
[
{
"passed"
:
true
,
"type"
:
"WIN_LIMIT"
}
]
},
"start_date"
:
"2020-08-27 16:21:56"
,
"start_fee"
:
200000
,
"strategyCode"
:
"08c6f4e89c7b412792a2395fa3d0fd4a"
,
"test"
:
false
,
"title"
:
"MatePro"
,
"type"
:
1
,
"type_desc"
:
"商品优惠券"
,
"updateTime"
:
1601295242020
,
"userNick"
:
"tb80525668"
},
{
"_id"
:
"5f71d38852bbded304b3f8a3"
,
"activityId"
:
"5f7183e852bbded304b27d71"
,
"createDay"
:
"2020/09/28"
,
"createTime"
:
1601295240072
,
"drawStatus"
:
1
,
"ename"
:
""
,
"expiredTime"
:
1601628302000
,
"id"
:
"5f71d38852bbded304b3f8a3"
,
"image"
:
"https://img.alicdn.com/imgextra/i2/2208492139886/O1CN01XlNdWj2Mtq8E9OEw1_!!2208492139886-2-miniprogram.png"
,
"name"
:
"兑换奖励235"
,
"openId"
:
"AAHaNvjuAMaJc3uyPjfEGuv9"
,
"prizeDataType"
:
2
,
"prizeId"
:
"5f6b09b39897b412b595a32b"
,
"remark"
:
""
,
"type"
:
3
,
"updateTime"
:
1601295240072
,
"userNick"
:
"tb80525668"
},
{
"_id"
:
"5f71d38567f1375241ab6b20"
,
"activityId"
:
"5f7183e852bbded304b27d71"
,
"amount"
:
10000
,
"amount_unit"
:
"分"
,
"asac"
:
"1A202010JWPLV3428VWIEP"
,
"can_win"
:
true
,
"code"
:
"f8564ef50a86418b9226ce1d9bb6ace6"
,
"createDay"
:
"2020/09/28"
,
"createTime"
:
1601295237953
,
"display_amount"
:
"100"
,
"display_amount_unit"
:
"元"
,
"display_start_fee"
:
"200"
,
"drawStatus"
:
1
,
"effective_end"
:
"2020-09-30 00:00:00"
,
"effective_start"
:
"2020-08-28 00:00:00"
,
"effective_time_mode"
:
"ABSOLUTE"
,
"ename"
:
""
,
"end_date"
:
"2020-09-26 23:59:59"
,
"expiredTime"
:
1601628302000
,
"feature"
:
{
"bcType"
:
"B"
,
"couponTag"
:
"1002"
,
"itemIds"
:
"611439436633"
,
"sellerId"
:
"2838892713"
,
"shopId"
:
"150920153"
,
"shopLogo"
:
"/5a/f4/TB16vpHhER1BeNjy0FmSuv0wVXa.jpg"
,
"shopName"
:
"华为官方旗舰店"
,
"shopSiteCategory"
:
"3"
,
"shopUrl"
:
"//store.taobao.com/shop/view_shop.htm?shop_id=150920153"
,
"spreadId"
:
"4328244590"
,
"templateCode"
:
"15417747656"
,
"title"
:
"freebuds 3"
,
"uuid"
:
"ea9a79c0459640f8aeb94c24530e4141"
},
"has_inventory"
:
true
,
"id"
:
"5f71d38567f1375241ab6b20"
,
"image"
:
""
,
"material"
:
{
"brandLogo"
:
"T1bOKxFoFcXXb1upjX.jpg"
},
"name"
:
"fuckyou3"
,
"openId"
:
"AAHaNvjuAMaJc3uyPjfEGuv9"
,
"prizeDataType"
:
2
,
"prizeId"
:
"5f6c3e7d114fbbc8c98bffae"
,
"remark"
:
""
,
"send_life_cycle_state"
:
"running"
,
"show_rules"
:
{
"show_rule_dto"
:
[
{
"passed"
:
true
,
"type"
:
"WIN_LIMIT"
}
]
},
"start_date"
:
"2020-08-28 11:04:24"
,
"start_fee"
:
20000
,
"strategyCode"
:
"08c6f4e89c7b412792a2395fa3d0fd4a"
,
"test"
:
false
,
"title"
:
"freebuds 3"
,
"type"
:
1
,
"type_desc"
:
"商品优惠券"
,
"updateTime"
:
1601295237953
,
"userNick"
:
"tb80525668"
},
{
"_id"
:
"5f71d3849897b412b5a4fa47"
,
"activityId"
:
"5f7183e852bbded304b27d71"
,
"asac"
:
"1A202010JWPLV3428VWIEP"
,
"can_win"
:
true
,
"code"
:
"7254115b0fcc4c77bdbb35ed658c1db2"
,
"createDay"
:
"2020/09/28"
,
"createTime"
:
1601295236035
,
"drawStatus"
:
1
,
"effective_interval"
:
31
,
"effective_time_mode"
:
"RELATIVE"
,
"ename"
:
""
,
"end_date"
:
"2020-12-23 23:59:59"
,
"expiredTime"
:
1601628302000
,
"feature"
:
{
"couponTag"
:
"49534003"
,
"description"
:
"酒店信用住立减券"
,
"sellerId"
:
"4064563648"
,
"spreadId"
:
"3465672059"
,
"subActId"
:
"34922"
,
"templateCode"
:
"3545184060"
,
"title"
:
"酒店信用住优惠券"
,
"uuid"
:
"6ff76ab7cf3c4002be6f64902e659322"
},
"has_inventory"
:
true
,
"id"
:
"5f71d3849897b412b5a4fa47"
,
"image"
:
""
,
"interval_time_unit"
:
"DAYS"
,
"material"
:
{
"benefitBigPic"
:
"https://gw.alicdn.com/tfs/TB1aF67RFP7gK0jSZFjXXc5aXXa-895-703.png"
,
"benefitSmallPic"
:
"https://gw.alicdn.com/tfs/TB1aF67RFP7gK0jSZFjXXc5aXXa-895-703.png"
,
"benefitUrl"
:
"https://h5.m.taobao.com/trip/hotel/search/index.html?ttid=12zfb000000416"
},
"name"
:
"fuckyou2"
,
"openId"
:
"AAHaNvjuAMaJc3uyPjfEGuv9"
,
"prizeDataType"
:
2
,
"prizeId"
:
"5f6c3e7d114fbbc8c98bffae"
,
"remark"
:
""
,
"send_life_cycle_state"
:
"running"
,
"show_rules"
:
{
"show_rule_dto"
:
[
{
"passed"
:
true
,
"type"
:
"WIN_LIMIT"
}
]
},
"start_date"
:
"2020-07-15 15:45:12"
,
"strategyCode"
:
"08c6f4e89c7b412792a2395fa3d0fd4a"
,
"test"
:
false
,
"title"
:
"酒店最高减50元券"
,
"type"
:
1
,
"type_desc"
:
"飞猪资格券"
,
"updateTime"
:
1601295236035
,
"userNick"
:
"tb80525668"
}
]
},
"message"
:
"成功"
,
"success"
:
true
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.getSence.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
,
"message"
:
""
,
"data"
:
{
"sence"
:
1
,
"senceTips"
:[
"测试"
,
"测试"
],
"senceGuide"
:{
"1"
:
false
,
"2"
:
false
,
"3"
:
false
,
"4"
:
true
}
}
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.getTaskList.json
deleted
100644 → 0
View file @
022c6912
{
"code"
:
"000000"
,
"data"
:
[
{
"completeTimes"
:
0
,
"rewards"
:
1
,
"status"
:
2
,
"taskRateType"
:
2
,
"taskType"
:
"sign"
,
"times"
:
1
,
"title"
:
"每日签到"
,
"todayCompleteTimes"
:
0
,
"waitReceive"
:
0
},
{
"completeTimes"
:
0
,
"rewards"
:
10
,
"sellerId"
:
"oooo"
,
"status"
:
1
,
"taskRateType"
:
1
,
"taskType"
:
"follow"
,
"title"
:
"关注店铺1"
},
{
"completeTimes"
:
0
,
"rewards"
:
10
,
"sellerId"
:
"wwwww"
,
"status"
:
1
,
"taskRateType"
:
1
,
"taskType"
:
"follow"
,
"title"
:
"关注店铺2"
},
{
"completeTimes"
:
0
,
"itemIds"
:
""
,
"rewards"
:
"2"
,
"status"
:
1
,
"taskRateType"
:
2
,
"taskType"
:
"browseGoods"
,
"times"
:
1
,
"title"
:
"浏览商品"
,
"todayCompleteTimes"
:
0
,
"url"
:
"http://www.taobao.com"
,
"waitReceive"
:
0
},
{
"completeTimes"
:
0
,
"rewards"
:
"1"
,
"status"
:
1
,
"taskRateType"
:
1
,
"taskType"
:
"invites"
,
"times"
:
3
,
"title"
:
"邀请"
,
"todayCompleteTimes"
:
0
,
"waitReceive"
:
0
}
],
"message"
:
"成功"
,
"success"
:
true
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.getUserEnergy.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
,
"data"
:
2000
,
"code"
:
"culpa eu Ut"
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.getUserInfo.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
,
"message"
:
""
,
"data"
:
{
"catType"
:
4
,
"userNick"
:
"Edwise"
,
"energy"
:
1000
,
"happyCoin"
:
1000
,
"experience"
:
80
,
"level"
:
"1"
,
"avatar"
:
"http://wwc.alicdn.com/avatar/getAvatar.do?userIdStr=vFHbMm8SPFPHPFRHPG7HPmPhvmgyPGPIP07-OF*eMmQT&width=80&height=80&type=sns"
,
"sence"
:
1
,
"catName"
:
"哈哈哈"
,
"senceTips"
:[
"1说话说话说话说话说话说话说话说话说话说话说话"
,
"2说话说话说话说话说话说话说话说话说话说话说话说话"
,
"3说话说话说话说话说话说话说话说话说话说话说话说话"
],
"energyMax"
:
2000
,
"experienceMax"
:
100
,
"senceGuide"
:
true
}
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.interaction.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
,
"data"
:
{
"tips"
:
"梳毛梳毛梳毛梳毛梳毛梳毛梳毛梳毛梳毛梳毛梳毛梳毛梳毛梳毛梳毛"
,
"isUpgrade"
:
true
,
"channel"
:
"aliqua"
,
"strategyCode"
:
"dolore"
,
"code"
:
"et nostrud adipisicing"
,
"image"
:
"occaecat aliquip"
,
"name"
:
"officia et deserunt ut"
,
"type"
:
65894870.29773912
},
"code"
:
"culpa eu Ut"
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.login.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
,
"data"
:{
"openId"
:
"incididunt non"
},
"code"
:
"dolor ex"
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.recallCat.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
,
"data"
:
{
"value"
:
100
,
"type"
:
4
,
"backType"
:
1
,
"desc"
:
"恭喜恭喜恭喜恭喜恭喜恭喜恭喜恭喜恭喜恭喜"
,
"tips"
:
[]
}
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.recallInfo.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
,
"data"
:
{
"value"
:
"500"
,
"backTime"
:
"1989897768"
,
"serverTime"
:
"188888776"
}
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.receiveTaskRewards.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
1
,
"data"
:
{
"energy"
:
"500"
,
"times"
:
"1989897768"
,
"serverTime"
:
"188888776"
},
"message"
:
"fuck"
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.recoverEnergy.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
,
"data"
:
null
,
"code"
:
"culpa eu Ut"
}
\ No newline at end of file
taobao_mini/mocks/tmallCat.updateSenceGuide.json
deleted
100644 → 0
View file @
022c6912
{
"success"
:
true
,
"data"
:
null
,
"code"
:
"culpa eu Ut"
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment