更新
This commit is contained in:
@@ -9,8 +9,8 @@ import store from '@/store'
|
|||||||
|
|
||||||
// 基础配置
|
// 基础配置
|
||||||
const config = {
|
const config = {
|
||||||
apiUrl : 'https://oapi.lianshang.vip/api/',
|
apiUrl : 'https://oapi.lianshang.vip/api/', // 正式环境
|
||||||
apiUrls : 'https://oapi.lianshang.vip/',
|
apiUrls : 'https://storage.lianshang.vip/', // 图片路径(测试/正式)
|
||||||
timeout : 60000
|
timeout : 60000
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -78,6 +78,15 @@ const companyStatus = () => {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 是否允许企业能开通
|
||||||
|
const companyIsallow = () => {
|
||||||
|
return request({
|
||||||
|
url: 'companies/applies/isallow',
|
||||||
|
method:'POST'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export {
|
export {
|
||||||
login,
|
login,
|
||||||
@@ -88,5 +97,6 @@ export {
|
|||||||
resetUserInfo,
|
resetUserInfo,
|
||||||
getUserSettingInfo,
|
getUserSettingInfo,
|
||||||
aboutUs,
|
aboutUs,
|
||||||
companyStatus
|
companyStatus,
|
||||||
|
companyIsallow
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
</block>
|
</block>
|
||||||
<block v-else>
|
<block v-else>
|
||||||
<view class="goods--null">
|
<view class="goods--null">
|
||||||
<view>{{toast}}</view>
|
<no-list name='no-goods' :txt="toast" />
|
||||||
</view>
|
</view>
|
||||||
</block>
|
</block>
|
||||||
</view>
|
</view>
|
||||||
@@ -129,7 +129,7 @@ export default {
|
|||||||
// 数据空
|
// 数据空
|
||||||
.goods--null{
|
.goods--null{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 20vh 0;
|
padding: 200rpx 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: $title-size-m;
|
font-size: $title-size-m;
|
||||||
color: $text-gray;
|
color: $text-gray;
|
||||||
|
|||||||
@@ -1,72 +1,72 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="NOList">
|
<view class="NOList">
|
||||||
<view class="no-addr">
|
<view class="no-addr">
|
||||||
<image :src="`${webUrl}/storage/imageresource/no-image/${name}.png`" mode="widthFix" />
|
<image :src="`${webUrl}/no-list/${name}.png`" mode="widthFix" />
|
||||||
{{txt}}
|
{{txt}}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {config} from '@/apis/index.js'
|
import {
|
||||||
export default {
|
config
|
||||||
name: "NOList",
|
} from '@/apis/index.js'
|
||||||
/**
|
export default {
|
||||||
* name 携带过来的图片名称 (与本地问图片文件相对应)
|
name: "NOList",
|
||||||
*
|
/**
|
||||||
* no-address(没有地址)
|
* name 携带过来的图片名称 (与本地问图片文件相对应)
|
||||||
* no-counpon(没有优惠券)
|
*
|
||||||
* no-goods(没有商品)
|
* no-address(没有地址)
|
||||||
* no-list(没有订单列表)
|
* no-counpon(没有优惠券)
|
||||||
* no-news(没有任何消息)
|
* no-goods(没有商品)
|
||||||
* no-new1(没有任何消息1)
|
* no-list(没有订单列表)
|
||||||
* no-chain (没有区块链信息)
|
* no-news(没有任何消息)
|
||||||
* no-collection(没有任何收藏信息)
|
* no-new1(没有任何消息1)
|
||||||
* no-foot (没有足迹信息)
|
* no-chain (没有区块链信息)
|
||||||
* no-in(没有收入信息)
|
* no-collection(没有任何收藏信息)
|
||||||
* no-out (没有任何支出信息)
|
* no-foot (没有足迹信息)
|
||||||
* no-order (没有任何订单信息)
|
* no-in(没有收入信息)
|
||||||
* no-order-list (没有任何订单信息)
|
* no-out (没有任何支出信息)
|
||||||
* no-record (没有任何收益信息)
|
* no-order (没有任何订单信息)
|
||||||
* no-records (没有任何收益信息2)
|
* no-order-list (没有任何订单信息)
|
||||||
* no-search (没有任何搜索信息)
|
* no-record (没有任何收益信息)
|
||||||
* no-shop (没有任何店铺信息)
|
* no-records (没有任何收益信息2)
|
||||||
*
|
* no-search (没有任何搜索信息)
|
||||||
*
|
* no-shop (没有任何店铺信息)
|
||||||
* txt 携带过来的提示语
|
*
|
||||||
*/
|
*
|
||||||
props: {
|
* txt 携带过来的提示语
|
||||||
name: String,
|
*/
|
||||||
txt: String
|
props: {
|
||||||
},
|
name: String,
|
||||||
data() {
|
txt: String
|
||||||
return {
|
},
|
||||||
webUrl:''
|
|
||||||
};
|
data() {
|
||||||
},
|
return {
|
||||||
mounted() {
|
webUrl: config.apiUrls
|
||||||
this.webUrl = config.apiUrls
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
// 无地址
|
// 无地址
|
||||||
.no-addr {
|
.no-addr {
|
||||||
padding-top: $padding*4;
|
padding-top: $padding*4;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
color: #999;
|
color: #999;
|
||||||
font-size: $title-size*0.9;
|
font-size: $title-size*0.9;
|
||||||
|
|
||||||
image {
|
image {
|
||||||
margin-bottom: $margin*2;
|
margin-bottom: $margin*2;
|
||||||
margin-top: $margin*1;
|
margin-top: $margin*1;
|
||||||
width: 400rpx;
|
width: 400rpx;
|
||||||
opacity: .4;
|
opacity: .4;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
10
pages.json
10
pages.json
@@ -19,7 +19,7 @@
|
|||||||
"name": "User",
|
"name": "User",
|
||||||
"aliasPath": "/user",
|
"aliasPath": "/user",
|
||||||
"auth": true,
|
"auth": true,
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "节点中心"
|
"navigationBarTitleText": "节点中心"
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
@@ -336,6 +336,14 @@
|
|||||||
"path" : "pages/wxAuth/wxAuth",
|
"path" : "pages/wxAuth/wxAuth",
|
||||||
"name" : "wxAuth",
|
"name" : "wxAuth",
|
||||||
"aliasPath": "/wechat-auth"
|
"aliasPath": "/wechat-auth"
|
||||||
|
},{
|
||||||
|
"path" : "pages/clearOpen/clearOpen",
|
||||||
|
"style" : {
|
||||||
|
"navigationBarTitleText": "提现记录",
|
||||||
|
"enablePullDownRefresh": false
|
||||||
|
},
|
||||||
|
"name": "clearOpen",
|
||||||
|
"aliasPath": "/inside/clear-open"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"globalStyle": {
|
"globalStyle": {
|
||||||
|
|||||||
42
pages/clearOpen/clearOpen.vue
Normal file
42
pages/clearOpen/clearOpen.vue
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<template>
|
||||||
|
<view class="vertical content">
|
||||||
|
<view class="text">{{text}}</view>
|
||||||
|
<button class="btn" type="default" :disabled="text != '清理完成'" size="mini" @click="$Router.pushTab({name: 'Index'})">返回首页</button>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
text: 'Opneid清理中...'
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
uni.removeStorage({
|
||||||
|
key : 'wxCode',
|
||||||
|
success : res => {
|
||||||
|
setTimeout(() => {
|
||||||
|
this.text = '清理完成'
|
||||||
|
},1000)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.content{
|
||||||
|
text-align: center;
|
||||||
|
height: 100vh;
|
||||||
|
background: white;
|
||||||
|
}
|
||||||
|
.text{
|
||||||
|
color: gray;
|
||||||
|
padding-bottom: $padding*2;
|
||||||
|
}
|
||||||
|
.btn{
|
||||||
|
background: $mian-color;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -304,7 +304,7 @@
|
|||||||
.btns{
|
.btns{
|
||||||
padding-top: $padding * 2;
|
padding-top: $padding * 2;
|
||||||
button{
|
button{
|
||||||
background: $mian-color-deep;
|
background: $mian-color;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
height: 90rpx;
|
height: 90rpx;
|
||||||
line-height: 90rpx;
|
line-height: 90rpx;
|
||||||
|
|||||||
@@ -125,8 +125,8 @@
|
|||||||
],
|
],
|
||||||
timeIndex : 0,
|
timeIndex : 0,
|
||||||
times : [
|
times : [
|
||||||
{ type: 2, text: '固定时间(区间范围)' },
|
{ type: 1, text: '固定时间(区间范围)' },
|
||||||
{ type: 1, text: '延期券(用户领取后有效天数)' }
|
{ type: 2, text: '延期券(用户领取后有效天数)' }
|
||||||
],
|
],
|
||||||
showDatePicker : false, // 活动弹出层时间
|
showDatePicker : false, // 活动弹出层时间
|
||||||
datePickerValue : [], // 活动时间
|
datePickerValue : [], // 活动时间
|
||||||
@@ -211,7 +211,7 @@
|
|||||||
days : this.timeNumber,
|
days : this.timeNumber,
|
||||||
goodsable_ids : this.coupongoods
|
goodsable_ids : this.coupongoods
|
||||||
}
|
}
|
||||||
|
console.log(valuss)
|
||||||
pushCoupons(valuss).then(res => {
|
pushCoupons(valuss).then(res => {
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
title : '提示',
|
title : '提示',
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<block v-if="coupons.length > 0">
|
<block v-if="coupons.length > 0">
|
||||||
<view class="coupons">
|
<view class="coupons">
|
||||||
<view class="coupons-flex" v-for="(item, index) in coupons" :key="index" @click="$Router.push({name: 'magDetails', params: {couponId: item.coupon_id}})">
|
<view class="coupons-flex" v-for="(item, index) in coupons" :key="index" @click="$Router.push({name: 'couponsDetails', params: {couponId: item.coupon_id}})">
|
||||||
<view class="item cover">
|
<view class="item cover">
|
||||||
<view v-if="item.type.value === 2">
|
<view v-if="item.type.value === 2">
|
||||||
<view class="cover-price">{{item.price || 0}}<text>元</text></view>
|
<view class="cover-price">{{item.price || 0}}<text>元</text></view>
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
</block>
|
</block>
|
||||||
<block v-else>
|
<block v-else>
|
||||||
<view class="list-null">
|
<view class="list-null">
|
||||||
<view class="sub-title">暂无相关优惠券</view>
|
<no-list name='no-counpon' txt="没有任何相关优惠券~" />
|
||||||
</view>
|
</view>
|
||||||
</block>
|
</block>
|
||||||
<view class="basisc-btn">
|
<view class="basisc-btn">
|
||||||
@@ -177,17 +177,8 @@
|
|||||||
// 空提示
|
// 空提示
|
||||||
.list-null{
|
.list-null{
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
// height: 100vh;
|
||||||
box-sizing: border-box;
|
padding-top: 200rpx;
|
||||||
text-align: center;
|
|
||||||
@extend .vertical;
|
|
||||||
.sub-title{
|
|
||||||
color: $text-gray;
|
|
||||||
font-size: $title-size-m;
|
|
||||||
}
|
|
||||||
.icon{
|
|
||||||
width: 288rpx;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
// 订单管理
|
// 订单管理
|
||||||
.coupons{
|
.coupons{
|
||||||
|
|||||||
@@ -1,35 +1,38 @@
|
|||||||
<template>
|
<template>
|
||||||
<view>
|
<view>
|
||||||
<!-- 商品列表 -->
|
<block>
|
||||||
<view class="lists">
|
<!-- 商品列表 -->
|
||||||
<view class="goods-item" v-for="(item, index) in goods" :key="index">
|
<view class="lists">
|
||||||
<checkbox class="checkbox" :checked="item.isSelect" @click="onSelect(index)"/>
|
<view class="goods-item" v-for="(item, index) in goods" :key="index">
|
||||||
<view class="mian">
|
<checkbox class="checkbox" :checked="item.isSelect" @click="onSelect(index)"/>
|
||||||
<image class="cover" :src="item.cover" mode="aspectFill" />
|
<view class="mian">
|
||||||
<view class="title">{{item.title}}</view>
|
<image class="cover" :src="item.cover" mode="aspectFill" />
|
||||||
<view class="subtitle">{{item.description}}</view>
|
<view class="title">{{item.title}}</view>
|
||||||
<view class="mian-flex">
|
<view class="subtitle">{{item.description}}</view>
|
||||||
<view class="price"><text>¥</text>{{item.price}}</view>
|
<view class="mian-flex">
|
||||||
<view class="inventory">权证剩余{{item.stock}}</view>
|
<view class="price"><text>¥</text>{{item.price}}</view>
|
||||||
|
<view class="inventory">权证剩余{{item.stock}}</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="ios-bottom"></view>
|
||||||
</view>
|
</view>
|
||||||
<view class="ios-bottom"></view>
|
<!-- footer -->
|
||||||
</view>
|
<view class="footer">
|
||||||
<!-- footer -->
|
<view class="footer-flex">
|
||||||
<view class="footer">
|
<view class="flex-checkbox">
|
||||||
<view class="footer-flex">
|
<checkbox class="checkbox" :checked="allSelect" @click="onAllSelect"/>
|
||||||
<view class="flex-checkbox">
|
<label for="all">
|
||||||
<checkbox class="checkbox" :checked="allSelect" @click="onAllSelect"/>
|
<view class="text">全选</view>
|
||||||
<label for="all">
|
<view class="sub-text">已选{{selectGoods.length}}件</view>
|
||||||
<view class="text">全选</view>
|
</label>
|
||||||
<view class="sub-text">已选{{selectGoods.length}}件</view>
|
</view>
|
||||||
</label>
|
<view class="flex-button" @click="setGoods">确定</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="flex-button" @click="setGoods">确定</view>
|
<view class="ios-bottom"></view>
|
||||||
</view>
|
</view>
|
||||||
<view class="ios-bottom"></view>
|
</block>
|
||||||
</view>
|
<no-list v-if="goods.length === 0" name='no-goods' txt="没有任何可选商品~" />
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="signBtn">
|
<view class="signBtn">
|
||||||
<block v-if="sign.signCan">
|
<block v-if="sign.signCan">
|
||||||
<view class="signBtn-go" @tap="signClick" style="cursor:pointer" >
|
<view class="signBtn-go" @click="signClick" style="cursor:pointer" >
|
||||||
签到领取能量碎片
|
签到领取能量碎片
|
||||||
</view>
|
</view>
|
||||||
</block>
|
</block>
|
||||||
@@ -139,21 +139,17 @@
|
|||||||
|
|
||||||
// 签到
|
// 签到
|
||||||
signClick() {
|
signClick() {
|
||||||
uni.vibrateShort({
|
operateSign().then(res => {
|
||||||
success: () => {
|
this.sign.signSuccess = res.task_crystals
|
||||||
operateSign().then(res => {
|
// 获取水晶签到信息
|
||||||
this.sign.signSuccess = res.task_crystals
|
this.sign.signShow = true
|
||||||
// 获取水晶签到信息
|
this.signInfo();
|
||||||
this.sign.signShow = true
|
}).catch(err => {
|
||||||
this.signInfo();
|
uni.showToast({
|
||||||
}).catch(err => {
|
icon: 'none',
|
||||||
uni.showToast({
|
title: err
|
||||||
icon: 'none',
|
})
|
||||||
title: err
|
})
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// 能量跳转
|
// 能量跳转
|
||||||
@@ -323,9 +319,7 @@
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-top: -50rpx;
|
margin-top: -50rpx;
|
||||||
position: relative;
|
|
||||||
z-index: 2;
|
|
||||||
.signBtn-go {
|
.signBtn-go {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100rpx;
|
height: 100rpx;
|
||||||
|
|||||||
@@ -26,9 +26,13 @@
|
|||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
managesCategory().then(res => {
|
managesCategory().then(res => {
|
||||||
console.log(res)
|
|
||||||
this.loding = false
|
this.loding = false
|
||||||
this.category = res
|
this.category = res
|
||||||
|
}).catch(err => {
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
methods:{
|
methods:{
|
||||||
|
|||||||
@@ -89,7 +89,8 @@
|
|||||||
wechatbind,
|
wechatbind,
|
||||||
resetUserInfo,
|
resetUserInfo,
|
||||||
getUserSettingInfo,
|
getUserSettingInfo,
|
||||||
companyStatus
|
companyStatus,
|
||||||
|
companyIsallow
|
||||||
} from '@/apis/interfaces/setting'
|
} from '@/apis/interfaces/setting'
|
||||||
import {
|
import {
|
||||||
uploads
|
uploads
|
||||||
@@ -141,9 +142,18 @@
|
|||||||
company(code) {
|
company(code) {
|
||||||
if (code === -1) {
|
if (code === -1) {
|
||||||
// 跳转到企业认证页面
|
// 跳转到企业认证页面
|
||||||
this.$Router.push({
|
companyIsallow().then(res=>{
|
||||||
name:'companyApprove'
|
this.$Router.push({
|
||||||
|
name:'companyApprove'
|
||||||
|
})
|
||||||
|
}).catch(err=>{
|
||||||
|
this.$refs.uToast.show({
|
||||||
|
title: err.message,
|
||||||
|
type: 'primary',
|
||||||
|
duration: 3000
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
} else if (code === 2) {
|
} else if (code === 2) {
|
||||||
// 跳转到企业认证页面
|
// 跳转到企业认证页面
|
||||||
this.$Router.push({
|
this.$Router.push({
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
<swiper class="code-swiper" previous-margin="70rpx" next-margin="70rpx" @change="swiperChange">
|
<swiper class="code-swiper" previous-margin="70rpx" next-margin="70rpx" @change="swiperChange">
|
||||||
<swiper-item v-for="(item, index) in inviteData" :key="index">
|
<swiper-item v-for="(item, index) in inviteData" :key="index">
|
||||||
<view class="code-item">
|
<view class="code-item">
|
||||||
|
<view class="code-lay"></view>
|
||||||
<image class="code-back-image" :src="item.cover" mode="aspectFill"></image>
|
<image class="code-back-image" :src="item.cover" mode="aspectFill"></image>
|
||||||
<view class="codDate">
|
<view class="codDate">
|
||||||
<view class="codDate-year">
|
<view class="codDate-year">
|
||||||
@@ -314,6 +315,12 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 0 $padding/2;
|
padding: 0 $padding/2;
|
||||||
|
.code-lay{
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
.code-back-image{
|
.code-back-image{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|||||||
1976
pages/user/index.vue
1976
pages/user/index.vue
File diff suppressed because it is too large
Load Diff
1100
pages/user/new_file.vue
Normal file
1100
pages/user/new_file.vue
Normal file
File diff suppressed because it is too large
Load Diff
@@ -6,23 +6,30 @@
|
|||||||
<view class="item" :class="{'show': larer == '1'}" @click="onTabs('1')">直接</view>
|
<view class="item" :class="{'show': larer == '1'}" @click="onTabs('1')">直接</view>
|
||||||
<view class="item" :class="{'show': larer == '2'}" @click="onTabs('2')">间接</view>
|
<view class="item" :class="{'show': larer == '2'}" @click="onTabs('2')">间接</view>
|
||||||
</view>
|
</view>
|
||||||
|
<block v-if="lists.length > 0">
|
||||||
<view class="partner-list">
|
<view class="partner-list">
|
||||||
<view class="partner-label" v-for="(item, index) in lists" :key="index" :larer='larer'>
|
<view class="partner-label" v-for="(item, index) in lists" :key="index" :larer='larer'>
|
||||||
<image class="partner-avatar" :src="item.avatar ? item.avatar : '/static/user/user-portrait.png'" mode="aspectFill"></image>
|
<image class="partner-avatar" :src="item.avatar ? item.avatar : '/static/user/user-portrait.png'" mode="aspectFill"></image>
|
||||||
<view class="partner-cont">
|
<view class="partner-cont">
|
||||||
<view class="partner-name">
|
<view class="partner-name">
|
||||||
<view class="partner-nickname">
|
<view class="partner-nickname">
|
||||||
{{item.nickname}}
|
{{item.nickname}}
|
||||||
</view>
|
</view>
|
||||||
<image v-if="item.identity" class="partner-identity" :src="item.identity.cover" mode="widthFix"></image>
|
<image v-if="item.identity" class="partner-identity" :src="item.identity.cover" mode="widthFix"></image>
|
||||||
</view>
|
</view>
|
||||||
<view class="partner-tel">
|
<view class="partner-tel">
|
||||||
{{item.username}}
|
{{item.username}}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
</block>
|
||||||
|
<block v-else>
|
||||||
|
<view class="list-null">
|
||||||
|
<image class="icon" src="@/static/icons/approve-icon.png" mode="widthFix"></image>
|
||||||
|
<view class="sub-title">暂未数据</view>
|
||||||
|
</view>
|
||||||
|
</block>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -66,6 +73,34 @@
|
|||||||
.content{
|
.content{
|
||||||
padding-top: 90rpx;
|
padding-top: 90rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 空提示
|
||||||
|
.list-null{
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
padding-bottom: 20vh;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background: white;
|
||||||
|
text-align: center;
|
||||||
|
@extend .vertical;
|
||||||
|
.sub-title{
|
||||||
|
color: $text-gray;
|
||||||
|
font-size: $title-size-m;
|
||||||
|
}
|
||||||
|
.icon{
|
||||||
|
width: 288rpx;
|
||||||
|
}
|
||||||
|
.sub-btn{
|
||||||
|
width: 200rpx;
|
||||||
|
height: 70rpx;
|
||||||
|
line-height: 70rpx;
|
||||||
|
text-align: center;
|
||||||
|
background: $mian-color;
|
||||||
|
color: white;
|
||||||
|
display: inline-block;
|
||||||
|
margin-top: $margin*2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// tabs
|
// tabs
|
||||||
.tabs{
|
.tabs{
|
||||||
|
|||||||
@@ -231,17 +231,20 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
// 微信支付
|
// 微信支付
|
||||||
wechatPay(id, wx) {
|
wechatPay(id, wx) {
|
||||||
vipWechatPay(id, {
|
vipWechatPay(id, {
|
||||||
openid: this.$store.getters.getCode
|
openid: this.$store.getters.getCode
|
||||||
}).then(payConfig => {
|
}).then(payConfig => {
|
||||||
wx.chooseWXPay({...payConfig,
|
wx.chooseWXPay({...payConfig,
|
||||||
success: ()=> {
|
success() {
|
||||||
uni.showToast({
|
uni.showModal({
|
||||||
title: '支付成功',
|
title : '提示',
|
||||||
icon: "success"
|
content : '支付成功,恭喜您成功开通',
|
||||||
})
|
cancelColor: '#8b64fd',
|
||||||
this.idenInfo();
|
success() {
|
||||||
|
this.$Router.back()
|
||||||
|
}
|
||||||
|
})
|
||||||
},
|
},
|
||||||
fail(err) {
|
fail(err) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
@@ -250,7 +253,12 @@ export default {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
}).catch(err => {
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
// 勾选协议
|
// 勾选协议
|
||||||
|
|||||||
@@ -26,14 +26,15 @@
|
|||||||
<view style="flex: 1;">
|
<view style="flex: 1;">
|
||||||
<view class="inputTxt">提现数量</view>
|
<view class="inputTxt">提现数量</view>
|
||||||
<input class="input_num" v-model="withdraw_input" @input='inputNum' type="number"
|
<input class="input_num" v-model="withdraw_input" @input='inputNum' type="number"
|
||||||
placeholder-style="color:#999;font-weight:normal; font-size:34rpx;" placeholder="请输入提现数量" />
|
placeholder-style="color:#999;font-weight:normal; font-size:34rpx;"
|
||||||
|
placeholder="请输入提现数量" :disabled="balance===0" />
|
||||||
</view>
|
</view>
|
||||||
<view class="all" @click="all">全部提现</view>
|
<view class="all" @click="all">全部提现</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="total" v-if="total">≈ ¥{{total.toFixed(2)}} </view>
|
<view class="total" v-if="total">≈ ¥{{total.toFixed(2)}} </view>
|
||||||
<view class="btn" @click="actions">提现至银行卡</view>
|
<view class="btn" @click="actions">提现至银行卡</view>
|
||||||
<view class="des">预计5- 10个工作日到账 手续费: {{tax}}%</view>
|
<view class="des">预计5- 10个工作日到账 手续费: {{tax === '0'?'免手续费':tax+'%'}}</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -73,6 +74,7 @@
|
|||||||
this.cost = res.cost
|
this.cost = res.cost
|
||||||
this.bank_accounts = res.bank_accounts.length
|
this.bank_accounts = res.bank_accounts.length
|
||||||
this.withdraw_input = Number(res.balance)
|
this.withdraw_input = Number(res.balance)
|
||||||
|
this.total = Number(res.balance) * Number(res.cost)
|
||||||
uni.setStorageSync('refresh', false)
|
uni.setStorageSync('refresh', false)
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
@@ -84,16 +86,30 @@
|
|||||||
// 输入提现能量球数量
|
// 输入提现能量球数量
|
||||||
inputNum(e) {
|
inputNum(e) {
|
||||||
let number = Number(e.detail.value)
|
let number = Number(e.detail.value)
|
||||||
if (number <= this.balance) {
|
console.log(number, this.balance)
|
||||||
|
if (number <= Number(this.balance)) {
|
||||||
this.total = Number(e.detail.value) * this.cost
|
this.total = Number(e.detail.value) * this.cost
|
||||||
} else {
|
} else {
|
||||||
uni.showToast({
|
|
||||||
title: '最大值能超过' + this.balance + '',
|
|
||||||
icon: 'none',
|
|
||||||
duration: 2000
|
|
||||||
});
|
|
||||||
this.withdraw_input = ''
|
|
||||||
this.total = 0
|
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
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
@@ -108,6 +124,7 @@
|
|||||||
icon: 'none',
|
icon: 'none',
|
||||||
duration: 2000
|
duration: 2000
|
||||||
})
|
})
|
||||||
|
this.withdraw_input = 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 提现
|
// 提现
|
||||||
@@ -132,7 +149,7 @@
|
|||||||
}
|
}
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
title: '温馨提示',
|
title: '温馨提示',
|
||||||
content: '您是否确认提现,将会扣除' + this.tax + '%手续费',
|
content:this.tax === '0'?'您是否确认提现,交易将免手续费':'您是否确认提现,将会扣除' + this.tax + '%手续费',
|
||||||
confirmColor: '#7c52fc',
|
confirmColor: '#7c52fc',
|
||||||
cancelColor: '#cacaca',
|
cancelColor: '#cacaca',
|
||||||
cancelText: '我再想想',
|
cancelText: '我再想想',
|
||||||
@@ -321,10 +338,12 @@
|
|||||||
color: #666;
|
color: #666;
|
||||||
margin-right: 20rpx;
|
margin-right: 20rpx;
|
||||||
}
|
}
|
||||||
.inputTxt{
|
|
||||||
|
.inputTxt {
|
||||||
color: #999;
|
color: #999;
|
||||||
padding-bottom: 20rpx;
|
padding-bottom: 20rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input_num {
|
.input_num {
|
||||||
font-size: 60rpx;
|
font-size: 60rpx;
|
||||||
color: #3a3a3a;
|
color: #3a3a3a;
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
<image src="/static/imgs/record-icon.png" mode="widthFix" class="record-icon" />
|
<image src="/static/imgs/record-icon.png" mode="widthFix" class="record-icon" />
|
||||||
<view class="">
|
<view class="">
|
||||||
<view class="record-list-item-top">
|
<view class="record-list-item-top">
|
||||||
<view class="title ellipsis-2">{{item.remark}}</view>
|
<view class="title ellipsis-1">{{item.remark}} <span class='tags'>{{item.frozen.text}}</span></view>
|
||||||
<view class="money" >{{item.amount}}</view>
|
<view class="money" >{{item.amount}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="record-list-item-date">{{item.created_at}}</view>
|
<view class="record-list-item-date">{{item.created_at}}</view>
|
||||||
@@ -222,7 +222,11 @@
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
width: 600rpx;
|
width: 600rpx;
|
||||||
|
.tags{
|
||||||
|
padding-left: 20rpx;
|
||||||
|
color: #ff5500;
|
||||||
|
font-size: 24rpx;
|
||||||
|
}
|
||||||
.title {
|
.title {
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
width: 600rpx;
|
width: 600rpx;
|
||||||
|
|||||||
@@ -11,17 +11,19 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="record-mouth-year">
|
<view class="record-mouth-year">
|
||||||
<view class="record-type-right">
|
<view class="record-type-right">
|
||||||
<view class="record-title">当前能量球</view>
|
<view class="record-title">当前能量球
|
||||||
|
<view class="record-type-left">
|
||||||
|
<u-picker mode="time" v-model="show" :params="params" @confirm='confirm' title='筛选日期'
|
||||||
|
start-year='2021' :end-year='currentYear' />
|
||||||
|
<view @click="show = true">
|
||||||
|
{{date?date:'选择日期'}}
|
||||||
|
<uni-icons type="arrowdown" color="#fff" size="12" />
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
<view class="record-money">{{account || '0.00'}} </view>
|
<view class="record-money">{{account || '0.00'}} </view>
|
||||||
</view>
|
</view>
|
||||||
<view class="record-type-left">
|
|
||||||
<u-picker mode="time" v-model="show" :params="params" @confirm='confirm' title='筛选日期'
|
|
||||||
start-year='2021' :end-year='currentYear' />
|
|
||||||
<view @click="show = true">
|
|
||||||
{{date?date:'选择日期'}}
|
|
||||||
<uni-icons type="arrowdown" color="#fff" size="12" />
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
</view>
|
||||||
<!-- <view class="record-title">碎片个数</view>
|
<!-- <view class="record-title">碎片个数</view>
|
||||||
<view class="record-money"><span>¥</span>{{account || '0.00'}}</view> -->
|
<view class="record-money"><span>¥</span>{{account || '0.00'}}</view> -->
|
||||||
@@ -337,6 +339,12 @@
|
|||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
padding: 0 0 20rpx 0;
|
padding: 0 0 20rpx 0;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
justify-content: space-between;
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.record-money {
|
.record-money {
|
||||||
@@ -381,11 +389,13 @@
|
|||||||
font-size: 30rpx;
|
font-size: 30rpx;
|
||||||
padding-top: 10rpx;
|
padding-top: 10rpx;
|
||||||
color: $text-price;
|
color: $text-price;
|
||||||
.left-des{
|
|
||||||
|
.left-des {
|
||||||
color: #999;
|
color: #999;
|
||||||
font-size: 26rpx;
|
font-size: 26rpx;
|
||||||
margin-left: 20rpx;
|
margin-left: 20rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
span:nth-child(2) {
|
span:nth-child(2) {
|
||||||
color: #C0C0C0;
|
color: #C0C0C0;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
|||||||
2
unpackage/dist/build/h5/index.html
vendored
2
unpackage/dist/build/h5/index.html
vendored
@@ -1,2 +1,2 @@
|
|||||||
<!DOCTYPE html><html lang=zh-CN><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><title>链商星球</title><script>var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
|
<!DOCTYPE html><html lang=zh-CN><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><title>链商星球</title><script>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><link rel=stylesheet href=/static/index.5e7e3b56.css></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script src=/static/js/chunk-vendors.61332aa4.js></script><script src=/static/js/index.a5675668.js></script></body></html>
|
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><link rel=stylesheet href=/static/index.5e7e3b56.css></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script src=/static/js/chunk-vendors.61332aa4.js></script><script src=/static/js/index.c1da6ab1.js></script></body></html>
|
||||||
File diff suppressed because one or more lines are too long
1
unpackage/dist/build/h5/static/js/index.c1da6ab1.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/index.c1da6ab1.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/build/h5/static/js/pages-clearOpen-clearOpen.c3863e5e.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-clearOpen-clearOpen.c3863e5e.js
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-clearOpen-clearOpen"],{"25c2":function(e,t,n){"use strict";n.r(t);var i=n("c804"),a=n("4d4a");for(var o in a)"default"!==o&&function(e){n.d(t,e,(function(){return a[e]}))}(o);n("7fc1");var s,r=n("f0c5"),d=Object(r["a"])(a["default"],i["b"],i["c"],!1,null,"e49e5628",null,!1,i["a"],s);t["default"]=d.exports},"49d0":function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i={data:function(){return{text:"Opneid清理中..."}},created:function(){var e=this;uni.removeStorage({key:"wxCode",success:function(t){setTimeout((function(){e.text="清理完成"}),1e3)}})}};t.default=i},"4d4a":function(e,t,n){"use strict";n.r(t);var i=n("49d0"),a=n.n(i);for(var o in i)"default"!==o&&function(e){n.d(t,e,(function(){return i[e]}))}(o);t["default"]=a.a},7667:function(e,t,n){var i=n("24fb");t=i(!1),t.push([e.i,'@charset "UTF-8";\n/**\n * 这里是uni-app内置的常用样式变量\n *\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\n *\n */\n/**\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\n *\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\n */\n/**\n * Web唐明明\n * 匆匆数载恍如梦,岁月迢迢华发增。\n * 碌碌无为枉半生,一朝惊醒万事空。\n */.ios-bottom[data-v-e49e5628]{padding-bottom:env(safe-area-inset-bottom);padding-bottom:constant(safe-area-inset-bottom)}.ios-left[data-v-e49e5628]{padding-left:env(safe-area-inset-left);padding-left:constant(safe-area-inset-left)}.ios-right[data-v-e49e5628]{padding-right:env(safe-area-inset-right);padding-right:constant(safe-area-inset-right)}.ios-top[data-v-e49e5628]{padding-top:0}.vertical[data-v-e49e5628]{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-pack:center}.nowrap[data-v-e49e5628]{max-width:100%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.ellipsis[data-v-e49e5628]{max-width:100%;display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical;-webkit-line-clamp:2}.ellipsis-3[data-v-e49e5628]{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical;-webkit-line-clamp:3}.ellipsis-4[data-v-e49e5628]{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical;-webkit-line-clamp:4}.ellipsis-5[data-v-e49e5628]{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical;-webkit-line-clamp:5}\n/* 颜色变量 */\n/* 行为相关颜色 */\n/* 文字基本颜色 */\n/* 背景颜色 */\n/* 边框颜色 */\n/* 尺寸变量 */\n/* 文字尺寸 */\n/* 图片尺寸 */\n/* Border Radius */\n/* 水平间距 */\n/* 垂直间距 */\n/* 透明度 */\n/* 文章场景相关 */.content[data-v-e49e5628]{text-align:center;height:100vh;background:#fff}.text[data-v-e49e5628]{color:grey;padding-bottom:%?60?%}.btn[data-v-e49e5628]{background:#8b64fd;color:#fff}',""]),e.exports=t},"7fc1":function(e,t,n){"use strict";var i=n("953e"),a=n.n(i);a.a},"953e":function(e,t,n){var i=n("7667");"string"===typeof i&&(i=[[e.i,i,""]]),i.locals&&(e.exports=i.locals);var a=n("4f06").default;a("47a4eaf7",i,!0,{sourceMap:!1,shadowMode:!1})},c804:function(e,t,n){"use strict";var i;n.d(t,"b",(function(){return a})),n.d(t,"c",(function(){return o})),n.d(t,"a",(function(){return i}));var a=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("v-uni-view",{staticClass:"vertical content"},[n("v-uni-view",{staticClass:"text"},[e._v(e._s(e.text))]),n("v-uni-button",{staticClass:"btn",attrs:{type:"default",disabled:"清理完成"!=e.text,size:"mini"},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.$Router.pushTab({name:"Index"})}}},[e._v("返回首页")])],1)},o=[]}}]);
|
||||||
File diff suppressed because one or more lines are too long
1
unpackage/dist/build/h5/static/js/pages-found-index.f71f07f4.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-found-index.f71f07f4.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
unpackage/dist/build/h5/static/js/pages-goods-addClassify.ec918b11.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-goods-addClassify.ec918b11.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/build/h5/static/js/pages-news-index.091dc64a.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-news-index.091dc64a.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
unpackage/dist/build/h5/static/js/pages-user-code.ec1c1fdb.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-user-code.ec1c1fdb.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/build/h5/static/js/pages-user-index.56606d9d.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-user-index.56606d9d.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
unpackage/dist/build/h5/static/js/pages-verification-history.1141a748.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-verification-history.1141a748.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
unpackage/dist/build/h5/static/js/pages-vip-vip.7b8688b4.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-vip-vip.7b8688b4.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/build/h5/static/js/pages-wallet-addBank.3df87454.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-wallet-addBank.3df87454.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
unpackage/dist/build/h5/static/js/pages-wallet-bankList.1e9e47db.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-wallet-bankList.1e9e47db.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
unpackage/dist/build/h5/static/js/pages-wallet-extract.532541bc.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-wallet-extract.532541bc.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
unpackage/dist/build/h5/static/js/pages-wallet-fragment.2021a6d6.js
vendored
Normal file
1
unpackage/dist/build/h5/static/js/pages-wallet-fragment.2021a6d6.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user