Commit 851de204 authored by leiqingsong's avatar leiqingsong

Merge branch 'dev_xll' of http://111.203.232.171:8888/Song/xitiansenmall into dev_lqs

parents 97ac2fd4 4d236a97
This diff is collapsed.
...@@ -81,6 +81,7 @@ export default { ...@@ -81,6 +81,7 @@ export default {
num: 12, num: 12,
label: "我的直推", label: "我的直推",
hasArrow: true, hasArrow: true,
urlName: "MyStatus",
field: "recommendUserCount" field: "recommendUserCount"
}, },
{ {
...@@ -272,7 +273,7 @@ $white: #ffffff; ...@@ -272,7 +273,7 @@ $white: #ffffff;
</style> </style>
<style lang="scss"> <style lang="scss">
.van-progress { .van-progress {
width: 250px; width: calc(100% - 72px);
height: 4px; height: 4px;
background-color: rgba(0, 0, 0, 0.2); background-color: rgba(0, 0, 0, 0.2);
.van-progress__portion { .van-progress__portion {
......
...@@ -95,6 +95,13 @@ export default { ...@@ -95,6 +95,13 @@ export default {
}; };
}, },
mounted() { mounted() {
let params = window.location.search
if(params){
let beInvitedCode = params.split('=')[1]
if(beInvitedCode){
this.form.beInvitedCode = beInvitedCode
}
}
if (this.timer) { if (this.timer) {
clearInterval(this.timer); clearInterval(this.timer);
} }
......
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