|
|
|
@@ -22,7 +22,7 @@ |
|
|
|
<div class="txt-2"><span>{{ $t('user.registrationAdress') }}</span><span>{{ invitationLink + invitationCode |
|
|
|
}}</span></div> |
|
|
|
<div class="txt-3"><span>{{ $t('user.recommender') }}</span><span>{{ invitationCode }}</span></div> |
|
|
|
<el-button class="__copy_link_btn__" type="primary" style="background:rgb(21, 114, 255);">{{ $t('user.copyRegistrationInvitationLink') }}</el-button> |
|
|
|
<el-button class="__copy_link_btn__" type="primary">{{ $t('user.copyRegistrationInvitationLink') }}</el-button> |
|
|
|
</div> |
|
|
|
<div class="qr-code"> |
|
|
|
<div id="__qr-code__" style="width:120px;height:120px;"></div> |
|
|
|
@@ -31,7 +31,7 @@ |
|
|
|
<div class="table-container"> |
|
|
|
<div> |
|
|
|
<el-table border :data="tableData" style="width:100%" v-loading="loading" stripe> |
|
|
|
<el-table-column prop="ID" :label="$t('user.invitedFriends')" align="left" header-align="left"> |
|
|
|
<el-table-column prop="ID" :label="$t('user.invitedFriends')" align="left" header-align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div style="display:flex;align-items:center;padding-left:20px;"> |
|
|
|
<img :src="scope.row.avatarSrc" alt="" style="height:45px;width:45px;margin-right:10px;" /> |
|
|
|
@@ -47,7 +47,7 @@ |
|
|
|
<el-table-column prop="regTime" :label="$t('user.registrationTime')" align="center" header-align="center"> |
|
|
|
</el-table-column> |
|
|
|
<template slot="empty"> |
|
|
|
<span style="font-size: 12px">{{ |
|
|
|
<span>{{ |
|
|
|
loading ? $t('loading') : $t('noData') |
|
|
|
}}</span> |
|
|
|
</template> |
|
|
|
@@ -271,6 +271,13 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.__copy_link_btn__ { |
|
|
|
font-size: 14px; |
|
|
|
padding: 11px 15px; |
|
|
|
background: rgb(21, 114, 255); |
|
|
|
border-radius: 0; |
|
|
|
} |
|
|
|
|
|
|
|
.qr-code { |
|
|
|
width: 150px; |
|
|
|
display: flex; |
|
|
|
@@ -285,14 +292,15 @@ export default { |
|
|
|
/deep/ .el-table__header { |
|
|
|
th { |
|
|
|
background: rgb(245, 245, 246); |
|
|
|
font-size: 12px; |
|
|
|
font-size: 14px; |
|
|
|
color: rgb(36, 36, 36); |
|
|
|
font-weight: 400; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/deep/ .el-table__body { |
|
|
|
td { |
|
|
|
font-size: 12px; |
|
|
|
font-size: 14px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|