123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667 |
- <template>
- <view class="cash-content" :style="{'--status-bar-': statusBarHeight}">
- <view class="cash-content-info">
-
- <view class="cash-content-header">
- <customNavbar title="余额提现" bgColor="rgba(0,0,0,0)" :customNavbarInfo="{}" :contentStyle="{}"
- :leftStyle="{color: '#fff'}"></customNavbar>
-
- <view class="cash-content-money">
-
- </view>
-
-
- <view class="cash-content-cash">
- <view class="cash-content-cash-box">
- <text>提现金额</text>
- <view class="cash-content-cash-money">
- <text class="cash-content-cash-money-icon">¥</text>
- <view class="cash-content-cash-input">
-
- <text>{{ moneyValue }}</text>
- </view>
-
- </view>
- <view class="cash-content-cash-service">
- <view>
- <text>提现手续费</text>
- {{ setServiceType(withdrawInfo)}}
- <text>¥{{ this.withdrawInfo.serviceCharge }}</text>
- </view>
- <view>
- <text>合计提现</text>
- {{ moneyAccount }}
- <text>¥{{ this.withdrawInfo.realAmount }}</text>
- </view>
- </view>
- <view class="cash-content-cash-card">
- <u-cell-group :border="false">
- <u-cell :border="false" title="提现至" :isLink="false" :value="'银行卡'"></u-cell>
- </u-cell-group>
- </view>
- <view class="cash-content-cash-submit">
- <view @click="openModal">提现</view>
- </view>
- </view>
- </view>
-
-
- <u-picker :show="show" keyName="label" :columns="columns" @cancel="cancelPicker"
- @confirm="confirmPicker"></u-picker>
- </view>
-
-
- <u-overlay :show="showModal">
- <view class="password-model">
- <view>
- <view>请输入支付密码</view>
- <view>提现</view>
- <view>¥{{ this.withdrawInfo.realAmount }}</view>
- <view>
- <u-code-input @finish="marketPersons" dot v-model="password" :focus="true"></u-code-input>
- </view>
- <text @click="clearOverlay"><u-icon name="close-circle" size="30"></u-icon></text>
- </view>
- </view>
- </u-overlay>
- </view>
- <u-modal :show="showModel" @confirm="confirmModel" :confirmText="confirmText" ref="uModal" :asyncClose="true">
- <view class="slot-content">
- <view style="display: flex;justify-content: center;padding-bottom: 20rpx;">
- <image style="width: 100rpx;height: 100rpx;" :src="showStatus == 0 ? suImage : errorImage"
- mode="scaleToFill" />
- </view>
- <view>
- <rich-text :nodes="contentModel"></rich-text>
- </view>
- </view>
- </u-modal>
- </view>
- </template>
- <script>
- import {
- Decimal
- } from 'decimal.js';
- import {
- navigateTo
- } from "@/utils/util.js"
- export default {
- data() {
- return {
- title: '这是我的',
- statusBarHeight: 0,
- monry: 0,
- moneyValue: null,
- moneyAccount: '',
- show: false,
- columns: [
- [{
- label: '雪月夜',
-
- id: 2021
-
- }, {
- label: '冷夜雨',
- id: 804
- }]
- ],
- withdrawInfo: {},
- showModal: false,
- password: '',
- personList: [],
- serviceMoney: null,
- showModel: false,
- contentModel: '提交申请提交成功,佣金将会在1-2个工作日内发放到银行卡,请耐心等待!',
- errorImage: this.$commonConfig.staticUrl + 'cash/shiban.png',
- suImage: this.$commonConfig.staticUrl + 'cash/chenggong.png',
- showStatus: null,
- confirmText: '关闭',
- }
- },
- onLoad(page) {
- this.moneyValue = Number(page.withdrawTotal);
- this.personList = JSON.parse(page.personList);
-
-
-
- },
- onUnload() {
-
-
-
- },
- onShow() {
-
- this.showModel = false
- this.getWithdrawInfo()
- },
- methods: {
-
- navigateToFun() {
- navigateTo('/pages/cash/index')
- },
-
- numFormat(num = 0) {
- if (num < 100000) {
- return num
- } else if (num > 100000) {
- return (num / 10000).toFixed(2)
- }
- },
-
- cashAll() {
- this.moneyValue = this.monry
- },
-
- openPopup() {
- return
- this.show = true
- },
-
- cancelPicker() {
- this.show = false
- },
-
- confirmPicker() {
- this.show = false
- },
-
- async getWithdrawInfo() {
- try {
- let list = []
- this.personList.forEach((item, index) => {
- list.push(item.personsId)
- })
- let res = await this.$u.api.getSettlement({
- noSign: 1,
- userid: this.distribution_user_info.userId,
- withdrawAmount: this.moneyValue,
- withdrawList: list
- })
- if (res && res.code === 200) {
- this.withdrawInfo = res.data
-
-
- this.moneyValue = this.withdrawInfo.totalAmount
-
-
- }
- } catch (e) {
-
- console.error("e===", e)
- }
- },
- async openModal() {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- try {
- uni.showLoading({
- title: "获取银行卡中..."
- })
- let res = await this.$u.api.getPersonsBankApi({
- userid: this.distribution_user_info.userId
- })
- uni.hideLoading()
- console.log(res, 'res111')
- if (res && res.code === 200 && res.data?.bankNo) {
- this.showModal = true
-
- window.history.replaceState(null, null, document.URL)
-
- } else {
- navigateTo('/pages/bankCard/index')
- }
- } catch (e) {
-
- console.error("e===", e)
-
-
-
-
- uni.hideLoading()
- }
- },
-
- clearOverlay() {
- this.showModal = false
- },
-
- async marketPersons() {
- try {
- let res = await this.$u.api.marketPersons({
- noSign: 1,
- userid: this.distribution_user_info.userId,
- oldPassword: this.password
- })
- if (res && res.code === 200) {
- this.orderWithdraw()
- } else {
- this.password = ''
- }
- } catch (e) {
-
- console.error("e===", e)
- this.password = ''
- }
- },
-
- async orderWithdraw() {
- try {
- let list = []
- this.personList.forEach((item, index) => {
- list.push(item.personsId)
- })
- this.contentModel = "提现申请提交失败!"
- this.confirmText = '关闭'
- this.showStatus = 1
- let res = await this.$u.api.withdrawApply({
- noSign: 1,
- userid: this.distribution_user_info.userId,
-
-
-
-
-
- withdrawList: list,
- withdrawAmount: this.withdrawInfo.totalAmount,
- serviceCharge: this.withdrawInfo.serviceCharge
- })
- if (res && res.code == 200) {
- this.contentModel = "提现申请提交成功,佣金将会在5个工作日内发放到银行卡,请耐心等待!"
- this.confirmText = '返回'
- this.showStatus = 0
- this.showModel = true
-
-
-
-
-
-
-
-
-
- } else {
- this.showModel = true
- this.password = ''
- }
- this.showModal = false
- } catch (e) {
-
- console.error("e===", e)
- this.password = ''
- this.showModal = false
- this.showModel = true
- }
- },
-
- setServiceType(data) {
- if (data && data.serviceType) {
- if (data.serviceType == 1) {
- this.serviceMoney = data.serviceCharge
- return ('¥' + data.serviceCharge)
- } else {
- let num1 = this.withdrawInfo.serviceCharge;
- let num = isNaN(num1) ? 0 : (Number(num1) / 100)
- let money = num ? new Decimal(this.moneyValue).mul(new Decimal(num)) : 0
- this.serviceMoney = money
- return '¥' + money
- }
- }
- },
-
- moneyAccountFun() {
- let money = ''
- if (this.withdrawInfo.serviceType == 1) {
- money = (isNaN(this.withdrawInfo.serviceCharge) ? 0 : this.withdrawInfo
- .serviceCharge)
- } else if (this.withdrawInfo.serviceType == 2) {
- let num1 = this.withdrawInfo.serviceCharge;
- let num = isNaN(num1) ? 0 : (Number(num1) / 100)
- money = num ? new Decimal(this.moneyValue).mul(new Decimal(num)) : 0
- }
- this.moneyAccount = money < 0 ? '金额小于零' : new Decimal(this.moneyValue).sub(new Decimal(money.toFixed(2)))
- },
- browserBack() {
- console.log(1);
-
- uni.showModal({
- title: '提示',
- content: '返回后此页面的操作将不作保留!',
- cancelText: '确定返回',
- confirmText: '留在此页',
- success: (res) => {
- if (res.confirm) {
-
- } else if (res.cancel) {
-
- }
- }
- });
-
- },
-
- confirmModel() {
- this.showModel = false
- if (this.showStatus == 0) {
- uni.navigateBack({
- delta: 2
- })
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .cash-content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- --header-h: 420rpx;
- .cash-content-info {
- width: 100%;
- box-sizing: border-box;
- }
- }
- /** 头部主要内容 开始 */
- .cash-content-header {
- width: 100%;
- height: var(--header-h);
- box-sizing: border-box;
- background: var(--gd-bgm-lg-color);
- position: relative;
- ::v-deep .u-search {
- padding: 0 30rpx !important;
- }
- ::v-deep .u-search__action {
- color: #fff !important;
- }
- /** 余额 开始 */
- .cash-content-money {
- width: 100%;
- box-sizing: border-box;
- margin-top: 50rpx;
- padding-left: 66rpx;
- color: #fff;
- >text {
- font-size: 24rpx;
- }
- .cash-content-money-num {
- display: flex;
- justify-content: center;
- align-items: flex-start;
- flex-direction: column;
- margin-top: 24rpx;
- >text:nth-child(1) {
- .balance-userinfo-util {
- font-size: 24rpx;
- margin-left: 5rpx;
- }
- ::v-deep .u-count-num {
- font-weight: bold !important;
- font-size: 48rpx !important;
- }
- }
- >text:nth-child(2) {
- margin-top: 20rpx;
- font-size: 24rpx;
- }
- }
- }
- /** 余额 结束 */
- /** 提现 开始 */
- .cash-content-cash {
- width: 100%;
- box-sizing: border-box;
- position: absolute;
- top: 100%;
- transform: translateY(-50%);
- padding: 0 12rpx;
- .cash-content-cash-box {
- width: 100%;
- height: 100%;
- background-color: #fff;
- box-shadow: 0rpx 2rpx 12rpx 0rpx rgba(221, 221, 221, 0.5);
- border-radius: 20rpx;
- box-sizing: border-box;
- padding: 34rpx 30rpx 38rpx;
- >text {
- font-size: 36rpx;
- color: #222222;
- font-weight: 600;
- }
- .cash-content-cash-money {
- width: 100%;
- display: flex;
- align-items: center;
- padding: 40rpx 0 20rpx;
- border-bottom: 2rpx solid #EEEEEE;
- ::v-deep .u-cell__body {
- padding: 20rpx 0 !important;
- }
- .cash-content-cash-input {
- width: 100%;
- padding: 0 10rpx;
- }
- .cash-content-cash-input text {
- font-size: 60rpx !important;
- }
- >text {
- flex-shrink: 0;
- flex-wrap: nowrap;
- white-space: nowrap;
- }
- .cash-content-cash-money-icon {
- font-size: 32rpx;
- }
- .cash-content-cash-money-all {
- color: var(--gd-but-color);
- font-size: 24rpx;
- cursor: pointer;
- }
- }
- .cash-content-cash-service {
- width: 100%;
- box-sizing: border-box;
- padding: 20rpx 0;
- //border-bottom: 2rpx solid #EEEEEE;
- >view {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- color: #606060;
- padding: 5rpx 0 10rpx;
- font-size: 24rpx;
- >text {
- font-size: 28rpx;
- }
- }
- }
- .cash-content-cash-card {
- width: 100%;
- ::v-deep .u-cell__body {
- padding: 20rpx 0 !important;
- }
- }
- .cash-content-cash-submit {
- width: 100%;
- height: 92rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- box-sizing: border-box;
- padding: 0 80rpx 0;
- margin-top: 70rpx;
- >view {
- width: 100%;
- height: 100%;
- border-radius: 46rpx;
- color: #fff;
- background-color: var(--gd-but-color);
- font-size: 28rpx;
- font-family: SourceHanSansCN, SourceHanSansCN;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- }
- }
- /** 提现 结束 */
- }
- /** 头部主要内容 结束 **/
- /** 密码弹窗 */
- .password-model {
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- padding: 0 40rpx;
- >view {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- background-color: #fff;
- color: #000;
- padding: 50rpx 10rpx;
- box-sizing: border-box;
- position: relative;
- border-radius: 20rpx;
- >view {
- font-size: 32rpx;
- padding: 10rpx 0;
- box-sizing: border-box;
- }
- >view:nth-child(3) {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 52rpx;
- border-bottom: 2rpx solid #ccc;
- padding: 10rpx 0 20rpx;
- color: var(--gd-bgm-color);
- }
- >view:nth-child(4) {
- margin-top: 30rpx;
- }
- >text {
- position: absolute;
- top: 0;
- right: 0;
- }
- }
- }
- </style>
|