merge
@@ -9,7 +9,8 @@ import store from '@/store'
|
||||
|
||||
// 基础配置
|
||||
const config = {
|
||||
apiUrl : 'https://oapi.lianshang.vip/api/', // 正式环境
|
||||
// apiUrl : 'https://oapi.lianshang.vip/api/', // 正式环境
|
||||
apiUrl : 'http://api.ahxh.shangkelian.cn/api/', // 测试环境
|
||||
apiUrls : 'https://storage.lianshang.vip/', // 图片路径(测试/正式)
|
||||
timeout : 60000
|
||||
}
|
||||
|
||||
@@ -49,6 +49,15 @@ const vipVoucher = (data) =>{
|
||||
})
|
||||
}
|
||||
|
||||
// 编辑凭证
|
||||
const vipVoucherUpdate = (id,data) =>{
|
||||
return request({
|
||||
url : 'user/voucher/'+id+'/update',
|
||||
method : 'POST',
|
||||
data : data
|
||||
})
|
||||
}
|
||||
|
||||
// 用户协议
|
||||
const userAgree = (apiUrl) => {
|
||||
return request({
|
||||
@@ -62,5 +71,6 @@ export {
|
||||
vipWechatPay,
|
||||
vipCont,
|
||||
vipVoucher,
|
||||
userAgree
|
||||
userAgree,
|
||||
vipVoucherUpdate
|
||||
}
|
||||
|
||||
27
pages.json
@@ -63,13 +63,16 @@
|
||||
"path": "pages/vip/vip",
|
||||
"name": "vipIndex",
|
||||
"style": {
|
||||
"navigationBarTitleText": "开通节点"
|
||||
"navigationBarTitleText": "开通节点",
|
||||
"navigationBarBackgroundColor": "#774ffd",
|
||||
"navigationBarTextStyle":"white"
|
||||
}
|
||||
}, {
|
||||
"path": "pages/vip/agree",
|
||||
"name": "vipAgree",
|
||||
"style": {
|
||||
"navigationBarTitleText": "用户协议"
|
||||
"navigationBarTitleText": "用户协议",
|
||||
"navigationBarBackgroundColor": "#774ffd"
|
||||
}
|
||||
}, {
|
||||
"path": "pages/vip/examine",
|
||||
@@ -197,6 +200,16 @@
|
||||
"navigationBarBackgroundColor":"#976dff"
|
||||
}
|
||||
}, {
|
||||
"path": "pages/wallet/redProperty",
|
||||
"name": "walletRedProperty",
|
||||
"style": {
|
||||
"navigationBarTitleText": "现金红包",
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationBarTextStyle": "white",
|
||||
"navigationBarBackgroundColor":"#976dff"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/wallet/extract",
|
||||
"name": "Extract",
|
||||
"style": {
|
||||
@@ -205,6 +218,16 @@
|
||||
"navigationBarBackgroundColor": "#976dff",
|
||||
"navigationBarTextStyle": "white"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/wallet/extractRed",
|
||||
"name": "ExtractRed",
|
||||
"style": {
|
||||
"navigationBarTitleText": "提现红包",
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationBarBackgroundColor": "#976dff",
|
||||
"navigationBarTextStyle": "white"
|
||||
}
|
||||
}, {
|
||||
"path": "pages/verification/index",
|
||||
"name": "verificationIndex",
|
||||
|
||||
@@ -19,15 +19,20 @@
|
||||
<view class="content-title">发现更多</view>
|
||||
<view class="content-sumite">海量能量碎片等你解锁</view>
|
||||
<view class="sign">
|
||||
<view class="sign-list" :class="{ active: item.sign }" v-for="(item, index) in sign.signArr" :key="index">
|
||||
<view class="sign-list" :class="{ active: item.sign }" v-for="(item, index) in sign.signArr"
|
||||
:key="index">
|
||||
<view class="sign-tips" v-if="item.sign">
|
||||
<view class="sign-tips-text">已签</view>
|
||||
</view>
|
||||
<block v-if="index == 7">
|
||||
<image class="sign-list-img" :src="item.sign ? '../../static/user/sign_icon_last_active.png' : '../../static/user/sign_icon_last.png'" mode="aspectFill"></image>
|
||||
<image class="sign-list-img"
|
||||
:src="item.sign ? '../../static/user/sign_icon_last_active.png' : '../../static/user/sign_icon_last.png'"
|
||||
mode="aspectFill"></image>
|
||||
</block>
|
||||
<block v-else>
|
||||
<image class="sign-list-img" :src="item.sign ? '../../static/user/sign_icon_active.png' : '../../static/user/sign_icon.png'" mode="aspectFill"></image>
|
||||
<image class="sign-list-img"
|
||||
:src="item.sign ? '../../static/user/sign_icon_active.png' : '../../static/user/sign_icon.png'"
|
||||
mode="aspectFill"></image>
|
||||
</block>
|
||||
<view class="sign-list-day">
|
||||
{{ item.text }}
|
||||
@@ -39,6 +44,7 @@
|
||||
<view class="signBtn">
|
||||
<block v-if="sign.signCan">
|
||||
<view class="signBtn-go" @click="signClick" style="cursor:pointer">
|
||||
<u-icon name="calendar-fill" color="#333" size="40" />
|
||||
签到领取能量碎片
|
||||
</view>
|
||||
</block>
|
||||
@@ -54,19 +60,29 @@
|
||||
能量碎片任务
|
||||
</view>
|
||||
<block v-for="(item, index) in task" :key="index">
|
||||
<view class="task-item" v-if="item.rule.name != 'sign_crystal'" @click="JumpUrl(item.url, item.title, item.is_finish)">
|
||||
<view class="task-item" v-if="item.rule.name != 'sign_crystal'"
|
||||
@click="JumpUrl(item.url, item.title, item.is_finish)">
|
||||
<image class="task-icon" :src="item.ico" mode="aspectFill"></image>
|
||||
<view class="task-title">{{item.title}}</view>
|
||||
<view class="task-subtitle">{{item.remark}}</view>
|
||||
<view class="task-label" :class="{'active' : item.is_finish}">{{item.is_finish ? '已完成' : item.tips}}<image @click.stop="showHelp" class="task-label-icon" src="@/static/imgs/user-crystalMark-grey.png"></image></view>
|
||||
<view class="task-label" :class="{'active' : item.is_finish}">{{item.is_finish ? '已完成' : item.tips}}
|
||||
<image @click.stop="showHelp" class="task-label-icon"
|
||||
src="@/static/imgs/user-crystalMark-grey.png"></image>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
import { task, sign, operateSign } from '@/apis/interfaces/crystal'
|
||||
import { userIndex } from '@/apis/interfaces/user'
|
||||
import {
|
||||
task,
|
||||
sign,
|
||||
operateSign
|
||||
} from '@/apis/interfaces/crystal'
|
||||
import {
|
||||
userIndex
|
||||
} from '@/apis/interfaces/user'
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
@@ -165,13 +181,17 @@
|
||||
var type = open.openType;
|
||||
switch (type) {
|
||||
case 'switchTab':
|
||||
this.$Router.pushTab({name: open.path})
|
||||
this.$Router.pushTab({
|
||||
name: open.path
|
||||
})
|
||||
break;
|
||||
case 'web':
|
||||
window.location.href = open.path
|
||||
break;
|
||||
case 'navigateTo':
|
||||
this.$Router.push({name: open.path})
|
||||
this.$Router.push({
|
||||
name: open.path
|
||||
})
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -196,6 +216,7 @@
|
||||
top: 0;
|
||||
animation: cssAnimation 0s ease-in 4s forwards;
|
||||
}
|
||||
|
||||
.signPop {
|
||||
width: 60%;
|
||||
position: fixed;
|
||||
@@ -204,6 +225,7 @@
|
||||
top: 30%;
|
||||
height: 160px;
|
||||
animation: cssAnimation 0s ease-in 4s forwards;
|
||||
|
||||
.signPop-tips,
|
||||
.signPop-cont {
|
||||
position: absolute;
|
||||
@@ -211,16 +233,20 @@
|
||||
top: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.signPop-cont {
|
||||
color: #FFFFFF;
|
||||
text-align: center;
|
||||
padding-top: 90px;
|
||||
|
||||
.signPop-cont-name {
|
||||
font-size: 34rpx;
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
|
||||
.signPop-cont-text {
|
||||
text-align: center;
|
||||
|
||||
.signPop-cont-number {
|
||||
display: inline-block;
|
||||
color: #ffee4d;
|
||||
@@ -247,27 +273,33 @@
|
||||
background: #7c52fc;
|
||||
color: #FFFFFF;
|
||||
padding-bottom: 80rpx;
|
||||
|
||||
.content-title {
|
||||
margin-top: 30rpx;
|
||||
font-size: 40rpx;
|
||||
padding: ($padding/2) 45rpx 0;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
font-weight: bold;
|
||||
|
||||
.content-title-img {
|
||||
width: 32rpx;
|
||||
height: 32rpx;
|
||||
margin: 12rpx 20rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.content-sumite {
|
||||
padding: 0 45rpx 50rpx 45rpx;
|
||||
font-size: $title-size-sm;
|
||||
color: rgba($color: white, $alpha: .6);
|
||||
}
|
||||
|
||||
.sign {
|
||||
margin: 0 0 30rpx;
|
||||
padding: 0 30rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
.sign-list {
|
||||
width: calc(14.28% - 20rpx);
|
||||
position: relative;
|
||||
@@ -278,6 +310,7 @@
|
||||
border-radius: 10rpx;
|
||||
padding: 20rpx 0;
|
||||
box-sizing: border-box;
|
||||
|
||||
.sign-tips {
|
||||
position: absolute;
|
||||
top: -20rpx;
|
||||
@@ -290,9 +323,11 @@
|
||||
width: 60rpx;
|
||||
text-align: center;
|
||||
border-radius: 6rpx;
|
||||
|
||||
.sign-tips-text {
|
||||
transform: scale(0.85);
|
||||
}
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
@@ -305,21 +340,26 @@
|
||||
border-top: 8rpx solid #ef4034;
|
||||
}
|
||||
}
|
||||
|
||||
.sign-list-img {
|
||||
width: 38rpx;
|
||||
height: 38rpx;
|
||||
margin-bottom: 5rpx;
|
||||
}
|
||||
|
||||
.sign-list-day {
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
&.active {
|
||||
background-color: #ffdb00;
|
||||
// background-color: #ffdb00;
|
||||
background-image: linear-gradient(to right, #ffff7f, #ffdb00, #ffff7f);
|
||||
color: #413e30;
|
||||
box-shadow: 0 0 20rpx rgba(76,43,177,.3);
|
||||
box-shadow: 0 0 20rpx 10rpx rgba(0, 0, 0, .2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.sign-record {
|
||||
opacity: .8;
|
||||
padding: 0 40rpx;
|
||||
@@ -337,15 +377,21 @@
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
margin-top: -50rpx;
|
||||
|
||||
.signBtn-go {
|
||||
width: 100%;
|
||||
height: 100rpx;
|
||||
line-height: 100rpx;
|
||||
border-radius: 80rpx;
|
||||
background-color: #f9dc4a;
|
||||
// background-color: #f9dc4a;
|
||||
background-image: linear-gradient(to right, #ffff7f, #f9dc4a, #ffff7f);
|
||||
box-shadow: 0 0 20rpx 10rpx rgba(0, 0, 0, .2);
|
||||
color: #333333;
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
.u-icon{
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
.signBtn-go-icon {
|
||||
width: 36rpx;
|
||||
height: 36rpx;
|
||||
@@ -360,6 +406,7 @@
|
||||
padding: 110rpx 30rpx 0;
|
||||
box-sizing: border-box;
|
||||
background: white;
|
||||
|
||||
.task-liest {
|
||||
font-weight: bold;
|
||||
font-size: 34rpx;
|
||||
@@ -370,9 +417,11 @@
|
||||
position: relative;
|
||||
border-bottom: solid 2rpx #F5F5F5;
|
||||
padding: 30rpx 200rpx 40rpx 90rpx;
|
||||
|
||||
&:last-child {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.task-icon {
|
||||
position: absolute;
|
||||
top: 50rpx;
|
||||
@@ -380,21 +429,25 @@
|
||||
width: 58rpx;
|
||||
height: 58rpx
|
||||
}
|
||||
|
||||
.task-title {
|
||||
font-size: 32rpx;
|
||||
color: #333;
|
||||
line-height: 50rpx;
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
|
||||
.task-subtitle {
|
||||
color: #999;
|
||||
font-size: 26rpx;
|
||||
line-height: 30rpx;
|
||||
|
||||
text {
|
||||
font-size: $title-size-sm - 6;
|
||||
margin-left: $margin/2;
|
||||
}
|
||||
}
|
||||
|
||||
.task-label {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
@@ -405,9 +458,11 @@
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
|
||||
&.active {
|
||||
color: $text-gray-m;
|
||||
}
|
||||
|
||||
.task-label-icon {
|
||||
width: 34rpx;
|
||||
height: 34rpx;
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
</view>
|
||||
</view>
|
||||
<!-- 关于我们 -->
|
||||
<view @click="$router.push({name:'aboutUs'})" class="list-item">
|
||||
<view @click="$Router.push({name:'aboutUs'})" class="list-item">
|
||||
<view class="list-item-left">
|
||||
<image src="/static/imgs/mine-about.png" mode="widthFix" />
|
||||
<span>关于链商星球</span>
|
||||
|
||||
@@ -7,7 +7,8 @@
|
||||
<view class="customerCont-text">
|
||||
扫描上方微信二维码,添加您的专属VIP客服
|
||||
</view>
|
||||
<image class="customerClose" src="/static/user/user-customer-close.png" mode="aspectFill" @click="custEject"></image>
|
||||
<image class="customerClose" src="/static/user/user-customer-close.png" mode="aspectFill"
|
||||
@click="custEject"></image>
|
||||
</view>
|
||||
<!-- 专属客服弹出 end -->
|
||||
<!-- 消息列表弹出 start -->
|
||||
@@ -22,7 +23,8 @@
|
||||
<view class="newCont-btn" v-if="!newnextShow" @click="newNext()">
|
||||
下一条
|
||||
</view>
|
||||
<image class="newCont-close" src="/static/user/order-cancelPay.png" mode="aspectFill" @click="newEject()"></image>
|
||||
<image class="newCont-close" src="/static/user/order-cancelPay.png" mode="aspectFill" @click="newEject()">
|
||||
</image>
|
||||
</view>
|
||||
<!-- 消息列表弹出 end -->
|
||||
<!-- ios安全区 -->
|
||||
@@ -31,18 +33,23 @@
|
||||
<view class="header">
|
||||
<!-- 工具 -->
|
||||
<view class="user-tool">
|
||||
<image class="user-tool-icon" src="/static/user/user-top-00.png" mode="aspectFill" @click="$Router.push({name: 'setting'})"></image>
|
||||
<image class="user-tool-icon" src="/static/user/user-top-01.png" mode="aspectFill" @click="$Router.push({name: 'news'})"></image>
|
||||
<image class="user-tool-icon" src="/static/user/user-top-00.png" mode="aspectFill"
|
||||
@click="$Router.push({name: 'setting'})"></image>
|
||||
<image class="user-tool-icon" src="/static/user/user-top-01.png" mode="aspectFill"
|
||||
@click="$Router.push({name: 'news'})"></image>
|
||||
</view>
|
||||
<!-- 用户信息 -->
|
||||
<view class="user-info">
|
||||
<view class="user-portrait">
|
||||
<image class="user-portrait-head" :src="userData.avatar ? userData.avatar : '/static/user/user-portrait.png'" mode="aspectFill"></image>
|
||||
<image class="user-portrait-head"
|
||||
:src="userData.avatar ? userData.avatar : '/static/user/user-portrait.png'" mode="aspectFill">
|
||||
</image>
|
||||
</view>
|
||||
<view class="user-head">
|
||||
<view class="user-name">
|
||||
{{userData.nickname}}
|
||||
<image v-if="userData.identity" class="user-name-identity" :src="userData.identity.cover"></image>
|
||||
<image v-if="userData.identity" class="user-name-identity" :src="userData.identity.cover">
|
||||
</image>
|
||||
</view>
|
||||
<view class="user-status">
|
||||
邀请码:{{userData.invite}}
|
||||
@@ -58,8 +65,10 @@
|
||||
<view class="userVip-top-name" v-if="userIdentity.right">
|
||||
{{ userData.identity.id == 1 ? '开通' + userIdentity.right.name : '到期时间:' + userIdentity.times.ended_at}}
|
||||
</view>
|
||||
<view class="userVip-top-btn" v-if="userData.identity.id != 5" @click="openVip(userIdentity.right.identity_id)">
|
||||
{{ userData.identity.id == 1 ? '去开通' : '去升级'}}<image class="userVip-top-arrow" src="/static/user/userVip_arrow.png"></image>
|
||||
<view class="userVip-top-btn" v-if="userData.identity.id != 5"
|
||||
@click="openVip(userIdentity.right.identity_id)">
|
||||
{{ userData.identity.id == 1 ? '去开通' : '去升级'}}
|
||||
<image class="userVip-top-arrow" src="/static/user/userVip_arrow.png"></image>
|
||||
</view>
|
||||
<view class="userVip-top-btn" v-else>
|
||||
已达成满级
|
||||
@@ -69,10 +78,15 @@
|
||||
<view class="userVip-rights">
|
||||
<view class="userVip-rightst-title">
|
||||
<view class="userVip-rightst-title-name">查看会员专属权益</view>
|
||||
<view class="userVip-rightst-more" @click="$Router.push({name: 'vipIndex', params:{identity_id: userIdentity.right.identity_id}})">全部更多 <image class="userVip-rightst-more-img" src="/static/user/userVip_more_arrow.png"></image></view>
|
||||
<view class="userVip-rightst-more"
|
||||
@click="$Router.push({name: 'vipIndex', params:{identity_id: userIdentity.right.identity_id}})">
|
||||
全部更多 <image class="userVip-rightst-more-img" src="/static/user/userVip_more_arrow.png">
|
||||
</image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="userVip-rightst-list" v-if="userIdentity.right">
|
||||
<view v-for="(item, index) in userIdentity.right.rights" :key="index" class="userVip-rightst-label">
|
||||
<view v-for="(item, index) in userIdentity.right.rights" :key="index"
|
||||
class="userVip-rightst-label">
|
||||
<block v-if="index <= 3">
|
||||
<image class="userVip-rightst-img" :src="item.cover"></image>
|
||||
<view class="nowrap userVip-rightst-name">{{item.name}}</view>
|
||||
@@ -92,7 +106,8 @@
|
||||
<view class="userNew">
|
||||
<image class="userNew-icon" src="/static/user/userNew_icon.png"></image>
|
||||
<swiper class="userNew-banner" disable-touch circular autoplay interval="3000" vertical>
|
||||
<swiper-item class="ellipsis" v-for="(item, index) in newList" :key="index" @click="newEject(index)">
|
||||
<swiper-item class="ellipsis" v-for="(item, index) in newList" :key="index"
|
||||
@click="newEject(index)">
|
||||
{{item.title}}
|
||||
</swiper-item>
|
||||
</swiper>
|
||||
@@ -113,11 +128,24 @@
|
||||
</view>
|
||||
<view class="assets-list" v-if="userData.account">
|
||||
<view class="assets-label" @click="$Router.push({name:'walletProperty'})">
|
||||
<view class="assets-label-name">能量球钱包<image @click.stop="showHelp('wallet')" class="assets-label-icon" src="/static/user/userAssets_tips.png"></image></view>
|
||||
<view class="assets-label-name">能量球钱包
|
||||
<image @click.stop="showHelp('wallet')" class="assets-label-icon"
|
||||
src="/static/user/userAssets_tips.png" />
|
||||
</view>
|
||||
<view class="assets-label-number">{{userData.account.stone || 0}}</view>
|
||||
</view>
|
||||
<view class="assets-label" @click="$Router.push({name:'walletRedProperty'})">
|
||||
<view class="assets-label-name">现金红包
|
||||
<image @click.stop="showHelp('wallet')" class="assets-label-icon"
|
||||
src="/static/user/userAssets_tips.png" />
|
||||
</view>
|
||||
<view class="assets-label-number">{{userData.account.stone || 0}}</view>
|
||||
</view>
|
||||
<view class="assets-label" @click="$Router.push({name:'Fragment'})">
|
||||
<view class="assets-label-name">能量碎片<image @click.stop="showHelp('chip')" class="assets-label-icon" src="/static/user/userAssets_tips.png"></image></view>
|
||||
<view class="assets-label-name">能量碎片
|
||||
<image @click.stop="showHelp('chip')" class="assets-label-icon"
|
||||
src="/static/user/userAssets_tips.png" />
|
||||
</view>
|
||||
<view class="assets-label-number">{{userData.account.score || 0}}</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -208,7 +236,11 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { userIndex, userNotice, userCustomer } from '@/apis/interfaces/user'
|
||||
import {
|
||||
userIndex,
|
||||
userNotice,
|
||||
userCustomer
|
||||
} from '@/apis/interfaces/user'
|
||||
import h5Copy from '@/js_sdk/junyi-h5-copy/junyi-h5-copy/junyi-h5-copy'
|
||||
export default {
|
||||
data() {
|
||||
@@ -269,13 +301,20 @@ export default {
|
||||
confirmText: '去认证',
|
||||
success: res => {
|
||||
if (res.confirm) {
|
||||
this.$Router.push({name: 'Personal'})
|
||||
this.$Router.push({
|
||||
name: 'Personal'
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
return
|
||||
}
|
||||
this.$Router.push({name: 'vipIndex', params:{identity_id: identityId}})
|
||||
this.$Router.push({
|
||||
name: 'vipIndex',
|
||||
params: {
|
||||
identity_id: identityId
|
||||
}
|
||||
})
|
||||
},
|
||||
// 用户信息
|
||||
userInfo() {
|
||||
@@ -389,6 +428,7 @@ export default {
|
||||
.content-scroll {
|
||||
height: calc(100vh - 60px);
|
||||
}
|
||||
|
||||
// 专属客服
|
||||
.customerBack {
|
||||
position: fixed;
|
||||
@@ -399,6 +439,7 @@ export default {
|
||||
z-index: 1001;
|
||||
background: rgba($color: #000000, $alpha: .5);
|
||||
}
|
||||
|
||||
.customerCont {
|
||||
position: fixed;
|
||||
padding: $padding 0;
|
||||
@@ -412,18 +453,22 @@ export default {
|
||||
font-size: $uni-font-size-sm;
|
||||
text-align: center;
|
||||
color: $text-gray;
|
||||
|
||||
&.active {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.customerCont-code {
|
||||
margin: $margin 0 $margin;
|
||||
width: 300rpx;
|
||||
height: 300rpx;
|
||||
}
|
||||
|
||||
.customerCont-text {
|
||||
width: 80%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.customerClose {
|
||||
width: $uni-img-size-base;
|
||||
height: $uni-img-size-base;
|
||||
@@ -436,6 +481,7 @@ export default {
|
||||
|
||||
.btns {
|
||||
padding: 30rpx 0;
|
||||
|
||||
.item {
|
||||
background: white;
|
||||
margin: $margin;
|
||||
@@ -468,6 +514,7 @@ export default {
|
||||
font-size: $uni-font-size-sm;
|
||||
text-align: center;
|
||||
color: $text-gray;
|
||||
|
||||
.newCont-title {
|
||||
padding: 25rpx 40rpx;
|
||||
border-bottom: 1rpx solid #eaeaea;
|
||||
@@ -475,11 +522,13 @@ export default {
|
||||
font-size: 30rpx;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
|
||||
.newCont-title-text {
|
||||
padding: 0 50rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
.newCont-text {
|
||||
padding: 20rpx 40rpx 40rpx;
|
||||
box-sizing: border-box;
|
||||
@@ -489,12 +538,14 @@ export default {
|
||||
overflow: hidden;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.newCont-btn {
|
||||
color: #7e54fe;
|
||||
font-size: 30rpx;
|
||||
line-height: 90rpx;
|
||||
border-top: 2rpx solid #eaeaea;
|
||||
}
|
||||
|
||||
.newCont-close {
|
||||
position: absolute;
|
||||
top: 28rpx;
|
||||
@@ -503,6 +554,7 @@ export default {
|
||||
height: 32rpx;
|
||||
}
|
||||
}
|
||||
|
||||
// 会员卡
|
||||
.userVip {
|
||||
background-image: linear-gradient(to right, #4721bd, #885efe, #5d39b9);
|
||||
@@ -512,14 +564,17 @@ export default {
|
||||
color: #f6e9fa;
|
||||
box-sizing: border-box;
|
||||
padding-bottom: 40rpx;
|
||||
|
||||
.userVip-top {
|
||||
display: flex;
|
||||
padding: 15px 30rpx;
|
||||
|
||||
.userVip-top-name {
|
||||
font-size: 30rpx;
|
||||
flex: 1;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.userVip-top-btn {
|
||||
font-size: 26rpx;
|
||||
background-color: #977ae8;
|
||||
@@ -528,6 +583,7 @@ export default {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
display: flex;
|
||||
|
||||
.userVip-top-arrow {
|
||||
width: 20rpx;
|
||||
height: 20rpx;
|
||||
@@ -535,17 +591,21 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.userVip-tips {
|
||||
margin-top: 40rpx;
|
||||
font-size: 28rpx;
|
||||
|
||||
.userVip-tips-title {
|
||||
margin-bottom: 20rpx;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.userVip-tips-text {
|
||||
line-height: 48rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.userVip-rights {
|
||||
border-radius: 10rpx;
|
||||
margin: 0 30rpx;
|
||||
@@ -553,34 +613,41 @@ export default {
|
||||
box-sizing: border-box;
|
||||
background-image: linear-gradient(to bottom, #dbceff, #bb9fff);
|
||||
color: #5723af;
|
||||
|
||||
.userVip-rightst-title {
|
||||
padding: 0 20rpx;
|
||||
box-sizing: border-box;
|
||||
font-size: 30rpx;
|
||||
display: flex;
|
||||
line-height: 40rpx;
|
||||
|
||||
.userVip-rightst-title-name {
|
||||
font-weight: 600;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.userVip-rightst-more {
|
||||
font-size: 28rpx;
|
||||
display: flex;
|
||||
|
||||
.userVip-rightst-more-img {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.userVip-rightst-list {
|
||||
margin-top: 30rpx;
|
||||
display: flex;
|
||||
|
||||
.userVip-rightst-label {
|
||||
display: inline-block;
|
||||
width: 25%;
|
||||
text-align: center;
|
||||
font-size: 26rpx;
|
||||
line-height: 40rpx;
|
||||
|
||||
.userVip-rightst-img {
|
||||
width: 90rpx;
|
||||
height: 90rpx;
|
||||
@@ -591,6 +658,7 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 会员信息
|
||||
.header {
|
||||
position: fixed;
|
||||
@@ -598,11 +666,13 @@ export default {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
background-image: linear-gradient(to right, #7c52fc, #976dff);
|
||||
|
||||
// user工具
|
||||
.user-tool {
|
||||
text-align: right;
|
||||
line-height: 40px;
|
||||
@extend .ios-top;
|
||||
|
||||
.user-tool-name {
|
||||
flex: 1;
|
||||
line-height: 40px;
|
||||
@@ -610,6 +680,7 @@ export default {
|
||||
color: #fff;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.user-tool-icon {
|
||||
padding-right: $padding;
|
||||
margin-top: 10px;
|
||||
@@ -618,6 +689,7 @@ export default {
|
||||
vertical-align: top;
|
||||
}
|
||||
}
|
||||
|
||||
// 用户信息
|
||||
.user-info {
|
||||
position: relative;
|
||||
@@ -627,11 +699,13 @@ export default {
|
||||
padding-left: $padding;
|
||||
padding-right: $padding;
|
||||
color: $uni-text-color-inverse;
|
||||
|
||||
.user-portrait {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
border-radius: $uni-border-radius-circle;
|
||||
position: relative;
|
||||
|
||||
.user-portrait-head {
|
||||
border-radius: $uni-border-radius-circle;
|
||||
border: 4rpx solid #bfaaff;
|
||||
@@ -641,12 +715,14 @@ export default {
|
||||
width: calc(100% - 12px);
|
||||
height: calc(100% - 12px);
|
||||
}
|
||||
|
||||
.user-portrait-tips {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.user-portrait-name {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
@@ -662,6 +738,7 @@ export default {
|
||||
line-height: 15px;
|
||||
width: 64rpx;
|
||||
text-align: center;
|
||||
|
||||
text {
|
||||
display: block;
|
||||
transform: scale(.8);
|
||||
@@ -672,6 +749,7 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.user-head {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
@@ -680,10 +758,12 @@ export default {
|
||||
height: 100%;
|
||||
padding: 0 0 0 calc(#{$uni-img-size-lg + 20} + 35px);
|
||||
box-sizing: border-box;
|
||||
|
||||
.user-name {
|
||||
display: flex;
|
||||
margin: 15px 0 2.5px;
|
||||
font-size: 36rpx;
|
||||
|
||||
.user-name-identity {
|
||||
vertical-align: top;
|
||||
width: 90rpx;
|
||||
@@ -691,11 +771,13 @@ export default {
|
||||
margin: 5px 0 0 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.user-status {
|
||||
opacity: .7;
|
||||
font-size: $title-size-sm;
|
||||
display: flex;
|
||||
line-height: 23px;
|
||||
|
||||
.user-status-copy {
|
||||
font-size: $title-size !important;
|
||||
border: 1rpx solid #FFFFFF;
|
||||
@@ -708,6 +790,7 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 会员卡
|
||||
.card {
|
||||
height: 100px;
|
||||
@@ -715,6 +798,7 @@ export default {
|
||||
background: #555555;
|
||||
}
|
||||
}
|
||||
|
||||
// 按钮内容
|
||||
.mian {
|
||||
position: relative;
|
||||
@@ -723,15 +807,18 @@ export default {
|
||||
padding: 15px 30rpx 5px;
|
||||
background: #F5F5F5;
|
||||
transition: margin .6s;
|
||||
|
||||
&.shoeCard {
|
||||
margin-top: 320px;
|
||||
}
|
||||
|
||||
// 我的资产模块
|
||||
.userAssets {
|
||||
margin-bottom: 15px;
|
||||
background-color: #FFFFFF;
|
||||
overflow: hidden;
|
||||
border-radius: 15rpx;
|
||||
|
||||
.userAssets-top {
|
||||
background-color: #fff3dc;
|
||||
color: #654c2d;
|
||||
@@ -740,16 +827,19 @@ export default {
|
||||
box-sizing: border-box;
|
||||
height: 94rpx;
|
||||
position: relative;
|
||||
|
||||
.withdraw-name {
|
||||
display: flex;
|
||||
width: calc(100% - 160rpx);
|
||||
line-height: 54rpx;
|
||||
|
||||
.withdraw-number {
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
padding-left: 10rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.withdraw-btn {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
@@ -763,15 +853,18 @@ export default {
|
||||
font-size: 26rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.userAssets-show {
|
||||
padding: 30rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
.assets-title {
|
||||
position: relative;
|
||||
padding-bottom: 30rpx;
|
||||
margin-bottom: 40rpx;
|
||||
font-weight: 600;
|
||||
font-size: 32rpx;
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
@@ -782,15 +875,19 @@ export default {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
}
|
||||
|
||||
.assets-list {
|
||||
display: flex;
|
||||
|
||||
.assets-label {
|
||||
flex: 2;
|
||||
text-align: center;
|
||||
|
||||
.assets-label-name {
|
||||
color: #9c9c9c;
|
||||
font-size: 28rpx;
|
||||
position: relative;
|
||||
|
||||
.assets-label-icon {
|
||||
position: absolute;
|
||||
width: 26rpx;
|
||||
@@ -798,6 +895,7 @@ export default {
|
||||
margin-left: 6rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.assets-label-number {
|
||||
font-size: 32rpx;
|
||||
color: #ee4c47;
|
||||
@@ -808,6 +906,7 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 我的伙伴
|
||||
.userPartner {
|
||||
margin-bottom: 30rpx;
|
||||
@@ -816,12 +915,14 @@ export default {
|
||||
padding: 30rpx 0;
|
||||
box-sizing: border-box;
|
||||
border-radius: 15rpx;
|
||||
|
||||
.partner-title {
|
||||
font-size: 32rpx;
|
||||
position: relative;
|
||||
padding: 0 30rpx 30rpx;
|
||||
margin-bottom: 30rpx;
|
||||
font-weight: 600;
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
@@ -836,13 +937,16 @@ export default {
|
||||
.partner-list {
|
||||
display: flex;
|
||||
margin-top: 40rpx;
|
||||
|
||||
.partner-label {
|
||||
flex: 2;
|
||||
text-align: center;
|
||||
|
||||
.partner-label-name {
|
||||
color: #9c9c9c;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.partner-label-number {
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
@@ -857,6 +961,7 @@ export default {
|
||||
.partner-title {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.tool-list {
|
||||
.tool-label {
|
||||
display: inline-block;
|
||||
@@ -864,17 +969,20 @@ export default {
|
||||
text-align: center;
|
||||
font-size: 28rpx;
|
||||
margin: 40rpx 0 20rpx;
|
||||
|
||||
.tool-label-img {
|
||||
width: 44rpx;
|
||||
height: 44rpx;
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
|
||||
.tool-label-name {
|
||||
color: #5e5e5e;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 消息模块
|
||||
.userNew {
|
||||
background-color: #FFFFFF;
|
||||
@@ -885,6 +993,7 @@ export default {
|
||||
padding: 0 30rpx;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
|
||||
.userNew-banner {
|
||||
width: calc(100% - 70rpx);
|
||||
height: 90rpx;
|
||||
@@ -892,6 +1001,7 @@ export default {
|
||||
font-size: 28rpx;
|
||||
color: #5e5e5e;
|
||||
}
|
||||
|
||||
.userNew-icon {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
@@ -902,29 +1012,38 @@ export default {
|
||||
}
|
||||
|
||||
.animated {
|
||||
animation-duration: 1s; /*动画时间*/
|
||||
animation-fill-mode: both; /*播放后的状态*/
|
||||
animation-name:container; /*动画的名称*/
|
||||
animation-duration: 1s;
|
||||
/*动画时间*/
|
||||
animation-fill-mode: both;
|
||||
/*播放后的状态*/
|
||||
animation-name: container;
|
||||
/*动画的名称*/
|
||||
}
|
||||
|
||||
@keyframes container {
|
||||
|
||||
0%,
|
||||
100%,
|
||||
20%,
|
||||
50%,
|
||||
80% {
|
||||
transition-timing-function: cubic-bezier(0.215,.61,.355,1); /*贝塞尔曲线 : X1 Y1 X2 Y2*/
|
||||
transform: translate3d(0,0,0); /*设置只在Z轴上移动*/
|
||||
transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
|
||||
/*贝塞尔曲线 : X1 Y1 X2 Y2*/
|
||||
transform: translate3d(0, 0, 0);
|
||||
/*设置只在Z轴上移动*/
|
||||
}
|
||||
|
||||
40%,
|
||||
43% {
|
||||
transition-timing-function: cubic-bezier(0.755, 0.50, 0.855, 0.060);
|
||||
transform: translate3d(0, -30rpx, 0);
|
||||
}
|
||||
|
||||
70% {
|
||||
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
|
||||
transform: translate3d(0, -15rpx, 0);
|
||||
}
|
||||
|
||||
90% {
|
||||
transform: translate3d(0, -4rpx, 0);
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<view class="examine-name">
|
||||
提交成功,请耐心等待~
|
||||
</view>
|
||||
<view class="examine-cont" @click="$Router.push({name: 'User'})">
|
||||
<view class="examine-cont" @click="toUser">
|
||||
我知道了
|
||||
</view>
|
||||
</view>
|
||||
@@ -13,6 +13,16 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
methods:{
|
||||
toUser(){
|
||||
console.log('trule')
|
||||
uni.switchTab({
|
||||
url:'/pages/user/index'
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
@@ -3,34 +3,55 @@
|
||||
<!-- 上传凭证弹出 -->
|
||||
<view class="canBack" v-if="canForm"></view>
|
||||
<view class="canPop" v-if="canForm">
|
||||
<block v-if="voucher">
|
||||
<image class="canPop-tips" @click="canClick" src="/static/user/order-cancelPay.png" mode="widthFix"></image>
|
||||
<view class="canPop-cont">打款凭证</view>
|
||||
<image class="canPop-cover" v-if="voucher.status.value === 3" :src="canFromImg.showpath || require('@/static/icons/add-icon.png')" @click="updImg()" mode="aspectFill" />
|
||||
<image class="canPop-cover" v-else :src="canFromImg.showpath || require('@/static/icons/add-icon.png')" @click="preImg()" mode="aspectFill" />
|
||||
<view class="canPop-status">状态:{{voucher.status.text}}</view>
|
||||
<view class="canPop-remark" v-if="voucher.remark && voucher.status.value === 3">驳回原因:{{voucher.remark}}</view>
|
||||
<view class="canPop-btn" v-if="voucher.status.value === 3" @click="canSubmitEdit(voucher.voucher_id)">重新提交</view>
|
||||
</block>
|
||||
<block v-else>
|
||||
<image class="canPop-tips" @click="canClick" src="/static/user/order-cancelPay.png" mode="widthFix"></image>
|
||||
<view class="canPop-cont">上传打款凭证</view>
|
||||
<image class="canPop-cover" :src="canFromImg.showpath || require('@/static/icons/add-icon.png')" @click="updImg()" mode="aspectFill"></image>
|
||||
<image class="canPop-cover" :src="canFromImg.showpath || require('@/static/icons/add-icon.png')"
|
||||
@click="updImg()" mode="aspectFill"></image>
|
||||
<view class="canPop-btn" @click="canSubmit">提交</view>
|
||||
</block>
|
||||
|
||||
</view>
|
||||
|
||||
<swiper class="vip-container" previous-margin="55rpx" next-margin="55rpx" :current="tabsIndex" circular @change="swiperChange">
|
||||
<swiper class="vip-container" previous-margin="55rpx" next-margin="55rpx" :current="tabsIndex" circular
|
||||
@change="swiperChange">
|
||||
<swiper-item class="swiper-item" v-for="(item, index) in identitie" :key="index">
|
||||
<view class="vip-item" :class="tabsIndex == index ? 'color-item-img' : ''">
|
||||
<image class="vip-back" :src="item.card_cover" mode="scaleToFill"></image>
|
||||
<view class="vip-cont">
|
||||
<view class="vip-name">
|
||||
{{ item.name }}
|
||||
<image class="vip-name-img" @click="showRemark(item.name, item.node_definition)" src="../../static/user/vip_privilege_03.png" mode="widthFix"></image>
|
||||
<image class="vip-name-img" @click="showRemark(item.name, item.node_definition)"
|
||||
src="../../static/user/vip_privilege_03.png" mode="widthFix"></image>
|
||||
</view>
|
||||
<view class="vip-number" v-if="item.count">{{ item.count.stock > 0 ? '剩余名额:' + item.count.residue : '不限名数' }}</view>
|
||||
<view class="vip-number" v-if="item.count">
|
||||
{{ item.count.stock > 0 ? '剩余名额:' + item.count.residue : '不限名数' }}</view>
|
||||
<view class="currentInfo" v-if="currentInfo.identity.identity_id === item.identity_id">当前身份</view>
|
||||
<view class="vip-tips">
|
||||
<!-- 会员 -->
|
||||
<view v-if="item.identity_id == 2" class="vip-tips-text vip-tips-color-01">{{ item.title }}</view>
|
||||
<view v-if="item.identity_id == 2" class="vip-tips-text vip-tips-color-01">{{ item.title }}
|
||||
</view>
|
||||
|
||||
<!-- VIP节点 -->
|
||||
<view v-else-if="item.identity_id == 3" class="vip-tips-text vip-tips-color-02">{{ item.title }}</view>
|
||||
<view v-else-if="item.identity_id == 3" class="vip-tips-text vip-tips-color-02">
|
||||
{{ item.title }}</view>
|
||||
|
||||
<!-- 主节点 -->
|
||||
<view v-else-if="item.identity_id == 4" class="vip-tips-text vip-tips-color-03">{{ item.title }}</view>
|
||||
<view v-else-if="item.identity_id == 4" class="vip-tips-text vip-tips-color-03">
|
||||
{{ item.title }}</view>
|
||||
|
||||
<!-- 超级节点 -->
|
||||
<view v-else-if="item.identity_id == 5" class="vip-tips-text vip-tips-color-04">{{ item.title }}</view>
|
||||
<view v-else-if="item.identity_id == 5" class="vip-tips-text vip-tips-color-04">
|
||||
{{ item.title }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -61,7 +82,8 @@
|
||||
<view class="privilege-label" v-else>{{ openCondition.service_charge.message }}</view>
|
||||
</block>
|
||||
<block v-else>
|
||||
<view class="privilege-label" :class="{ active: openCondition.price.finish }">{{ openCondition.price.message }}</view>
|
||||
<view class="privilege-label" v-if="openCondition.certification"
|
||||
:class="{ active: openCondition.certification.finish }">{{ openCondition.certification.message }}</view>
|
||||
</block>
|
||||
</view>
|
||||
</view>
|
||||
@@ -69,21 +91,29 @@
|
||||
<image class="privilege-img" src="/static/user/vip_privilege_02.png" mode=""></image>
|
||||
<view class="privilege-text">
|
||||
<view class="privilege-name">节点权益</view>
|
||||
<view class="privilege-label privilege-right" v-for="(item, index) in identitie[tabsIndex].rights" :key="index">&{{ item.remark }}</view>
|
||||
<view class="privilege-label privilege-right" v-for="(item, index) in identitie[tabsIndex].rights"
|
||||
:key="index">&{{ item.remark }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 用户协议 -->
|
||||
<view class="agree"><view class="agree-tips" @click="$Router.push({ name: 'vipAgree', params: { type: 'vipAgree' } })">请仔细阅读并确认服务协议</view></view>
|
||||
<view class="agree-btn" @click="agreeChange">
|
||||
<view class="agree" v-if="identitie[tabsIndex].can.show_button">
|
||||
<view class="agree-tips" @click="$Router.push({ name: 'vipAgree', params: { type: 'vipAgree' } })">
|
||||
请仔细阅读并确认服务协议</view>
|
||||
</view>
|
||||
<view class="agree-btn" @click="agreeChange" v-if="identitie[tabsIndex].can.show_button">
|
||||
<radio :checked="selected" style="transform: scale(.7);" color="#7c52fc"></radio>
|
||||
会员服务协议
|
||||
</view>
|
||||
|
||||
<!-- 开通按钮 -->
|
||||
<view class="footer" >
|
||||
<image class="footer-btn" :src="identitie[tabsIndex].button_cover" mode="widthFix" @click="openOrder"></image>
|
||||
<image class="footer-btn" v-if="identitie[tabsIndex].can.show_button && voucher === ''"
|
||||
:src="identitie[tabsIndex].button_cover" mode="widthFix" @click="openOrder" />
|
||||
<view class="current-btn-sh" v-if="identitie[tabsIndex].can.show_button && voucher !== ''" @click="openOrder" >{{voucher.status.value === 1?'申请审核中':''}}{{voucher.status.value === 3?'申请被驳回查看原因':''}}</view>
|
||||
<view class="current-btn-sh" v-if="!identitie[tabsIndex].can.show_button && voucher === ''"> 当前不可开通</view>
|
||||
<view class="current-btn" v-if="currentInfo.identity.identity_id === identitie[tabsIndex].identity_id">当前身份</view>
|
||||
<!-- <button class="footer-btn" type="default" >
|
||||
<view class="footer-btn-num">
|
||||
合计:{{total}}
|
||||
@@ -97,9 +127,20 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { identities, vipOrder, vipWechatPay, vipCont, vipVoucher } from '@/apis/interfaces/vip';
|
||||
import { wxConfig } from '@/apis/interfaces/wx';
|
||||
import { uploads } from '@/apis/interfaces/uploading';
|
||||
import {
|
||||
identities,
|
||||
vipOrder,
|
||||
vipWechatPay,
|
||||
vipCont,
|
||||
vipVoucherUpdate,
|
||||
vipVoucher
|
||||
} from '@/apis/interfaces/vip';
|
||||
import {
|
||||
wxConfig
|
||||
} from '@/apis/interfaces/wx';
|
||||
import {
|
||||
uploads
|
||||
} from '@/apis/interfaces/uploading';
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
@@ -119,20 +160,22 @@ export default {
|
||||
showpath: '',
|
||||
path: ''
|
||||
},
|
||||
openCondition: {}
|
||||
};
|
||||
openCondition: {},
|
||||
voucher:'', //弹窗展示得内容
|
||||
}
|
||||
},
|
||||
created() {
|
||||
// 获取当前用户信息
|
||||
this.idenInfo('cre');
|
||||
this.idenInfo('cre')
|
||||
|
||||
},
|
||||
methods: {
|
||||
// 当前用户信息
|
||||
idenInfo(type) {
|
||||
identities().then(res => {
|
||||
console.log(res, 'res。。。获取身份详情')
|
||||
res.identities.map(item => {
|
||||
item.obj_condition = new Object();
|
||||
item.obj_condition = new Object()
|
||||
for (let val of item.get_condition) {
|
||||
item.obj_condition[val.name] = {
|
||||
message: val.message,
|
||||
@@ -140,29 +183,42 @@ export default {
|
||||
};
|
||||
}
|
||||
return item;
|
||||
|
||||
});
|
||||
this.identitie = res.identities;
|
||||
this.identitie = res.identities
|
||||
if (type === 'cre') {
|
||||
this.tabsIndex = res.identities.findIndex(val => val.identity_id == this.$Route.query.identity_id)
|
||||
}
|
||||
this.openCondition = res.identities[this.tabsIndex].obj_condition;
|
||||
this.rights = res.identities[this.tabsIndex].rights;
|
||||
this.total = res.identities[this.tabsIndex].price;
|
||||
this.canBtn = res.identities[this.tabsIndex].can;
|
||||
this.loding = false;
|
||||
this.openCondition = res.identities[this.tabsIndex].obj_condition
|
||||
this.rights = res.identities[this.tabsIndex].rights
|
||||
this.total = res.identities[this.tabsIndex].price
|
||||
this.canBtn = res.identities[this.tabsIndex].can
|
||||
this.currentInfo = res.user
|
||||
this.loding = false
|
||||
this.voucher = this.identitie[this.tabsIndex].voucher || ''
|
||||
if(this.voucher){
|
||||
this.canFromImg = this.identitie[this.tabsIndex].voucher.cover
|
||||
}else{
|
||||
this.canFromImg = {
|
||||
path:'',
|
||||
showpath:''
|
||||
}
|
||||
}
|
||||
console.log(this.voucher,'voucher...')
|
||||
console.log(this.canFromImg,'canFromImg...')
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon: 'none'
|
||||
});
|
||||
});
|
||||
})
|
||||
})
|
||||
},
|
||||
|
||||
// 切换开通身份
|
||||
swiperChange(e) {
|
||||
this.tabsIndex = e.detail.current;
|
||||
this.tabsIndex = e.detail.current
|
||||
// 获取当前用户信息
|
||||
this.idenInfo();
|
||||
this.idenInfo()
|
||||
},
|
||||
|
||||
// 开通会员
|
||||
@@ -177,96 +233,119 @@ export default {
|
||||
return;
|
||||
}
|
||||
if (can.on_line) {
|
||||
if (can.buy) {
|
||||
this.wxPayConfig();
|
||||
// #ifdef H5
|
||||
this.wxPayH5Config()
|
||||
// #endif
|
||||
//#ifdef APP-PLUS
|
||||
this.wxPayAppConfig()
|
||||
//#endif
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: can.message,
|
||||
icon: 'none'
|
||||
});
|
||||
}
|
||||
} else {
|
||||
if (can.buy) {
|
||||
// 上传凭证
|
||||
this.canClick();
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: can.message,
|
||||
icon: 'none'
|
||||
});
|
||||
}
|
||||
this.canClick()
|
||||
}
|
||||
return;
|
||||
},
|
||||
// 微信支付鉴权
|
||||
wxPayConfig() {
|
||||
console.log('微信支付')
|
||||
// wxConfig({
|
||||
// url: window.location.href,
|
||||
// jsApiList: ['chooseWXPay']
|
||||
// }).then(res => {
|
||||
// let payConfig = JSON.parse(res);
|
||||
// let jweixin = require('jweixin-module');
|
||||
// jweixin.ready(() => {
|
||||
// // res
|
||||
// });
|
||||
// jweixin.error(err => {
|
||||
// uni.showToast({
|
||||
// title: err,
|
||||
// icon: 'none'
|
||||
// });
|
||||
// });
|
||||
// jweixin.config({ ...payConfig });
|
||||
// vipOrder(this.identitie[this.tabsIndex].identity_id, {
|
||||
// year: this.sumNumber
|
||||
// }).then(payId => {
|
||||
// this.wechatPay(payId.id, jweixin);
|
||||
// }).catch(err => {
|
||||
// uni.showToast({
|
||||
// title: err.message,
|
||||
// icon: 'none'
|
||||
// });
|
||||
// });
|
||||
// }).catch(err => {
|
||||
// uni.showToast({
|
||||
// title: err.message,
|
||||
// icon: 'none'
|
||||
// });
|
||||
// });
|
||||
// 微信支付鉴权H5
|
||||
wxPayH5Config() {
|
||||
wxConfig({
|
||||
url: window.location.href,
|
||||
jsApiList: ['chooseWXPay']
|
||||
}).then(res => {
|
||||
let payConfig = JSON.parse(res)
|
||||
let jweixin = require('jweixin-module')
|
||||
jweixin.ready(() => {
|
||||
// res
|
||||
})
|
||||
jweixin.error(err => {
|
||||
uni.showToast({
|
||||
title: err,
|
||||
icon: 'none'
|
||||
})
|
||||
})
|
||||
jweixin.config({
|
||||
...payConfig
|
||||
})
|
||||
vipOrder(this.identitie[this.tabsIndex].identity_id, {
|
||||
year: this.sumNumber
|
||||
}).then(payId => {
|
||||
this.wechatH5Pay(payId.id, jweixin);
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon: 'none'
|
||||
})
|
||||
})
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon: 'none'
|
||||
})
|
||||
})
|
||||
},
|
||||
|
||||
// 微信支付
|
||||
wechatPay(id, wx) {
|
||||
// vipWechatPay(id, {
|
||||
// openid: this.$store.getters.getCode
|
||||
// }).then(payConfig => {
|
||||
// wx.chooseWXPay({...payConfig,
|
||||
// success() {
|
||||
// uni.showModal({
|
||||
// title : '提示',
|
||||
// content : '支付成功,恭喜您成功开通',
|
||||
// showCancel:false,
|
||||
// confirmColor: '#8b64fd',
|
||||
// success : ()=> {
|
||||
// this.$Router.back()
|
||||
// }
|
||||
// })
|
||||
// },
|
||||
// fail(err) {
|
||||
// uni.showToast({
|
||||
// title: '支付被取消',
|
||||
// icon : 'none'
|
||||
// })
|
||||
// }
|
||||
// });
|
||||
// }).catch(err => {
|
||||
// uni.showToast({
|
||||
// title: err.message,
|
||||
// icon : 'none'
|
||||
// })
|
||||
// })
|
||||
// 微信支付 H5
|
||||
wechatH5Pay(id, wx) {
|
||||
vipWechatPay(id, {
|
||||
type:'mp',
|
||||
openid: this.$store.getters.getCode
|
||||
}).then(payConfig => {
|
||||
wx.chooseWXPay({
|
||||
...payConfig,
|
||||
success() {
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '支付成功,恭喜您成功开通',
|
||||
showCancel: false,
|
||||
confirmColor: '#8b64fd',
|
||||
success: () => {
|
||||
this.$Router.back()
|
||||
}
|
||||
})
|
||||
},
|
||||
fail(err) {
|
||||
uni.showToast({
|
||||
title: '支付被取消',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
});
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon: 'none'
|
||||
})
|
||||
})
|
||||
},
|
||||
|
||||
// 支付创建订单APP
|
||||
wxPayAppConfig(){
|
||||
let data = {year:1}
|
||||
let identity = this.identitie[this.tabsIndex].identity_id
|
||||
vipOrder(identity,data).then(res=>{
|
||||
console.log(res)
|
||||
this.wechatAppPay(res.id)
|
||||
}).catch(err=>{
|
||||
uni.showToast({
|
||||
title:err.message,
|
||||
icon:"none"
|
||||
})
|
||||
})
|
||||
},
|
||||
// 微信支付 APP
|
||||
wechatAppPay(orderid){
|
||||
let data = {
|
||||
type:'app'
|
||||
}
|
||||
let orderId = orderid
|
||||
vipWechatPay(orderId,data).then(res=>{
|
||||
console.log('-----------------')
|
||||
console.log(res)
|
||||
}).catch(err=>{
|
||||
uni.showToast({
|
||||
title:err.message,
|
||||
icon:"none"
|
||||
})
|
||||
})
|
||||
},
|
||||
// 勾选协议
|
||||
agreeChange() {
|
||||
this.selected = !this.selected;
|
||||
@@ -278,7 +357,7 @@ export default {
|
||||
title: title,
|
||||
content: val,
|
||||
showCancel: false
|
||||
});
|
||||
})
|
||||
},
|
||||
|
||||
// 上传打款凭证图片
|
||||
@@ -286,7 +365,9 @@ export default {
|
||||
uni.chooseImage({
|
||||
count: 1,
|
||||
success: path => {
|
||||
uploads([{uri: path.tempFilePaths[0]}]).then(res => {
|
||||
uploads([{
|
||||
uri: path.tempFilePaths[0]
|
||||
}]).then(res => {
|
||||
this.canFromImg = {
|
||||
showpath: res.url[0],
|
||||
path: res.path[0]
|
||||
@@ -295,10 +376,18 @@ export default {
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon: 'none'
|
||||
});
|
||||
});
|
||||
})
|
||||
})
|
||||
}
|
||||
});
|
||||
})
|
||||
},
|
||||
// 预览图片
|
||||
preImg(){
|
||||
console.log('袁兰图片')
|
||||
uni.previewImage({
|
||||
current:this.voucher.cover.showpath,
|
||||
urls:[this.voucher.cover.showpath]
|
||||
})
|
||||
},
|
||||
|
||||
// 打款凭证弹出状态
|
||||
@@ -314,16 +403,36 @@ export default {
|
||||
cover: newCover,
|
||||
identity_id: newId
|
||||
}).then(res => {
|
||||
this.$Router.push({ name: 'Examine' });
|
||||
this.$Router.push({
|
||||
name: 'Examine'
|
||||
})
|
||||
this.canForm = !this.canForm
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon: 'none'
|
||||
});
|
||||
});
|
||||
})
|
||||
})
|
||||
},
|
||||
// 编辑凭证
|
||||
canSubmitEdit(id){
|
||||
let newCover = this.canFromImg.path
|
||||
vipVoucherUpdate(id,{
|
||||
cover: newCover
|
||||
}).then(res => {
|
||||
this.$Router.push({
|
||||
name: 'Examine'
|
||||
})
|
||||
this.canForm = !this.canForm
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon: 'none'
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
@@ -341,6 +450,7 @@ page {
|
||||
top: 0;
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
.canPop {
|
||||
position: absolute;
|
||||
background-color: #ffffff;
|
||||
@@ -352,6 +462,7 @@ page {
|
||||
box-sizing: border-box;
|
||||
border-radius: 10rpx;
|
||||
text-align: center;
|
||||
|
||||
.canPop-tips {
|
||||
position: absolute;
|
||||
right: 20rpx;
|
||||
@@ -360,16 +471,26 @@ page {
|
||||
height: 32rpx;
|
||||
z-index: 1002;
|
||||
}
|
||||
|
||||
.canPop-cont {
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.canPop-cover {
|
||||
margin: 60rpx auto 40rpx;
|
||||
margin: 40rpx auto 20rpx auto;
|
||||
width: 240rpx;
|
||||
height: 240rpx;
|
||||
border: 2rpx solid #f3f3f3;
|
||||
}
|
||||
.canPop-remark{
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.canPop-status{
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
|
||||
.canPop-btn {
|
||||
text-align: center;
|
||||
background: $mian-color;
|
||||
@@ -378,6 +499,7 @@ page {
|
||||
line-height: 90rpx;
|
||||
font-size: $title-size;
|
||||
color: white;
|
||||
|
||||
&::after {
|
||||
border: none;
|
||||
}
|
||||
@@ -387,7 +509,7 @@ page {
|
||||
.vip-container {
|
||||
width: 750rpx;
|
||||
height: 340rpx;
|
||||
margin-top: $margin;
|
||||
margin-top: $margin * 1.5;
|
||||
}
|
||||
|
||||
.swiper-item {
|
||||
@@ -401,6 +523,7 @@ page {
|
||||
height: 340rpx;
|
||||
border-radius: 20rpx;
|
||||
position: relative;
|
||||
|
||||
.vip-back {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
@@ -408,6 +531,7 @@ page {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.vip-cont {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
@@ -417,23 +541,35 @@ page {
|
||||
z-index: 9;
|
||||
padding: 45rpx 70rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
.vip-name {
|
||||
display: flex;
|
||||
font-size: 46rpx;
|
||||
color: #ffffff;
|
||||
font-weight: 600;
|
||||
|
||||
.vip-name-img {
|
||||
width: 36rpx;
|
||||
height: 36rpx;
|
||||
margin: 12rpx 20rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.vip-number {
|
||||
margin: 10rpx 0 40rpx;
|
||||
color: #ffffff;
|
||||
font-size: 32rpx;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.currentInfo {
|
||||
position: absolute;
|
||||
right: 82rpx;
|
||||
top: 20rpx;
|
||||
color: #fff;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
.vip-tips {
|
||||
font-size: 30rpx;
|
||||
background-color: #e8ebf6;
|
||||
@@ -442,54 +578,67 @@ page {
|
||||
height: 60rpx;
|
||||
line-height: 60rpx;
|
||||
padding: 0 30rpx;
|
||||
|
||||
.vip-tips-text {
|
||||
font-weight: 700;
|
||||
background-clip: text;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.vip-tips-color-00 {
|
||||
background-image: linear-gradient(to bottom, #6189f0, #b6b9c1);
|
||||
}
|
||||
|
||||
.vip-tips-color-01 {
|
||||
background-image: linear-gradient(to top, #ffd459, #ff6c52);
|
||||
}
|
||||
|
||||
.vip-tips-color-02 {
|
||||
background-image: linear-gradient(to top, #e0c9fe, #892edb);
|
||||
}
|
||||
|
||||
.vip-tips-color-03 {
|
||||
background-image: linear-gradient(to top, #f6b237, #f035e3);
|
||||
}
|
||||
|
||||
.vip-tips-color-04 {
|
||||
background-image: linear-gradient(to top, #c455ec, #5f76e9);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 会员特权
|
||||
.privilege {
|
||||
padding: 20rpx 30rpx 80rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
.privilege-list {
|
||||
margin-bottom: 50rpx;
|
||||
margin-bottom: 30rpx;
|
||||
display: flex;
|
||||
|
||||
.privilege-img {
|
||||
width: 74rpx;
|
||||
height: 74rpx;
|
||||
width: 50rpx;
|
||||
height: 50rpx;
|
||||
}
|
||||
|
||||
.privilege-text {
|
||||
width: calc(100% - 74rpx);
|
||||
padding-left: 40rpx;
|
||||
font-size: 32rpx;
|
||||
width: calc(100% - 60rpx);
|
||||
padding-left: 30rpx;
|
||||
font-size: 30rpx;
|
||||
color: #999999;
|
||||
line-height: 52rpx;
|
||||
line-height: 48rpx;
|
||||
|
||||
.privilege-name {
|
||||
font-size: 40rpx;
|
||||
font-size: 34rpx;
|
||||
color: #000000;
|
||||
margin: 10rpx 0 20rpx;
|
||||
}
|
||||
|
||||
.privilege-label.active {
|
||||
color: #f6b338;
|
||||
}
|
||||
|
||||
.privilege-right {
|
||||
color: #7877eb;
|
||||
}
|
||||
@@ -499,16 +648,18 @@ page {
|
||||
|
||||
// 用户协议
|
||||
.agree {
|
||||
margin: $margin 0;
|
||||
margin: 0 0 10rpx 0;
|
||||
text-align: center;
|
||||
|
||||
.agree-tips {
|
||||
background-color: #999999;
|
||||
background-color: #cacaca;
|
||||
display: inline-block;
|
||||
padding: 14rpx $padding;
|
||||
color: #ffffff;
|
||||
border-radius: 60rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.agree-btn {
|
||||
display: flex;
|
||||
font-size: $title-size-lg;
|
||||
@@ -526,28 +677,55 @@ page {
|
||||
font-size: $title-size-m;
|
||||
color: $text-gray;
|
||||
padding: $padding $padding * 2 $padding * 2;
|
||||
|
||||
.title {
|
||||
padding-bottom: $padding/2;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.item {
|
||||
padding-bottom: $padding/2;
|
||||
line-height: 40rpx;
|
||||
text-align: justify;
|
||||
}
|
||||
}
|
||||
|
||||
// footer
|
||||
.footer {
|
||||
padding: 0 $padding;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
margin-bottom: 30rpx;
|
||||
|
||||
.footer-btn {
|
||||
width: 74%;
|
||||
}
|
||||
.current-btn{
|
||||
width: 74%;
|
||||
height: 80rpx;
|
||||
background-image: linear-gradient(to right, #7c52fc, #976dff);
|
||||
color: #fff;
|
||||
margin-left: 13%;
|
||||
border-radius: 80rpx;
|
||||
line-height: 80rpx;
|
||||
font-size: 36rpx;
|
||||
}
|
||||
.current-btn-sh{
|
||||
background-color: #cacaca;
|
||||
width: 74%;
|
||||
height: 80rpx;
|
||||
color: #fff;
|
||||
margin-left: 13%;
|
||||
border-radius: 80rpx;
|
||||
line-height: 80rpx;
|
||||
font-size: 36rpx;
|
||||
}
|
||||
}
|
||||
|
||||
// 会员权限
|
||||
.privilege {
|
||||
padding: $padding;
|
||||
|
||||
.title {
|
||||
font-weight: bold;
|
||||
color: #322711;
|
||||
@@ -555,15 +733,18 @@ page {
|
||||
text-align: center;
|
||||
line-height: 90rpx;
|
||||
}
|
||||
|
||||
.privilege-box {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
padding: $padding 0;
|
||||
|
||||
.item {
|
||||
width: 25%;
|
||||
padding: $padding/2;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
|
||||
.icon {
|
||||
width: 78rpx;
|
||||
height: 78rpx;
|
||||
@@ -571,6 +752,7 @@ page {
|
||||
border-radius: 50%;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-size: $title-size-sm;
|
||||
color: #201212;
|
||||
@@ -579,10 +761,12 @@ page {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 会员卡
|
||||
.cards {
|
||||
position: relative;
|
||||
background: #1f1b1c;
|
||||
|
||||
.card {
|
||||
position: relative;
|
||||
margin: 0 $margin;
|
||||
@@ -590,12 +774,14 @@ page {
|
||||
padding: 15rpx;
|
||||
border-radius: $radius/2;
|
||||
z-index: 2;
|
||||
|
||||
.card-content {
|
||||
position: relative;
|
||||
border: solid 1rpx rgba($color: white, $alpha: 0.4);
|
||||
border-radius: $radius/2;
|
||||
padding: 30rpx 180rpx 60rpx 148rpx;
|
||||
min-height: 98rpx;
|
||||
|
||||
.cover {
|
||||
position: absolute;
|
||||
left: 30rpx;
|
||||
@@ -604,16 +790,19 @@ page {
|
||||
height: 98rpx;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.user {
|
||||
color: rgba($color: white, $alpha: 0.7);
|
||||
line-height: 58rpx;
|
||||
font-size: $title-size-lg;
|
||||
}
|
||||
|
||||
.sub-time {
|
||||
line-height: 40rpx;
|
||||
color: #e6ce9e;
|
||||
font-size: $title-size-sm;
|
||||
}
|
||||
|
||||
.btn {
|
||||
position: absolute;
|
||||
color: #261f0f;
|
||||
@@ -628,6 +817,7 @@ page {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cards-angle {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
@@ -635,6 +825,7 @@ page {
|
||||
width: 100%;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
&::after {
|
||||
content: ' ';
|
||||
height: 70rpx;
|
||||
@@ -646,6 +837,7 @@ page {
|
||||
z-index: 0;
|
||||
}
|
||||
}
|
||||
|
||||
// tabs
|
||||
.tabs {
|
||||
background: #1f1b1c;
|
||||
@@ -654,16 +846,19 @@ page {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
font-size: $title-size-lg;
|
||||
|
||||
.item {
|
||||
margin: 0 $margin;
|
||||
line-height: 70rpx;
|
||||
height: 70rpx;
|
||||
color: rgba($color: white, $alpha: 0.6);
|
||||
|
||||
&.show {
|
||||
position: relative;
|
||||
font-weight: bold;
|
||||
font-size: $title-size;
|
||||
color: white;
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
|
||||
@@ -11,16 +11,6 @@
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="item-name">
|
||||
提现至银行卡
|
||||
<view class="right">
|
||||
<view class="cardName" v-if="bank_accounts === 0" @click="addBanks">添加银行卡</view>
|
||||
<view class="cardName" v-if='bank_accounts>0' @click="bankLists">{{bankInfo.name?bankInfo.name:'选择银行卡'}}
|
||||
</view>
|
||||
<uni-icons type="arrowright" size="12" color="#fff" />
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="withdrawing-content">
|
||||
<view class="item">
|
||||
<view style="flex: 1;">
|
||||
@@ -33,8 +23,8 @@
|
||||
</view>
|
||||
</view>
|
||||
<view class="total" v-if="total">≈ ¥{{total.toFixed(2)}} </view>
|
||||
<view class="btn" @click="actions">提现至银行卡</view>
|
||||
<view class="des">预计5- 10个工作日到账 手续费: {{tax === '0'?'免手续费':tax+'%'}}</view>
|
||||
<view class="btn" @click="actions">提现至红包</view>
|
||||
<view class="des">提现到红包,可在红包中提现到银行卡 手续费: 无</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
@@ -133,13 +123,13 @@
|
||||
bank_account_id: this.bankInfo.bank_account_id,
|
||||
amount: Number(this.withdraw_input)
|
||||
}
|
||||
if (data.bank_account_id === undefined || data.bank_account_id === null || data.bank_account_id === '') {
|
||||
uni.showToast({
|
||||
title: this.bank_accounts > 0 ? '请选择银行卡' : '请添加银行卡',
|
||||
icon: 'none'
|
||||
})
|
||||
return;
|
||||
}
|
||||
// if (data.bank_account_id === undefined || data.bank_account_id === null || data.bank_account_id === '') {
|
||||
// uni.showToast({
|
||||
// title: this.bank_accounts > 0 ? '请选择银行卡' : '请添加银行卡',
|
||||
// icon: 'none'
|
||||
// })
|
||||
// return;
|
||||
// }
|
||||
if (data.amount === 0) {
|
||||
uni.showToast({
|
||||
title: '请输入能量球数量',
|
||||
@@ -149,7 +139,7 @@
|
||||
}
|
||||
uni.showModal({
|
||||
title: '温馨提示',
|
||||
content:this.tax === '0'?'您是否确认提现,交易将免手续费':'您是否确认提现,将会扣除' + this.tax + '%手续费',
|
||||
content:'您是否确认提现到红包,交易将免手续费',
|
||||
confirmColor: '#7c52fc',
|
||||
cancelColor: '#cacaca',
|
||||
cancelText: '我再想想',
|
||||
@@ -182,18 +172,6 @@
|
||||
})
|
||||
|
||||
},
|
||||
// 添加银行卡
|
||||
addBanks() {
|
||||
this.$Router.push({
|
||||
name: 'addBank'
|
||||
})
|
||||
},
|
||||
// 选择银行卡
|
||||
bankLists() {
|
||||
this.$Router.push({
|
||||
name: 'bankList'
|
||||
})
|
||||
},
|
||||
// 提现记录
|
||||
withdrawDetail() {
|
||||
this.$Router.push({
|
||||
|
||||
403
pages/wallet/extractRed.vue
Normal file
@@ -0,0 +1,403 @@
|
||||
<template>
|
||||
<view class="WithdrawingCoin ">
|
||||
<view class="propery">
|
||||
<image src="/static/imgs/account-bg.png" mode="aspectFill" class="record-bg" />
|
||||
<view class="propery-content">
|
||||
<view class="currency">可提现额度</view>
|
||||
<view class="balance">{{ balance || '0.00' }}</view>
|
||||
<view class="frozen" @click="withdrawDetail">提现记录</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="item-name">
|
||||
提现至银行卡
|
||||
<view class="right">
|
||||
<view class="cardName" v-if="bank_accounts === 0" @click="addBanks">添加银行卡</view>
|
||||
<view class="cardName" v-if='bank_accounts>0' @click="bankLists">{{bankInfo.name?bankInfo.name:'选择银行卡'}}
|
||||
</view>
|
||||
<uni-icons type="arrowright" size="12" color="#fff" />
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="withdrawing-content">
|
||||
<view class="item">
|
||||
<view style="flex: 1;">
|
||||
<view class="inputTxt">提现金额</view>
|
||||
<input class="input_num" v-model="withdraw_input" @input='inputNum' type="number"
|
||||
placeholder-style="color:#999;font-weight:normal; font-size:34rpx;"
|
||||
placeholder="请输入提现金额" :disabled="balance===0" />
|
||||
</view>
|
||||
<view class="all" @click="all">全部提现</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="total" v-if="total">≈ ¥{{total.toFixed(2)}} </view>
|
||||
<view class="btn" @click="actions">提现至银行卡</view>
|
||||
<view class="des">预计5- 10个工作日到账 手续费: {{tax === '0'?'免手续费':tax+'%'}}</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
withdrawsIndexCreate,
|
||||
withdrawsIndex
|
||||
} from '@/apis/interfaces/withdraws';
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
balance: 0, // 钱包能量球金额
|
||||
tax: 0, // 当前手续费
|
||||
cost: 1, // 每个能量球的价格
|
||||
total: 0, // 约合人民币
|
||||
card: '', // 银行卡号
|
||||
withdraw_input: '', // 提现能量球金额
|
||||
bank_accounts: 0,
|
||||
bankInfo: {}
|
||||
};
|
||||
},
|
||||
onLoad() {
|
||||
this.getInfo()
|
||||
},
|
||||
onShow() {
|
||||
if (uni.getStorageSync('refresh')) {
|
||||
this.bankInfo = {}
|
||||
this.getInfo()
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
// 提现基本信息
|
||||
getInfo() {
|
||||
withdrawsIndexCreate().then(res => {
|
||||
this.balance = res.balance
|
||||
this.tax = res.tax
|
||||
this.cost = res.cost
|
||||
this.bank_accounts = res.bank_accounts.length
|
||||
this.withdraw_input = Number(res.balance)
|
||||
this.total = Number(res.balance) * Number(res.cost)
|
||||
uni.setStorageSync('refresh', false)
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon: 'none'
|
||||
})
|
||||
})
|
||||
},
|
||||
// 输入提现能量球金额
|
||||
inputNum(e) {
|
||||
let number = Number(e.detail.value)
|
||||
console.log(number, this.balance)
|
||||
if (number <= Number(this.balance)) {
|
||||
this.total = Number(e.detail.value) * this.cost
|
||||
} else {
|
||||
this.total = 0
|
||||
if (Number(this.balance) === 0) {
|
||||
uni.showToast({
|
||||
title: '当前不能提现',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
this.withdraw_input = 0
|
||||
this.total = 0
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: '最大值能超过' + this.balance + '',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
this.withdraw_input = this.balance
|
||||
this.total = this.balance * this.cost
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
},
|
||||
// 点击全部
|
||||
all() {
|
||||
if (this.balance > 0) {
|
||||
this.withdraw_input = this.balance
|
||||
this.total = this.balance * this.cost
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: '啥也没有,我也做不到~',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
})
|
||||
this.withdraw_input = 0
|
||||
}
|
||||
},
|
||||
// 提现
|
||||
actions() {
|
||||
let data = {
|
||||
bank_account_id: this.bankInfo.bank_account_id,
|
||||
amount: Number(this.withdraw_input)
|
||||
}
|
||||
if (data.bank_account_id === undefined || data.bank_account_id === null || data.bank_account_id === '') {
|
||||
uni.showToast({
|
||||
title: this.bank_accounts > 0 ? '请选择银行卡' : '请添加银行卡',
|
||||
icon: 'none'
|
||||
})
|
||||
return;
|
||||
}
|
||||
if (data.amount === 0) {
|
||||
uni.showToast({
|
||||
title: '请输入能量球金额',
|
||||
icon: 'none'
|
||||
})
|
||||
return;
|
||||
}
|
||||
uni.showModal({
|
||||
title: '温馨提示',
|
||||
content:this.tax === '0'?'您是否确认提现,交易将免手续费':'您是否确认提现,将会扣除' + this.tax + '%手续费',
|
||||
confirmColor: '#7c52fc',
|
||||
cancelColor: '#cacaca',
|
||||
cancelText: '我再想想',
|
||||
confirmText: '确认提现',
|
||||
success: (res) => {
|
||||
if (res.confirm) {
|
||||
uni.showLoading({
|
||||
title: '提交中'
|
||||
})
|
||||
withdrawsIndex(data).then(res => {
|
||||
uni.showToast({
|
||||
title: res,
|
||||
icon: 'none',
|
||||
duration: 3000
|
||||
})
|
||||
this.withdraw_input = ''
|
||||
this.total = ''
|
||||
setTimeout(res => {
|
||||
this.getInfo()
|
||||
uni.hideLoading()
|
||||
}, 3000)
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon: 'none'
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
},
|
||||
// 添加银行卡
|
||||
addBanks() {
|
||||
this.$Router.push({
|
||||
name: 'addBank'
|
||||
})
|
||||
},
|
||||
// 选择银行卡
|
||||
bankLists() {
|
||||
this.$Router.push({
|
||||
name: 'bankList'
|
||||
})
|
||||
},
|
||||
// 提现记录
|
||||
withdrawDetail() {
|
||||
this.$Router.push({
|
||||
name: 'withdrawList'
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
page {
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
background-color: #f7f7f7;
|
||||
}
|
||||
|
||||
.receiptCode {
|
||||
color: #808080;
|
||||
text-align: left;
|
||||
// margin: $margin 0;
|
||||
font-size: $title-size-m;
|
||||
}
|
||||
|
||||
.WithdrawingCoin {
|
||||
background-color: #f7f7f7;
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
padding-bottom: 100rpx;
|
||||
|
||||
// 账户
|
||||
.propery {
|
||||
position: relative;
|
||||
padding-top: var(--status-bar-height);
|
||||
background-image: linear-gradient(to top, #7c52fc, #976dff);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
.record-bg {
|
||||
position: absolute;
|
||||
width: 120%;
|
||||
height: 300rpx;
|
||||
bottom: -50rpx;
|
||||
right: -20rpx;
|
||||
z-index: 1;
|
||||
opacity: .5;
|
||||
transform: rotate(-7deg);
|
||||
}
|
||||
|
||||
.propery-content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
padding: $padding/2 $padding $padding*3;
|
||||
text-align: center;
|
||||
|
||||
.currency {
|
||||
font-size: $title-size-m;
|
||||
color: rgba($color: white, $alpha: .8);
|
||||
}
|
||||
|
||||
.balance {
|
||||
font-size: $title-size * 2.5;
|
||||
padding: $padding 0;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.frozen {
|
||||
background: rgba($color: #000000, $alpha: .1);
|
||||
color: rgba($color: white, $alpha: .7);
|
||||
display: inline-block;
|
||||
font-size: 24rpx;
|
||||
padding: 6rpx $padding;
|
||||
border-radius: $radius-m;
|
||||
border: solid 1rpx rgba($color: white, $alpha: .4)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.all {
|
||||
color: $text-price;
|
||||
width: 160rpx;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.item-name {
|
||||
text-align: center;
|
||||
color: #303030;
|
||||
font-weight: bold;
|
||||
margin-bottom: $margin;
|
||||
font-size: 30rpx;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
box-sizing: border-box;
|
||||
background-image: linear-gradient(to right, #aaaaff, #aaaaff);
|
||||
color: #fff;
|
||||
margin: 30rpx;
|
||||
padding: 30rpx;
|
||||
|
||||
.right {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
font-size: 34rpx;
|
||||
|
||||
.cardName {
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.withdrawing-content {
|
||||
background-color: #fff;
|
||||
padding: $padding $padding $padding $padding * 2;
|
||||
font-size: $title-size-m;
|
||||
|
||||
/* 绑定银行卡 */
|
||||
.bank-card {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
box-sizing: border-box;
|
||||
padding: 0 45rpx 0 35rpx;
|
||||
}
|
||||
|
||||
|
||||
.item {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: flex-start;
|
||||
box-sizing: border-box;
|
||||
padding: 20rpx 0;
|
||||
|
||||
span:nth-child(1) {
|
||||
color: #666;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
|
||||
.inputTxt {
|
||||
color: #999;
|
||||
padding-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.input_num {
|
||||
font-size: 60rpx;
|
||||
color: #3a3a3a;
|
||||
font-weight: bolder;
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.item-total {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: $padding*1 0 0 0;
|
||||
color: #3a3a3a;
|
||||
|
||||
.total {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
justify-content: center;
|
||||
box-sizing: border-box;
|
||||
|
||||
.money {
|
||||
padding-top: $padding *0.5;
|
||||
}
|
||||
}
|
||||
|
||||
.lists {
|
||||
color: $text-price;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.btn {
|
||||
background-image: linear-gradient(to right, #7c52fc, #976dff);
|
||||
color: #fff;
|
||||
border-radius: 10rpx;
|
||||
text-align: center;
|
||||
padding: $padding * .9;
|
||||
margin: $margin * 3 $margin *2 $margin $margin*2;
|
||||
font-size: $title-size;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.des {
|
||||
text-align: center;
|
||||
color: #cacaca;
|
||||
font-size: 26rpx;
|
||||
}
|
||||
|
||||
.total {
|
||||
color: $mian-color;
|
||||
margin-top: 20rpx;
|
||||
margin-left: 50rpx;
|
||||
font-size: 36rpx;
|
||||
}
|
||||
</style>
|
||||
396
pages/wallet/property - 副本 (2).vue
Normal file
@@ -0,0 +1,396 @@
|
||||
<template>
|
||||
<view class="propertyIndex">
|
||||
<view class="propery">
|
||||
<image src="/static/imgs/account-bg.png" mode="aspectFill" class="record-bg" />
|
||||
<view class="propery-content">
|
||||
<view class="currency">能量球钱包
|
||||
<span>(≈ {{ price || '0.00' }} CNY)</span>
|
||||
</view>
|
||||
<view class="balance">{{ balance.balance || '0.00' }}</view>
|
||||
<!-- <view class="frozen">{{ balance.frozen || '0.00' }} 冻结中</view> -->
|
||||
<view class="balance-flex">
|
||||
<view class="balance-flex-item" @click="showAddress">区块链地址</view>
|
||||
<!-- <view class="balance-flex-item" @click="showPrivatekey('privatekey')">我的私钥</view> -->
|
||||
<view class="balance-flex-item" @click="$Router.push({name: 'Extract'})">能量球提现</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 账户记录 -->
|
||||
<view class="record">
|
||||
<view class="record-tabs">
|
||||
<view class="tabs-item" :class="logsType === 0 ? 'show': ''" @click="onLogsType(0)">全部</view>
|
||||
<view class="tabs-item" :class="logsType === 2 ? 'show': ''" @click="onLogsType(2)">收入</view>
|
||||
<view class="tabs-item" :class="logsType === 1 ? 'show': ''" @click="onLogsType(1)">支出</view>
|
||||
</view>
|
||||
<record :list="logs" :logsType="logsType" />
|
||||
<!-- ios安全距离 -->
|
||||
<view class="ios-bottom"></view>
|
||||
</view>
|
||||
<!-- 支付密码 -->
|
||||
<uni-popup ref="showPassword">
|
||||
<view class="validationPassword">
|
||||
<view class="from">
|
||||
<view class="title">验证密码</view>
|
||||
<input class="input" v-model="password" password placeholder="请验证安全密码" />
|
||||
</view>
|
||||
<view class="buttons">
|
||||
<view class="button cancel" @click="payPassword('cancel', passwordPages)">取消</view>
|
||||
<view class="button confirm" @click="payPassword('confirm', passwordPages)">验证</view>
|
||||
</view>
|
||||
</view>
|
||||
</uni-popup>
|
||||
<!-- 原密码弹窗 -->
|
||||
<!-- <number-jpan :length="6" @closeChange="closeChange($event)" ref="numberPad"></number-jpan> -->
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import record from '@/components/property/record'
|
||||
import h5Copy from '@/js_sdk/junyi-h5-copy/junyi-h5-copy/junyi-h5-copy'
|
||||
import {
|
||||
sum,
|
||||
price,
|
||||
logs,
|
||||
code,
|
||||
securityCheck // 输入旧密码是否正确
|
||||
} from '@/apis/interfaces/wallet'
|
||||
import numberJpan from "@/components/numberJpan/numberJpan.vue";
|
||||
export default {
|
||||
components: {
|
||||
record
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
balance: {},
|
||||
price: '0.00',
|
||||
logs: [],
|
||||
logsType: 0,
|
||||
password: '',
|
||||
passwordPages: ''
|
||||
};
|
||||
},
|
||||
onShow() {
|
||||
this.getsum()
|
||||
this.getlog()
|
||||
},
|
||||
methods: {
|
||||
getsum() {
|
||||
sum().then(res => {
|
||||
this.balance = res
|
||||
this.price = res.price
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
icon: 'none',
|
||||
title: err.message
|
||||
})
|
||||
})
|
||||
},
|
||||
getlog() {
|
||||
logs().then(res => {
|
||||
this.logs = res
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
icon: 'none',
|
||||
title: err.message
|
||||
})
|
||||
})
|
||||
},
|
||||
// 弹出私钥
|
||||
showPrivatekey(pages) {
|
||||
this.passwordPages = pages
|
||||
this.$refs.showPassword.open('center')
|
||||
},
|
||||
// 验证私钥
|
||||
payPassword(type) {
|
||||
if (type === 'confirm') {
|
||||
if (this.password === '') {
|
||||
uni.showToast({
|
||||
title: '请输入安全密码',
|
||||
icon: 'none'
|
||||
})
|
||||
return
|
||||
}
|
||||
securityCheck(this.password).then(res => {
|
||||
this.$refs.showPassword.close()
|
||||
switch (this.passwordPages) {
|
||||
case 'privatekey':
|
||||
this.$Router.push({
|
||||
name: 'Privatekey',
|
||||
params: {
|
||||
password: this.password
|
||||
}
|
||||
})
|
||||
break;
|
||||
case 'resetPassword':
|
||||
this.$Router.push({
|
||||
name: 'ResetPassword',
|
||||
params: {
|
||||
password: this.password
|
||||
}
|
||||
})
|
||||
break;
|
||||
}
|
||||
this.password = ''
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon: 'none',
|
||||
})
|
||||
})
|
||||
return
|
||||
}
|
||||
this.$refs.showPassword.close()
|
||||
},
|
||||
// 交易记录
|
||||
onLogsType(index) {
|
||||
if (this.logsType === index) return
|
||||
this.logsType = index
|
||||
this.logs = []
|
||||
logs({
|
||||
flag: this.logsType
|
||||
}).then(res => {
|
||||
this.logs = res
|
||||
})
|
||||
},
|
||||
// 区块地址
|
||||
showAddress() {
|
||||
uni.showModal({
|
||||
title: '我的区块链地址',
|
||||
content: '\n地址可以理解为银行卡卡号,与他人转账时是区块链上的两个地址间的交易行为\n\n' + this.balance.address,
|
||||
confirmText: '复制',
|
||||
confirmColor: '#b11eff',
|
||||
showCancel:false,
|
||||
success: (res) => {
|
||||
if (res.confirm) {
|
||||
uni.setClipboardData({
|
||||
data: this.balance.address,
|
||||
success() {
|
||||
uni.showToast({
|
||||
title: '区块链地址已复制',
|
||||
icon : 'none'
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
onNavigationBarButtonTap(e) {
|
||||
if (e.index === 0) {
|
||||
uni.showActionSheet({
|
||||
// itemList: ['转账', '收款', '提币', '修改密码'],
|
||||
itemList: ['提现', '修改密码'],
|
||||
success: (res) => {
|
||||
switch (res.tapIndex) {
|
||||
case 0:
|
||||
console.log('提现了,')
|
||||
this.$Router.push({
|
||||
name: 'Extract'
|
||||
})
|
||||
break;
|
||||
case 1:
|
||||
this.showPrivatekey('resetPassword')
|
||||
break;
|
||||
}
|
||||
uni.hideLoading()
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.propertyIndex {
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
// 验证密码弹出层
|
||||
.validationPassword {
|
||||
background-color: white;
|
||||
border-radius: $radius-m;
|
||||
width: 70vw;
|
||||
|
||||
.from {
|
||||
padding: $padding*2;
|
||||
|
||||
.title {
|
||||
text-align: center;
|
||||
font-size: $title-size;
|
||||
padding-bottom: $padding*2;
|
||||
font-weight: bold;
|
||||
color: $text-price;
|
||||
}
|
||||
|
||||
.input {
|
||||
text-align: center;
|
||||
height: 90rpx;
|
||||
font-size: $title-size;
|
||||
border-radius: $radius-m;
|
||||
background: $border-color-lg;
|
||||
padding: 0 ($padding*2);
|
||||
}
|
||||
}
|
||||
|
||||
.buttons {
|
||||
display: flex;
|
||||
border-top: solid 1rpx $border-color;
|
||||
|
||||
.button {
|
||||
width: 50%;
|
||||
font-size: $title-size;
|
||||
line-height: 90rpx;
|
||||
height: 90rpx;
|
||||
text-align: center;
|
||||
box-sizing: border-box;
|
||||
|
||||
&.cancel {
|
||||
border-right: solid 1rpx $border-color;
|
||||
color: $text-gray;
|
||||
}
|
||||
|
||||
&.confirm {
|
||||
color: $text-price;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// .button{
|
||||
// background-color: $text-price;
|
||||
// color: white;
|
||||
// border-radius: $radius-m;
|
||||
// border: none;
|
||||
// margin-top: $margin*2;
|
||||
// font-size: $title-size;
|
||||
// height: 90rpx;
|
||||
// line-height: 90rpx;
|
||||
// }
|
||||
// .close{
|
||||
// @extend .button;
|
||||
// text-align: center;
|
||||
// color: $text-gray;
|
||||
// margin-top: $margin;
|
||||
// background-color: transparent;
|
||||
// }
|
||||
}
|
||||
|
||||
// 账户
|
||||
.propery {
|
||||
position: relative;
|
||||
padding-top: var(--status-bar-height);
|
||||
background-image: linear-gradient(to top, #7c52fc, #976dff);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
.record-bg {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 300rpx;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
z-index: 1;
|
||||
opacity: .5;
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
// &::before {
|
||||
// position: absolute;
|
||||
// left: 0;
|
||||
// top: 0;
|
||||
// width: 100%;
|
||||
// height: 100%;
|
||||
// content: " ";
|
||||
// background-image: url(@/static/imgs/account-bg.png);
|
||||
// background-size: 100%;
|
||||
// background-repeat: no-repeat;
|
||||
// opacity: .5;
|
||||
// transform:rotate(0deg);
|
||||
// }
|
||||
|
||||
.propery-content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
padding: $padding/2 $padding $padding*3;
|
||||
text-align: center;
|
||||
|
||||
.currency {
|
||||
font-size: $title-size-m;
|
||||
color: rgba($color: white, $alpha: .8);
|
||||
}
|
||||
|
||||
.balance {
|
||||
font-size: $title-size * 2.5;
|
||||
padding: $padding 0;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.frozen {
|
||||
background: rgba($color: #000000, $alpha: .1);
|
||||
color: rgba($color: white, $alpha: .7);
|
||||
display: inline-block;
|
||||
font-size: 24rpx;
|
||||
padding: 6rpx $padding;
|
||||
border-radius: $radius-m;
|
||||
border: solid 1rpx rgba($color: white, $alpha: .4)
|
||||
}
|
||||
|
||||
.balance-flex {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: $margin * 2;
|
||||
|
||||
.balance-flex-item {
|
||||
background-color: white;
|
||||
width: 200rpx;
|
||||
height: 75rpx;
|
||||
line-height: 75rpx;
|
||||
color: $text-price;
|
||||
margin: 0 $margin;
|
||||
border-radius: $radius-m;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 记录
|
||||
.record {
|
||||
background-color: white;
|
||||
border-radius: $radius $radius 0 0;
|
||||
padding: $padding ($padding * 2);
|
||||
margin-top: -$margin;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
|
||||
.record-tabs {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
font-weight: bold;
|
||||
font-size: $title-size;
|
||||
color: $text-gray;
|
||||
line-height: 70rpx;
|
||||
margin-bottom: $margin;
|
||||
|
||||
.tabs-item {
|
||||
position: relative;
|
||||
padding: 0 $padding;
|
||||
|
||||
&.show {
|
||||
color: $text-price;
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: $padding;
|
||||
right: $padding;
|
||||
height: 4rpx;
|
||||
content: " ";
|
||||
background-color: $text-price;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -9,7 +9,7 @@
|
||||
<view class="balance">{{ balance.balance || '0.00' }}</view>
|
||||
<!-- <view class="frozen">{{ balance.frozen || '0.00' }} 冻结中</view> -->
|
||||
<view class="balance-flex">
|
||||
<view class="balance-flex-item" @click="showAddress">区块链地址</view>
|
||||
<!-- <view class="balance-flex-item" @click="showAddress">区块链地址</view> -->
|
||||
<!-- <view class="balance-flex-item" @click="showPrivatekey('privatekey')">我的私钥</view> -->
|
||||
<view class="balance-flex-item" @click="$Router.push({name: 'Extract'})">能量球提现</view>
|
||||
</view>
|
||||
@@ -17,30 +17,16 @@
|
||||
</view>
|
||||
<!-- 账户记录 -->
|
||||
<view class="record">
|
||||
<view class="record-tabs">
|
||||
<!-- <view class="record-tabs">
|
||||
<view class="tabs-item" :class="logsType === 0 ? 'show': ''" @click="onLogsType(0)">全部</view>
|
||||
<view class="tabs-item" :class="logsType === 2 ? 'show': ''" @click="onLogsType(2)">收入</view>
|
||||
<view class="tabs-item" :class="logsType === 1 ? 'show': ''" @click="onLogsType(1)">支出</view>
|
||||
</view>
|
||||
<record :list="logs" :logsType="logsType" />
|
||||
</view> -->
|
||||
<record :list="logs" :logsType="0" />
|
||||
<!-- ios安全距离 -->
|
||||
<view class="ios-bottom"></view>
|
||||
</view>
|
||||
<!-- 支付密码 -->
|
||||
<uni-popup ref="showPassword">
|
||||
<view class="validationPassword">
|
||||
<view class="from">
|
||||
<view class="title">验证密码</view>
|
||||
<input class="input" v-model="password" password placeholder="请验证安全密码" />
|
||||
</view>
|
||||
<view class="buttons">
|
||||
<view class="button cancel" @click="payPassword('cancel', passwordPages)">取消</view>
|
||||
<view class="button confirm" @click="payPassword('confirm', passwordPages)">验证</view>
|
||||
</view>
|
||||
</view>
|
||||
</uni-popup>
|
||||
<!-- 原密码弹窗 -->
|
||||
<!-- <number-jpan :length="6" @closeChange="closeChange($event)" ref="numberPad"></number-jpan> -->
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
||||
396
pages/wallet/redProperty.vue
Normal file
@@ -0,0 +1,396 @@
|
||||
<template>
|
||||
<view class="propertyIndex">
|
||||
<view class="propery">
|
||||
<image src="/static/imgs/account-bg.png" mode="aspectFill" class="record-bg" />
|
||||
<view class="propery-content">
|
||||
<view class="currency">可提现额度
|
||||
<!-- <span>(≈ {{ price || '0.00' }} CNY)</span> -->
|
||||
</view>
|
||||
<view class="balance">{{ balance.balance || '0.00' }}</view>
|
||||
<!-- <view class="frozen">{{ balance.frozen || '0.00' }} 冻结中</view> -->
|
||||
<view class="balance-flex">
|
||||
<view class="balance-flex-item" @click="showAddress">区块链地址</view>
|
||||
<!-- <view class="balance-flex-item" @click="showPrivatekey('privatekey')">我的私钥</view> -->
|
||||
<view class="balance-flex-item" @click="$Router.push({name: 'ExtractRed'})">红包提现</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 账户记录 -->
|
||||
<view class="record">
|
||||
<view class="record-tabs">
|
||||
<view class="tabs-item" :class="logsType === 0 ? 'show': ''" @click="onLogsType(0)">全部</view>
|
||||
<view class="tabs-item" :class="logsType === 2 ? 'show': ''" @click="onLogsType(2)">收入</view>
|
||||
<view class="tabs-item" :class="logsType === 1 ? 'show': ''" @click="onLogsType(1)">支出</view>
|
||||
</view>
|
||||
<record :list="logs" :logsType="logsType" />
|
||||
<!-- ios安全距离 -->
|
||||
<view class="ios-bottom"></view>
|
||||
</view>
|
||||
<!-- 支付密码 -->
|
||||
<uni-popup ref="showPassword">
|
||||
<view class="validationPassword">
|
||||
<view class="from">
|
||||
<view class="title">验证密码</view>
|
||||
<input class="input" v-model="password" password placeholder="请验证安全密码" />
|
||||
</view>
|
||||
<view class="buttons">
|
||||
<view class="button cancel" @click="payPassword('cancel', passwordPages)">取消</view>
|
||||
<view class="button confirm" @click="payPassword('confirm', passwordPages)">验证</view>
|
||||
</view>
|
||||
</view>
|
||||
</uni-popup>
|
||||
<!-- 原密码弹窗 -->
|
||||
<!-- <number-jpan :length="6" @closeChange="closeChange($event)" ref="numberPad"></number-jpan> -->
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import record from '@/components/property/record'
|
||||
import h5Copy from '@/js_sdk/junyi-h5-copy/junyi-h5-copy/junyi-h5-copy'
|
||||
import {
|
||||
sum,
|
||||
price,
|
||||
logs,
|
||||
code,
|
||||
securityCheck // 输入旧密码是否正确
|
||||
} from '@/apis/interfaces/wallet'
|
||||
import numberJpan from "@/components/numberJpan/numberJpan.vue";
|
||||
export default {
|
||||
components: {
|
||||
record
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
balance: {},
|
||||
price: '0.00',
|
||||
logs: [],
|
||||
logsType: 0,
|
||||
password: '',
|
||||
passwordPages: ''
|
||||
};
|
||||
},
|
||||
onShow() {
|
||||
this.getsum()
|
||||
this.getlog()
|
||||
},
|
||||
methods: {
|
||||
getsum() {
|
||||
sum().then(res => {
|
||||
this.balance = res
|
||||
this.price = res.price
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
icon: 'none',
|
||||
title: err.message
|
||||
})
|
||||
})
|
||||
},
|
||||
getlog() {
|
||||
logs().then(res => {
|
||||
this.logs = res
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
icon: 'none',
|
||||
title: err.message
|
||||
})
|
||||
})
|
||||
},
|
||||
// 弹出私钥
|
||||
showPrivatekey(pages) {
|
||||
this.passwordPages = pages
|
||||
this.$refs.showPassword.open('center')
|
||||
},
|
||||
// 验证私钥
|
||||
payPassword(type) {
|
||||
if (type === 'confirm') {
|
||||
if (this.password === '') {
|
||||
uni.showToast({
|
||||
title: '请输入安全密码',
|
||||
icon: 'none'
|
||||
})
|
||||
return
|
||||
}
|
||||
securityCheck(this.password).then(res => {
|
||||
this.$refs.showPassword.close()
|
||||
switch (this.passwordPages) {
|
||||
case 'privatekey':
|
||||
this.$Router.push({
|
||||
name: 'Privatekey',
|
||||
params: {
|
||||
password: this.password
|
||||
}
|
||||
})
|
||||
break;
|
||||
case 'resetPassword':
|
||||
this.$Router.push({
|
||||
name: 'ResetPassword',
|
||||
params: {
|
||||
password: this.password
|
||||
}
|
||||
})
|
||||
break;
|
||||
}
|
||||
this.password = ''
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon: 'none',
|
||||
})
|
||||
})
|
||||
return
|
||||
}
|
||||
this.$refs.showPassword.close()
|
||||
},
|
||||
// 交易记录
|
||||
onLogsType(index) {
|
||||
if (this.logsType === index) return
|
||||
this.logsType = index
|
||||
this.logs = []
|
||||
logs({
|
||||
flag: this.logsType
|
||||
}).then(res => {
|
||||
this.logs = res
|
||||
})
|
||||
},
|
||||
// 区块地址
|
||||
showAddress() {
|
||||
uni.showModal({
|
||||
title: '我的区块链地址',
|
||||
content: '\n地址可以理解为银行卡卡号,与他人转账时是区块链上的两个地址间的交易行为\n\n' + this.balance.address,
|
||||
confirmText: '复制',
|
||||
confirmColor: '#b11eff',
|
||||
showCancel:false,
|
||||
success: (res) => {
|
||||
if (res.confirm) {
|
||||
uni.setClipboardData({
|
||||
data: this.balance.address,
|
||||
success() {
|
||||
uni.showToast({
|
||||
title: '区块链地址已复制',
|
||||
icon : 'none'
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
onNavigationBarButtonTap(e) {
|
||||
if (e.index === 0) {
|
||||
uni.showActionSheet({
|
||||
// itemList: ['转账', '收款', '提币', '修改密码'],
|
||||
itemList: ['提现', '修改密码'],
|
||||
success: (res) => {
|
||||
switch (res.tapIndex) {
|
||||
case 0:
|
||||
console.log('提现了,')
|
||||
this.$Router.push({
|
||||
name: 'Extract'
|
||||
})
|
||||
break;
|
||||
case 1:
|
||||
this.showPrivatekey('resetPassword')
|
||||
break;
|
||||
}
|
||||
uni.hideLoading()
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.propertyIndex {
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
|
||||
// 验证密码弹出层
|
||||
.validationPassword {
|
||||
background-color: white;
|
||||
border-radius: $radius-m;
|
||||
width: 70vw;
|
||||
|
||||
.from {
|
||||
padding: $padding*2;
|
||||
|
||||
.title {
|
||||
text-align: center;
|
||||
font-size: $title-size;
|
||||
padding-bottom: $padding*2;
|
||||
font-weight: bold;
|
||||
color: $text-price;
|
||||
}
|
||||
|
||||
.input {
|
||||
text-align: center;
|
||||
height: 90rpx;
|
||||
font-size: $title-size;
|
||||
border-radius: $radius-m;
|
||||
background: $border-color-lg;
|
||||
padding: 0 ($padding*2);
|
||||
}
|
||||
}
|
||||
|
||||
.buttons {
|
||||
display: flex;
|
||||
border-top: solid 1rpx $border-color;
|
||||
|
||||
.button {
|
||||
width: 50%;
|
||||
font-size: $title-size;
|
||||
line-height: 90rpx;
|
||||
height: 90rpx;
|
||||
text-align: center;
|
||||
box-sizing: border-box;
|
||||
|
||||
&.cancel {
|
||||
border-right: solid 1rpx $border-color;
|
||||
color: $text-gray;
|
||||
}
|
||||
|
||||
&.confirm {
|
||||
color: $text-price;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// .button{
|
||||
// background-color: $text-price;
|
||||
// color: white;
|
||||
// border-radius: $radius-m;
|
||||
// border: none;
|
||||
// margin-top: $margin*2;
|
||||
// font-size: $title-size;
|
||||
// height: 90rpx;
|
||||
// line-height: 90rpx;
|
||||
// }
|
||||
// .close{
|
||||
// @extend .button;
|
||||
// text-align: center;
|
||||
// color: $text-gray;
|
||||
// margin-top: $margin;
|
||||
// background-color: transparent;
|
||||
// }
|
||||
}
|
||||
|
||||
// 账户
|
||||
.propery {
|
||||
position: relative;
|
||||
padding-top: var(--status-bar-height);
|
||||
background-image: linear-gradient(to top, #7c52fc, #976dff);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
.record-bg {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 300rpx;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
z-index: 1;
|
||||
opacity: .5;
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
// &::before {
|
||||
// position: absolute;
|
||||
// left: 0;
|
||||
// top: 0;
|
||||
// width: 100%;
|
||||
// height: 100%;
|
||||
// content: " ";
|
||||
// background-image: url(@/static/imgs/account-bg.png);
|
||||
// background-size: 100%;
|
||||
// background-repeat: no-repeat;
|
||||
// opacity: .5;
|
||||
// transform:rotate(0deg);
|
||||
// }
|
||||
|
||||
.propery-content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
padding: $padding/2 $padding $padding*3;
|
||||
text-align: center;
|
||||
|
||||
.currency {
|
||||
font-size: $title-size-m;
|
||||
color: rgba($color: white, $alpha: .8);
|
||||
}
|
||||
|
||||
.balance {
|
||||
font-size: $title-size * 2.5;
|
||||
padding: $padding 0;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.frozen {
|
||||
background: rgba($color: #000000, $alpha: .1);
|
||||
color: rgba($color: white, $alpha: .7);
|
||||
display: inline-block;
|
||||
font-size: 24rpx;
|
||||
padding: 6rpx $padding;
|
||||
border-radius: $radius-m;
|
||||
border: solid 1rpx rgba($color: white, $alpha: .4)
|
||||
}
|
||||
|
||||
.balance-flex {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: $margin * 2;
|
||||
|
||||
.balance-flex-item {
|
||||
background-color: white;
|
||||
width: 200rpx;
|
||||
height: 75rpx;
|
||||
line-height: 75rpx;
|
||||
color: $text-price;
|
||||
margin: 0 $margin;
|
||||
border-radius: $radius-m;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 记录
|
||||
.record {
|
||||
background-color: white;
|
||||
border-radius: $radius $radius 0 0;
|
||||
padding: $padding ($padding * 2);
|
||||
margin-top: -$margin;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
|
||||
.record-tabs {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
font-weight: bold;
|
||||
font-size: $title-size;
|
||||
color: $text-gray;
|
||||
line-height: 70rpx;
|
||||
margin-bottom: $margin;
|
||||
|
||||
.tabs-item {
|
||||
position: relative;
|
||||
padding: 0 $padding;
|
||||
|
||||
&.show {
|
||||
color: $text-price;
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: $padding;
|
||||
right: $padding;
|
||||
height: 4rpx;
|
||||
content: " ";
|
||||
background-color: $text-price;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -23,7 +23,6 @@ const router = createRouter({
|
||||
// 全局路由前置守卫
|
||||
router.beforeEach((to, from, next) => {
|
||||
const token = store.getters.getToken || uni.getStorageSync('token')
|
||||
|
||||
// 检查是否需要登录
|
||||
if(to.auth && token === ''){
|
||||
next({
|
||||
|
||||
BIN
unpackage/dist/build/app-plus/__uniapperror.png
vendored
|
Before Width: | Height: | Size: 5.7 KiB |
1
unpackage/dist/build/app-plus/__uniappes6.js
vendored
BIN
unpackage/dist/build/app-plus/__uniappsuccess.png
vendored
|
Before Width: | Height: | Size: 2.0 KiB |
25
unpackage/dist/build/app-plus/__uniappview.html
vendored
@@ -1,25 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<script>
|
||||
var __UniViewStartTime__ = Date.now();
|
||||
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') ||
|
||||
CSS.supports('top: constant(a)'))
|
||||
document.write(
|
||||
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
||||
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
|
||||
</script>
|
||||
<title>View</title>
|
||||
<link rel="stylesheet" href="view.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script src="__uniappes6.js"></script>
|
||||
<script src="view.umd.min.js"></script>
|
||||
<script src="app-view.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
1
unpackage/dist/build/app-plus/app-config.js
vendored
@@ -1 +0,0 @@
|
||||
(function(e){function r(r){for(var n,l,i=r[0],p=r[1],a=r[2],c=0,s=[];c<i.length;c++)l=i[c],Object.prototype.hasOwnProperty.call(o,l)&&o[l]&&s.push(o[l][0]),o[l]=0;for(n in p)Object.prototype.hasOwnProperty.call(p,n)&&(e[n]=p[n]);f&&f(r);while(s.length)s.shift()();return u.push.apply(u,a||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,i=1;i<t.length;i++){var p=t[i];0!==o[p]&&(n=!1)}n&&(u.splice(r--,1),e=l(l.s=t[0]))}return e}var n={},o={"app-config":0},u=[];function l(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,l),t.l=!0,t.exports}l.m=e,l.c=n,l.d=function(e,r,t){l.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},l.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.t=function(e,r){if(1&r&&(e=l(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(l.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)l.d(t,n,function(r){return e[r]}.bind(null,n));return t},l.n=function(e){var r=e&&e.__esModule?function(){return e["default"]}:function(){return e};return l.d(r,"a",r),r},l.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},l.p="/";var i=this["webpackJsonp"]=this["webpackJsonp"]||[],p=i.push.bind(i);i.push=r,i=i.slice();for(var a=0;a<i.length;a++)r(i[a]);var f=p;t()})([]);
|
||||
BIN
unpackage/dist/build/app-plus/static/404/404.png
vendored
|
Before Width: | Height: | Size: 7.5 KiB |
|
Before Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 274 KiB |
|
Before Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 8.0 KiB |
|
Before Width: | Height: | Size: 152 KiB |
|
Before Width: | Height: | Size: 212 KiB |
|
Before Width: | Height: | Size: 160 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 268 B |
|
Before Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 433 B |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 639 B |
|
Before Width: | Height: | Size: 216 B |
|
Before Width: | Height: | Size: 285 B |
|
Before Width: | Height: | Size: 411 B |
|
Before Width: | Height: | Size: 552 B |
|
Before Width: | Height: | Size: 472 B |
|
Before Width: | Height: | Size: 2.7 KiB |
BIN
unpackage/dist/build/app-plus/static/icons/fire.png
vendored
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 354 B |
|
Before Width: | Height: | Size: 227 B |
|
Before Width: | Height: | Size: 240 B |
|
Before Width: | Height: | Size: 215 B |
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 937 B |
|
Before Width: | Height: | Size: 1015 B |
|
Before Width: | Height: | Size: 303 B |
|
Before Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 599 B |
|
Before Width: | Height: | Size: 491 B |
|
Before Width: | Height: | Size: 376 B |
|
Before Width: | Height: | Size: 509 B |
|
Before Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 401 B |
|
Before Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 880 B |
|
Before Width: | Height: | Size: 306 B |
|
Before Width: | Height: | Size: 682 B |
|
Before Width: | Height: | Size: 607 B |
|
Before Width: | Height: | Size: 730 B |
BIN
unpackage/dist/build/app-plus/static/imgs/news_1.png
vendored
|
Before Width: | Height: | Size: 2.5 KiB |
BIN
unpackage/dist/build/app-plus/static/imgs/news_2.png
vendored
|
Before Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 590 B |
BIN
unpackage/dist/build/app-plus/static/imgs/news_3.png
vendored
|
Before Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 338 B |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 904 B |
|
Before Width: | Height: | Size: 614 B |
|
Before Width: | Height: | Size: 619 B |
BIN
unpackage/dist/build/app-plus/static/imgs/top_bg.png
vendored
|
Before Width: | Height: | Size: 8.3 KiB |
|
Before Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 643 B |
|
Before Width: | Height: | Size: 386 B |
BIN
unpackage/dist/build/app-plus/static/mp3/crystal.mp3
vendored
|
Before Width: | Height: | Size: 929 B |
|
Before Width: | Height: | Size: 857 B |