Commit 2e1ce854 authored by leiqingsong's avatar leiqingsong

优化空投池得gund

parent 44e7cc86
......@@ -21,7 +21,7 @@
<p
v-for="(item, index) in userPoolVos"
:key="index"
@click="openUserInfo(item)"
@tap="openUserInfo(item)"
>
用户{{ item.userId }}进入空投池
</p>
......@@ -79,6 +79,7 @@ export default {
this.userInfoDialog = false;
},
openUserInfo(item) {
console.log(123);
this.userInfoDialog = true;
this.currentUser = item;
this.currentUser.avatar = process.env.VUE_APP_BASE_URL + item.headImage;
......@@ -257,6 +258,7 @@ $white: #ffffff;
display: flex;
flex-direction: column;
}
.scroll {
animation-name: marquee;
animation-timing-function: linear;
......
......@@ -250,7 +250,7 @@ export default {
cashOut(params)
.then(res => {
this.resultDialog = true;
if (res.code === 0) {
if (res.code == 0) {
this.resultDialogTitle = "提现成功";
this.resultDialogTip = "提现成功,请及时查收";
this.resultDialogImg = require("@/assets/images/成功.png");
......
......@@ -3,7 +3,6 @@
<div class="baseInfo">
<img class="avatar" src="@/assets/images/avatar.png" alt="用户头像" />
<span class="userName">{{ inviteeItem.userId }}</span>
<span style="font-size: 12px;color:#666666">西天森合伙人</span>
</div>
<div class="detail">
<p>
......
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