Commit f6835f08 authored by zhangyuan's avatar zhangyuan

添加前端埋点

parent 9c57450c
......@@ -21,9 +21,9 @@ export default [
"code": null,
"data": {
shareInfo: {
"title": '万亿体验金狂欢节',
"content": '快来助我一臂之力,一起领百万理财体验金~',
"thumbnail": '//yun.duiba.com.cn/polaris/sharepic.8254652ad0b961401148278339f92ae7da94cf8b.png'
"title": "万亿体验金狂欢节",
"content": "快来助我一臂之力,一起领百万理财体验金~",
"thumbnail": "//yun.duiba.com.cn/polaris/sharepic.8254652ad0b961401148278339f92ae7da94cf8b.png"
},
}
}
......
......@@ -60,11 +60,12 @@ class SignCom extends React.Component {
? <Button className="signed_btn md9" onClick={this.signedHandle}></Button>
: <Button className="sign_btn md9" onClick={this.signHandle}></Button>
}
<span className="sign_total_tips">{`已累计签到${checkIn?.totalCheckIn}天`}</span>
<span className="sign_big_btn md10" onClick={() => {
if (!store.judgeActTime()) return;
ModalCtrl.showModal(TaskPanel)
}}>{`再领${Math.floor(taskWealth / 10000)}万理财体验金`}</span>
}}>{Math.floor(taskWealth / 10000) > 0 ? `再领${Math.floor(taskWealth / 10000)}万理财体验金` : '查看更多任务'}</span>
<div className="sign_progress">
<span className="progress_bg"></span>
<div className="progress_bar_box">
......
......@@ -184,10 +184,6 @@ class Store {
if (firstMoneyPop) {
ModalCtrl.showModal(FirstPop, firstMoneyPop);
}
if (endPop) {
ModalCtrl.showModal(Tipspop);
}
// 更新产品信息
if (codeList?.length && CFG.channel == CHANNEL.HXLC) {
this.updateFundInfo(codeList)
......@@ -198,6 +194,9 @@ class Store {
ModalCtrl.showModal(NewbieModal, { type: giftPop?.type, actPrizeVO: giftPop?.actPrizeVO })
}
if (endPop) {
ModalCtrl.showModal(Tipspop);
}
}
judgeRedModal() {
......
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