123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592 |
- <template>
- <view class="content">
- <view class="acont_part1">
- <view class="part1_bg">
- <image src="../static/image-bg.png"></image>
- </view>
- <view class="part1_box">
- <view class="text-right margin-top-sm margin-right-sm" @click="goDet">查看明细</view>
- <view class="balance">
- <view class="balance_name">保证金余额(元)</view>
- <view class="balance_price">{{mayMoney}}</view>
- </view>
- <view class="part1_btn">
- <view class="btn_left" @click="tuiBtn()">退保证金</view>
- <view class="btn_right" @click="openPay()">缴纳保证金</view>
- </view>
- </view>
- </view>
- <view class="acont_part2">
- <view class="acount_type">保证金规则</view>
- <view class="acount_box" v-for="(item,index) in list" :key="item.id">
- <view class="name">{{item.name}}</view>
- <view class="tit">{{item.tit}}</view>
- </view>
- </view>
- <!-- 支付方式 -->
- <u-popup v-model="shows" mode="center" width="640rpx" height="640rpx" border-radius="14" @close="closePopup()">
- <view style="width: 100%;height: 300upx;background: #FFFFFF;">
- <view class="receipt_code">
- <view class="code_title">请输入支付金额</view>
- <u-input v-model="earnestMoney" type="number" placeholder="请输入支付金额" :border="true" />
- <view class="margin-tb padding-lr radius bg-white" style="height: 220upx;">
- <view class="flex align-center justify-between padding-tb-sm" v-for="(item,index) in payList"
- :key='index'>
- <image :src="item.image" style="width: 80upx;height: 80upx;border-radius: 50upx;"></image>
- <view class="flex-sub text-xl text-bold margin-left">{{item.name}}</view>
- <radio-group name="openWay" style="margin-left: 20upx;" @change='selectWay(item)'>
- <label class="tui-radio">
- <radio class="red" :checked="openWay === item.id ? true : false" />
- </label>
- </radio-group>
- </view>
- </view>
- <view class="sure" @click="jiaoBtn">确定</view>
- </view>
- </view>
- </u-popup>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- shows: false,
- baozhengjin: 0,
- disabled: true,
- moneys: '',
- list: [{
- id: 1,
- name: '保证金退款',
- tit: '48小时内无订单记录即可申请退保证金,保证金统一退款至账户余额,实时到账。'
- }, {
- id: 2,
- name: '保证金缴纳',
- tit: '所有跑腿专人直送订单需缴纳保证金,没有缴纳者将无法接订单,建议您及时缴纳。'
- }],
- mayMoney: 0,
- openWay: 1,
- payList: [],
- earnestMoney: ''
- }
- },
- onLoad() {
- // uni.showToast({
- // title: '申请成功'
- // })
- //获取保证金
- this.$Request.getT('/app/common/type/261').then(res => {
- if (res.code === 0) {
- this.baozhengjin = res.data.value;
- }
- });
- // #ifdef MP-WEIXIN
- this.payList = [{
- id: 1,
- image: '../static/weixin.png',
- name: '微信'
- }]
- // #endif
- // #ifdef APP-PLUS
- this.payList = [{
- id: 1,
- image: '../static/weixin.png',
- name: '微信'
- },
- {
- id: 2,
- image: '../static/zhifubao.png',
- name: '支付宝'
- }
- ]
- // #endif
- // #ifdef H5
- let ua = navigator.userAgent.toLowerCase();
- if (ua.indexOf('micromessenger') !== -1) {
- //公众号是否自动登录 443
- this.$Request.get('/app/common/type/443').then(res => {
- if (res.data && res.data.value && res.data.value == '是') {
- this.payList = [{
- id: 1,
- image: '../static/weixin.png',
- name: '微信'
- }];
- this.openWay = 1;
- } else {
- this.payList = [{
- id: 2,
- image: '../static/zhifubao.png',
- name: '支付宝'
- }];
- this.openWay = 2;
- }
- })
- } else {
- this.payList = [{
- id: 2,
- image: '../static/zhifubao.png',
- name: '支付宝'
- }];
- this.openWay = 2;
- }
- // #endif
- },
- onShow() {
- this.taskData()
- },
- methods: {
- openPay() {
- let checkCertification = uni.getStorageSync('checkCertification')
- if (checkCertification == 2) {
- this.shows = true
- } else {
- this.$queue.showToast('请先实名认证后再来缴纳保证金!');
- }
- },
- // 跳转保证金明细
- goDet() {
- uni.navigateTo({
- url: '/my/wallet/bzjlist'
- })
- },
- selectWay: function(item) {
- this.openWay = item.id;
- },
- zhifu() {
- this.shows = true
- },
- // 关闭底部弹出层
- closePopup() {
- this.shows = false
- },
- // 获取任务数据
- taskData() {
- let that = this;
- let token = this.$queue.getData('token');
- let userId = this.$queue.getData('userId');
- if (token) {
- //this.$queue.showLoading("加载中...");
- //可以提现金额查询预估收入查询
- let userId = this.$queue.getData('userId');
- this.$Request.getT("/app/user/selectUserDetails?userId=" + userId).then(res => {
- uni.hideLoading();
- if (res.code === 0 && res.data) {
- that.mayMoney = res.data.cashDeposit;
- if (!res.data.cashDeposit) {
- // this.earnestMoney=this.baozhengjin;
- // this.disabled=true;
- } else {
- // this.disabled=false;
- }
- } else if (res.code === -102) {
- this.$queue.showToast(res.msg);
- this.$queue.logout();
- } else {
- that.mayMoney = '0';
- }
- });
- }
- },
- // 缴纳
- jiaoBtn() {
- let that = this;
- if (!this.earnestMoney) {
- that.$queue.showToast('请输入支付金额');
- return;
- }
- uni.showLoading({
- title: '支付中'
- });
- // 微信支付
- if (that.openWay == 1) {
- // #ifdef APP-PLUS
- uni.hideLoading();
- // 微信APP支付 根据订单id获取支付信息
- this.$Request.postT('/app/wxPayRider/wxPayCashDeposit?money=' + that.earnestMoney + '&type=1').then(
- ret => {
- console.log(JSON.stringify(ret), '支付信息')
- if (ret.code == 0) {
- this.isCheckPay(ret.code, 'wxpay', JSON.stringify(ret.data));
- } else {
- that.shows = false
- that.earnestMoney = ''
- that.$queue.showToast(ret.msg);
- }
- });
- // #endif
- // #ifdef H5
- let ua = navigator.userAgent.toLowerCase();
- console.log(ua.indexOf('micromessenger'))
- if (ua.indexOf('micromessenger') !== -1) {
- let openId = that.$queue.getData('openid') ? that.$queue.getData('openid') : '';
- that.$Request.postT('/app/wxPayRider/wxPayCashDeposit?money=' + that.earnestMoney + '&type=2')
- .then(res => {
- if (res.code == 0) {
- that.callPay(res);
- } else {
- that.shows = false
- that.earnestMoney = ''
- that.$queue.showToast(res.msg);
- }
- });
- }
- // #endif
- // #ifdef MP-WEIXIN
- that.$Request.postT('/app/wxPayRider/wxPayCashDeposit?money=' + that.earnestMoney + '&type=3').then(
- res => {
- console.log('res', res)
- if (res.code == 0) {
- uni.requestPayment({
- provider: 'wxpay',
- timeStamp: res.data.timestamp,
- nonceStr: res.data.noncestr,
- package: res.data.package,
- signType: res.data.signType,
- paySign: res.data.sign,
- success: function(res) {
- that.shows = false
- this.earnestMoney = ''
- uni.hideLoading();
- that.taskData()
- that.$queue.showToast('支付成功');
- setTimeout(function() {
- uni.hideLoading();
- }, 1000);
- },
- fail: function(err) {
- that.shows = false
- this.earnestMoney = ''
- console.log('fail:' + JSON.stringify(err));
- uni.hideLoading();
- that.$queue.showToast('支付失败');
- }
- });
- } else {
- that.shows = false
- that.earnestMoney = ''
- that.$queue.showToast(res.msg);
- }
- });
- // #endif
- } else if (this.openWay == 2) { //支付宝支付
- // #ifdef H5
- that.$Request.postT('/app/aliPay/aliPayRiderCashDeposit?cashDeposit=' + that.earnestMoney +
- '&classify=5').then(
- res => {
- if (res.code == 0) {
- const div = document.createElement('div')
- div.innerHTML = res.data //此处form就是后台返回接收到的数据
- document.body.appendChild(div)
- document.forms[0].submit()
- } else {
- uni.hideLoading();
- that.$queue.showToast(res.msg);
- }
- });
- // #endif
- // #ifdef APP
- this.$Request.postT('/app/aliPay/aliPayRiderCashDeposit?cashDeposit=' + that.earnestMoney +
- '&classify=4').then(
- ret => {
- console.log(JSON.stringify(ret), '支付信息')
- if (ret.code == 0) {
- this.isCheckPay(ret.code, 'alipay', ret.data);
- } else {
- that.shows = false
- that.earnestMoney = ''
- that.$queue.showToast(ret.msg);
- }
- });
- // #endif
- }
- },
- callPay: function(response) {
- if (typeof WeixinJSBridge === "undefined") {
- if (document.addEventListener) {
- document.addEventListener('WeixinJSBridgeReady', this.onBridgeReady(response), false);
- } else if (document.attachEvent) {
- document.attachEvent('WeixinJSBridgeReady', this.onBridgeReady(response));
- document.attachEvent('onWeixinJSBridgeReady', this.onBridgeReady(response));
- }
- } else {
- this.onBridgeReady(response);
- }
- },
- onBridgeReady: function(response) {
- let that = this;
- console.log(!response.package, '2222222')
- // if (!response.package) {
- // return;
- // }
- this.earnestMoney = ''
- this.shows = false
- console.log(response, '1111111111')
- WeixinJSBridge.invoke(
- 'getBrandWCPayRequest', {
- "appId": response.data.appid, //公众号名称,由商户传入
- "timeStamp": response.data.timestamp, //时间戳,自1970年以来的秒数
- "nonceStr": response.data.noncestr, //随机串
- "package": response.data.package,
- "signType": response.data.signType, //微信签名方式:
- "paySign": response.data.sign //微信签名
- },
- function(res) {
- console.log(res, '/*-/*-/*-')
- if (res.err_msg === "get_brand_wcpay_request:ok") {
- // 使用以上方式判断前端返回,微信团队郑重提示:
- //res.err_msg将在用户支付成功后返回ok,但并不保证它绝对可靠。
- that.taskData()
- uni.showLoading({
- title: '支付成功'
- });
- setTimeout(function() {
- uni.hideLoading();
- }, 1000);
- } else {
- uni.hideLoading();
- }
- WeixinJSBridge.log(response.err_msg);
- }
- );
- },
- isCheckPay(status, name, order) {
- this.earnestMoney = ''
- this.shows = false
- if (status == 0) {
- this.setPayment(name, order);
- } else {
- uni.hideLoading();
- uni.showToast({
- title: '支付信息有误',
- icon: 'none'
- });
- }
- },
- setPayment(name, order) {
- let that = this
- console.log(name, '*-*-*', order)
- uni.requestPayment({
- provider: name,
- orderInfo: order, //微信、支付宝订单数据
- success: function(res) {
- console.log(res)
- that.taskData()
- uni.hideLoading();
- uni.showLoading({
- title: '支付成功'
- });
- },
- fail: function(err) {
- console.log(err)
- uni.hideLoading();
- },
- complete() {
- uni.hideLoading();
- }
- });
- },
- // 退保证金
- tuiBtn() {
- let that = this
- if (that.mayMoney == 0) {
- uni.showToast({
- icon: 'none',
- title: '暂无保证金'
- })
- return
- }
- uni.showModal({
- title: '提示',
- content: '确认退还保证金吗?如果存在未完成订单和未处理完成的投诉无法退还,需要先处理完毕后再申请',
- success: function(res) {
- if (res.confirm) {
- that.$Request.getT('/app/cash/cashDepositMoney').then(res => {
- console.log(res)
- if (res.code == 0) {
- uni.showToast({
- title: '申请成功'
- })
- } else {
- uni.showToast({
- title: res.msg,
- icon: 'none'
- })
- }
- setTimeout(function() {
- that.taskData()
- }, 1000)
- });
- }
- },
- })
- }
- }
- }
- </script>
- <style>
- /* 支付金额弹框 */
- .receipt_code {
- width: 90%;
- margin: 0 auto;
- }
- .code_title {
- width: 100%;
- line-height: 100rpx;
- font-size: 31rpx;
- font-weight: bold;
- text-align: center;
- letter-spacing: 2rpx;
- margin-top: 21rpx;
- margin-bottom: 25rpx;
- }
- ::v-deep .u-input--border {
- border: 1px solid #F2F2F2 !important;
- background: #F2F2F2 !important;
- color: #999999 !important;
- font-weight: 500 !important;
- letter-spacing: 2rpx !important;
- }
- ::v-deep .u-input__input {
- font-size: 30rpx;
- font-weight: bold;
- flex: 1;
- color: #999999 !important;
- min-height: 85rpx !important;
- margin-top: 7rpx;
- }
- .sure {
- width: 100%;
- height: 80rpx;
- background: #2474FF;
- color: white;
- border-radius: 46rpx;
- text-align: center;
- line-height: 80rpx;
- margin-top: 30rpx;
- letter-spacing: 2rpx;
- }
- .content {
- width: 100%;
- position: relative;
- }
- .acont_part1 {
- width: 100%;
- }
- .part1_bg image {
- width: 100%;
- height: 384rpx;
- }
- .part1_box {
- width: 90%;
- height: 400rpx;
- background: #ffffff;
- position: absolute;
- top: 70rpx;
- left: 37rpx;
- border-radius: 25rpx;
- }
- .balance {
- width: 90%;
- margin: 0 auto;
- text-align: center;
- /* margin-top: 50rpx; */
- line-height: 55rpx;
- }
- .balance_name {
- font-size: 26rpx;
- letter-spacing: 2rpx;
- }
- .balance_price {
- margin-top: 10rpx;
- font-weight: bold;
- font-size: 60rpx;
- }
- .part1_btn {
- width: 90%;
- margin: 0 auto;
- margin-top: 80rpx;
- display: flex;
- }
- .btn_left {
- flex: 1;
- border: 1rpx solid #CCCCCC;
- text-align: center;
- line-height: 80rpx;
- color: black;
- font-size: 24rpx;
- border-radius: 12rpx;
- margin-right: 10rpx;
- }
- .btn_right {
- flex: 1;
- border: 1rpx solid #CCCCCC;
- text-align: center;
- line-height: 80rpx;
- background: #2474FF;
- color: white;
- font-size: 24rpx;
- border-radius: 12rpx;
- margin-left: 10rpx;
- }
- .acont_part2 {
- width: 90%;
- position: absolute;
- top: 500rpx;
- left: 37rpx;
- }
- .acount_type {
- font-size: 32rpx;
- font-weight: bold;
- letter-spacing: 2rpx;
- line-height: 75rpx;
- }
- .name {
- font-size: 26rpx;
- font-weight: bold;
- letter-spacing: 2rpx;
- line-height: 70rpx;
- }
- .tit {
- color: #666666;
- font-size: 25rpx;
- }
- </style>
|