| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- <template>
- <view class="content">
- <!-- <uni-notice-bar single="true" text="每月25号到月底可提现上月结算余额"></uni-notice-bar> -->
- <view class="content-money">
- <view class="flex ">
- <view class="buttom">
- <view class="icon">{{ money | getMoneyStyle }}</view>
- <text class="text">可用额度</text>
- </view>
- <!-- <view class="interval"></view>
- <view class="buttom">
- <view class=" icon">{{ freeze | getMoneyStyle }}</view>
- <text class="text">待审核提现金额</text>
- </view> -->
- </view>
- </view>
- <view class="title">
- <view class="title-t">
- 提现信息
- </view>
- </view>
- <view class="information">
- <view class="left">
- 二维码
- </view>
- <view class="right">
- <image src="../../static/img/add.png" @click="updataImg" v-if="!imgUrl"></image>
- <image :src="imgUrl" @click="updataImg" v-else></image>
- </view>
- </view>
- <view class="information">
- <view class="left">
- 提现数量
- </view>
- <view class="right">
- <input type="text" value="" placeholder="输入所需提币数量(最低 USTD起提)"/>
- </view>
- </view>
- <view class="information">
- <view class="left">
- 手续费
- </view>
- <view class="right">
- 收取 %手续费
- </view>
- </view>
- <view class="information">
- <view class="left">
- 实际到账数量
- </view>
- <view class="right"style="color: #000;line-height: 45rpx;">
- 0.00
- </view>
- </view>
- <!-- <view class="row-box">
- <view class="title">提现金额</view>
- <view class="row">
- <text class="tit">¥</text>
- <input class="input" type="number" v-model="withdrawal" :placeholder="'最低提现金额' + minPrice + '元'" placeholder-class="placeholder" />
- <view class="buttom" @click="withdrawal = money">全部提现</view>
- </view>
- </view> -->
- <!-- #ifndef MP-WEIXIN -->
- <!-- <view class="list" v-if="!weichatBsrowser">
- <radio-group @change="tabRadio">
- <label>
- <view class="box">
- <view class="icon iconfont iconweixin1"></view>
- <view class="title-box">
- <view class="title"><text>提现至微信</text></view>
- </view>
- <view class="right"><radio value="weixin" color="#5dbc7c" :checked="type == 'weixin'" /></view>
- </view>
- </label>
- <label>
- <view class="box">
- <view class="icon iconfont iconzhifubao"></view>
- <view class="title-box">
- <view class="title">
- <text v-if="aliData.fullname">提现至支付宝</text>
- <text v-else>请创建支付宝账号</text>
- </view>
- <view class="node">
- <text v-if="aliData.fullname">真实姓名({{ aliData.fullname }})</text>
- </view>
- </view>
- <view class="right"><radio value="alipay" color="#5dbc7c" :checked="type == 'alipay'" /></view>
- </view>
- </label>
- <label>
- <view class="box">
- <view class="icon iconfont"><image class="icon-img" src="/static/icon/i8.png" mode="aspectFit"></image></view>
- <view class="title-box">
- <view class="title">
- <text v-if="bankData.bankno">{{ bankData.bank + ' ' + bankData.bankno }}</text>
- <text v-else>请创建银行账号</text>
- </view>
- <view class="node">
- <text v-if="bankData.fullname">真实姓名({{ bankData.fullname }})</text>
- </view>
- </view>
- <view class="right"><radio value="bank" color="#5dbc7c" :checked="type == 'bank'" /></view>
- </view>
- </label>
- </radio-group>
- </view> -->
- <!-- #endif -->
- <view class="button">
- 确认提现
- </view>
- <!-- <button class="add-btn up" @click="confirm">提交申请</button> -->
- <!-- <button class="add-btn modified" v-if="!weichatBsrowser" @click="navTo('/pages/money/account')">账号管理</button> -->
- </view>
- </template>
- <script>
- import { getMoneyStyle } from '@/utils/rocessor.js';
- import { extractCash, extractBank, aliInfo, bankInfo } from '@/api/wallet.js';
- import uniNoticeBar from '@/components/uni-notice-bar/uni-notice-bar.vue';
- export default {
- filters: {
- getMoneyStyle
- },
- components: {
- uniNoticeBar
- },
- data() {
- return {
- type: 'weixin', //提现方式
- money: '0.00', //可提现金额
- freeze: '0.0', //冻结金额
- withdrawal: '', //提现金额
- minPrice: '', //最少提现金额
- aliData: {},
- bankData: {},
- imgUrl: "",
- // #ifdef H5
- weichatBsrowser: false
- // #endif
- };
- },
- // onLoad(options) {
- // // #ifdef H5
- // this.weichatBsrowser = uni.getStorageSync('weichatBrowser');
- // // #endif
- // //加载提现信息
- // this.loadData();
- // // 加载提款账号信息
- // this.loadAli();
- // this.loadBank();
- // },
- methods: {
- //上传二维码
- updataImg() {
- uni.chooseImage({
- success: (chooseImageRes) => {
- this.imgUrl = chooseImageRes.tempFilePaths[0];
- console.log(this.imgUrl)
- // uni.uploadFile({
- // url: 'https://www.example.com/upload', //仅为示例,非真实的接口地址
- // filePath: tempFilePaths[0],
- // name: 'file',
- // formData: {
- // 'user': 'test'
- // },
- // success: (uploadFileRes) => {
- // console.log(uploadFileRes.data);
- // }
- // });
- }
- });
- },
- // 更新数据
- // dataUp(){
- // this.loadAli();
- // this.loadBank();
- // },
- // //加载数据
- // async loadAli(source) {
- // aliInfo({}).then(e => {
- // this.aliData = e.data;
- // });
- // },
- // // 加载银行卡信息
- // async loadBank() {
- // bankInfo({}).then(e => {
- // this.bankData = e.data;
- // });
- // },
- // // 加载余额信息
- // async loadData() {
- // extractBank({}).then(({ data }) => {
- // this.money = data.moneyCount;//可提现余额
- // this.minPrice = data.minPrice;//最小提现
- // this.freeze =data.inmoneyCount//提现中的余额
- // });
- // },
- // 跳转
- navTo(url) {
- uni.navigateTo({
- url: url
- });
- },
- // 切换选中对象
- // tabRadio(e) {
- // this.type = e.detail.value;
- // },
- // 提交
- // confirm() {
- // let data = {
- // extract_type: this.type, //bank -银行卡 alipay-支付宝 weixin-微信
- // money: this.withdrawal, //金额
- // money_type: 1//0佣金1余额
- // }
- // if (this.type=='alipay') {
- // data.name = this.aliData.fullname;
- // data.alipay_code = this.aliData.alino;
- // }
- // if (this.type=='bank') {
- // data.name = this.bankData.fullname;
- // data.bankname = this.bankData.bank;
- // data.cardnum = this.bankData.bankno;
- // }
-
-
- // extractCash(data)
- // .then(e => {
- // uni.showToast({
- // title: '提交成功',
- // duration: 2000,
- // position: 'top'
- // });
- // })
- // .catch(e => {
- // console.log();
- // });
- // }
- }
- };
- </script>
- <style lang="scss">
- page {
- height: 100%;
- }
- .content-money {
- padding: 30rpx 0;
- background: #ffffff;
- }
- .flex {
- background-color: #ffffff;
- text-align: center;
- margin: 0 30rpx;
- border-radius: $border-radius-sm;
- .buttom {
- font-size: $font-lg;
- width: 100%;
- }
- .icon {
- background-size: 100%;
- font-size: 42rpx;
- color: $font-color-dark;
- font-weight: bold;
- background-repeat: no-repeat;
- background-position: center;
- }
- .text {
- color: $font-color-light;
- }
- }
- .title {
- background-color: #fff;
- padding: 30rpx;
- margin-bottom: 5rpx;
- font-weight: bold;
- margin-top: 20rpx;
- .title-t {
- font-weight: Medium;
- padding: 0 15rpx;
- color: #333333;
- border-left: solid 3rpx #44BFEC;
- }
- }
- .information {
- display: flex;
- background-color: #fff;
- padding: 30rpx;
- margin-bottom: 5rpx;
- .left {
- width: 350rpx;
- font-size: 28rpx;
- color: #333333;
- }
- .right {
- font-size: 25rpx;
- color: #999999;
- width: 100%;
- input {
- font-size: 25rpx;
- }
- image {
- width: 120rpx;
- height: 120rpx;
- }
- }
- }
- .button {
- width: 80%;
- text-align: center;
- margin: 0 auto;
- background: linear-gradient(90deg, #438BED 0%, #44BFEC 100%);
- background-color: #438BED;
- height: 80rpx;
- border-radius: 50rpx;
- line-height: 80rpx;
- color: #fff;
- font-size: 30rpx;
- margin-top: 80rpx;
- }
- .row-box {
- margin-top: 30rpx;
- padding: 20rpx 30rpx;
- background: #fff;
- .title {
- font-size: $font-base + 2rpx;
- color: $font-color-dark;
- }
- .row {
- display: flex;
- align-items: center;
- position: relative;
- height: 80rpx;
- .tit {
- flex-shrink: 0;
- width: 40rpx;
- font-size: 30rpx;
- color: $font-color-dark;
- }
- .input {
- flex: 1;
- font-size: 30rpx;
- color: $font-color-dark;
- }
- .iconlocation {
- font-size: 36rpx;
- color: $font-color-light;
- }
- .buttom {
- color: $font-color-spec;
- font-size: $font-base;
- }
- }
- }
- .add-btn {
- &.modified {
- color: $base-color;
- }
- &.up {
- background-color: $base-color;
- color: #fff;
- }
- display: flex;
- align-items: center;
- justify-content: center;
- width: 690rpx;
- height: 80rpx;
- margin: 0 auto;
- margin-top: 30rpx;
- font-size: $font-lg;
- border-radius: 10rpx;
- // box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
- }
- .list {
- padding-left: 30rpx;
- margin-top: 30rpx;
- background-color: #ffffff;
- .box {
- display: flex;
- align-items: center;
- width: 100%;
- height: 120rpx;
- border-bottom: 1px solid $border-color-light;
- .icon {
- font-size: 48rpx;
- padding-right: 20rpx;
- .icon-img {
- height: 50rpx;
- width: 50rpx;
- }
- }
- .iconweixin1 {
- color: #18bf16;
- }
- .iconzhifubao {
- color: #08aaec;
- }
- .title-box {
- flex-grow: 1;
- text-align: left;
- .title {
- font-size: $font-base + 2rpx;
- color: $font-color-base;
- }
- .node {
- font-size: $font-sm;
- color: $font-color-light;
- }
- }
- }
- }
- /deep/ .uni-radio-input {
- width: 45rpx;
- height: 45rpx;
- }
- </style>
|