Commit 9824b143 by FE

Merge branch 'new-share' into pre

parents c1662461 e0fec30e
......@@ -100,17 +100,17 @@ class RedPacket extends PureComponent {
});
}
}
this.fetchShareInfo();
}
// 获取分享信息
fetchShareInfo = () => {
const share_code = getParam('share_code');
http.get(`${API.home}/sys/redPacket/shareUrl/${getParam('id')}`).then(res => {
const { code, data } = res.data;
if(code === 200) {
this.setState({
shareInfo: data
shareInfo: share_code? Object.assign({}, data, {share_code}) : data
});
}
});
......
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