123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466 |
- <template>
- <view>
- <view class="payment" :class="pay_close ? 'on' : ''">
- <view class="title acea-row row-center-wrapper">
- 选择付款方式<text class="iconfont icon-guanbi" @click='close'></text>
- </view>
- <view class="item acea-row row-between-wrapper" @click='goPay(item.number || 0 , item.value)' v-for="(item,index) in payMode" v-if="item.payStatus==1"
- :key="index">
- <view class="left acea-row row-between-wrapper">
- <view class="iconfont" :class="item.icon"></view>
- <view class="text">
- <view class="name">{{item.name}}</view>
- <view class="info" v-if="item.number">
- {{item.title}} <span class="money">¥{{ item.number }}</span>
- </view>
- <view class="info" v-else>{{item.title}}</view>
- </view>
- </view>
- <view class="iconfont icon-xiangyou"></view>
- </view>
- </view>
- <view class="mask" ref="close" @click='close' v-if="pay_close"></view>
- </view>
- </template>
- <script>
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- import {
- orderPay,
- integralOrderPay,
- presellOrderPay
- } from '@/api/order.js';
- export default {
- props: {
- payMode: {
- type: Array,
- default: function() {
- return [];
- }
- },
- pay_close: {
- type: Boolean,
- default: false,
- },
- order_id: {
- type: String,
- default: ''
- },
- totalPrice: {
- type: String,
- default: '0'
- },
- order_type: {
- type: Number,
- default: 0,
- },
- isCall: {
- type: Boolean,
- default: false
- },
- returnUrl: {
- type: String,
- default: ''
- }
- },
- data() {
- return {
- };
- },
- mounted:function(){
-
- },
- methods: {
- close: function() {
- this.$emit('onChangeFun', {
- action: 'payClose'
- });
- },
- goPay: function(number, paytype) {
- if (this.isCall) {
- return this.$emit('onChangeFun', {
- action: 'payCheck',
- value: paytype
- });
- }
- let that = this;
- let type = ''
- if (paytype == 'wechat') {
- // #ifdef H5
- type = this.$wechat.isWeixin() ? 'weixin' : 'h5';
- // #endif
- // #ifdef APP-PLUS
- type = 'weixin';
- // #endif
- // #ifdef MP
- type = 'routine';
- // #endif
- } else if (paytype == 'balance') {
- type = 'balance';
- }else if(paytype == 'alipay'){
- // #ifndef MP
- type = 'alipay';
- // #endif
- // #ifdef MP
- type = 'alipayQr';
- // #endif
- }
- if (!that.order_id) return that.$util.Tips({
- title: '请选择要支付的订单'
- });
- if (paytype == 'balance' && parseFloat(number) < parseFloat(that.totalPrice)) return that.$util.Tips({
- title: '余额不足!'
- });
- uni.showLoading({
- title: '支付中'
- });
- let orderApi = that.order_type === 1 ? presellOrderPay : that.order_type === 2 ? integralOrderPay : orderPay
- orderApi(that.order_id, {
- type: type,
- // #ifdef H5
- return_url: that.returnUrl!=='' ? 'http://'+window.location.host+that.returnUrl : 'http://'+window.location.host+'/pages/users/order_list/index',
- // #endif
- }).then(res => {
- let status = res.data.status,
- orderId = res.data.result.order_id,
- jsConfig = res.data.result.config,
- callback_key = res.data.result.pay_key,
- goPages = that.returnUrl ? that.returnUrl : '/pages/users/order_list/index';
- switch (status) {
- case 'ORDER_EXIST':
- case 'EXTEND_ORDER':
- case 'PAY_ERROR':
- case 'error':
- uni.hideLoading();
- this.$emit('onChangeFun', {
- action: 'payClose'
- });
- return that.$util.Tips({
- title: res.message
- });
- break;
- case 'success':
- uni.hideLoading();
- this.$emit('onChangeFun', {
- action: 'payClose'
- });
- return that.$util.Tips({
- title: '支付成功',
- icon: 'success'
- }, {
- tab: 5,
- url: goPages + '?status=1'
- });
- break;
- case 'alipay':
- case 'alipayQr':
- uni.hideLoading();
- this.$emit('onChangeFun', {
- action: 'payClose'
- });
- uni.navigateTo({
- url: '/pages/order_pay_back/index?keyCode='+callback_key+'&url='+jsConfig,
- })
- return
- break;
- // #ifndef MP
- case "wechat":
- case "weixin":
- case "weixinApp":
- jsConfig.timeStamp = jsConfig.timestamp;
- // #ifndef APP-PLUS
- that.$wechat.pay(jsConfig).then(res => {
- console.log('测试支付数据无效的success:'+res.data)
- this.$emit('onChangeFun', {
- action: 'payClose'
- });
- uni.hideLoading();
- return that.$util.Tips({
- title: '支付成功',
- icon: 'success'
- }, {
- tab: 5,
- url: goPages + 'status=1'
- });
- }).catch(res => {
- console.log('测试支付数据无效的catch:'+res.data)
- if (res.errMsg == 'chooseWXPay:cancel'){
- if(that.isCall){
- return that.$util.Tips({
- title: '取消支付'
- });
- }else{
- return that.$util.Tips({
- title: '取消支付'
- }, {
- tab: 5,
- url: goPages + '?status=0'
- });
- }
- }
- })
- // #endif
- // #ifdef APP-PLUS
- let mp_pay_name=''
- if(uni.requestOrderPayment){
- mp_pay_name='requestOrderPayment'
- }else{
- mp_pay_name='requestPayment'
- }
- uni[mp_pay_name]({
- provider: 'wxpay',
- orderInfo: jsConfig,
- success: (e) => {
- this.$emit('onChangeFun', {
- action: 'payClose'
- });
- return that.$util.Tips({
- title: '支付成功',
- icon: 'success'
- }, {
- tab: 5,
- url: goPages + 'status=1'
- });
- },
- fail: (e) => {
- if(that.isCall){
- return that.$util.Tips({
- title: '取消支付'
- });
- }else{
- return that.$util.Tips({
- title: '取消支付'
- }, {
- tab: 5,
- url: goPages + '?status=0'
- });
- }
- },
- complete: () => {
- uni.hideLoading();
- },
- });
- // #endif
- break;
- // #endif
- // #ifdef MP
- case "routine":
- jsConfig.timeStamp = jsConfig.timestamp;
- that.toPay = true;
- let mp_pay_name=''
- if(uni.requestOrderPayment){
- mp_pay_name='requestOrderPayment'
- }else{
- mp_pay_name='requestPayment'
- }
- uni[mp_pay_name]({
- ...jsConfig,
- success: function(res) {
- uni.hideLoading();
- that.$emit('onChangeFun', {
- action: 'payClose'
- });
- if (that.BargainId || that.combinationId || that.pinkId || that.seckillId)
- return that.$util.Tips({
- title: '支付成功',
- icon: 'success'
- }, {
- tab: 5,
- url: goPages + '?status=1'
- });
-
- return that.$util.Tips({
- title: '支付成功',
- icon: 'success'
- }, {
- tab: 5,
- url: goPages + '?status=1'
- });
- },
- fail: function(e) {
- uni.hideLoading();
- that.$emit('onChangeFun', {
- action: 'payClose'
- });
- return that.$util.Tips({
- title: '取消支付'
- });
- },
- complete: function(e) {
- uni.hideLoading();
- //关闭当前页面跳转至订单状态
- if (res.errMsg == 'requestPayment:cancel') return that.$util.Tips({
- title: '取消支付'
- });
- that.$emit('onChangeFun', {
- action: 'payClose'
- });
- },
- })
- break;
- // #endif
- case "balance":
- uni.hideLoading();
- that.$emit('onChangeFun', {
- action: 'payClose'
- });
- //余额不足
- return that.$util.Tips({
- title: res.message
- });
- break;
- // #ifdef H5
- case 'h5':
- let host = window.location.protocol+"//"+window.location.host;
- let url = `${host}/pages/order_pay_status/index?order_id=${orderId}`
- let eUrl = encodeURIComponent(url)
- let jsurl = jsConfig.mweb_url || jsConfig.h5_url
- let locations = `${jsurl}&redirect_url=${eUrl}`
- setTimeout(() => {
- location.href = locations;
- }, 100);
- break;
- // #endif
-
- // #ifdef APP-PLUS
- case 'alipayApp':
- uni.requestPayment({
- provider: 'alipay',
- orderInfo: jsConfig,
- success: (e) => {
- that.$emit('onChangeFun', {
- action: 'payClose'
- });
- return that.$util.Tips({
- title: '支付成功',
- icon: 'success'
- }, {
- tab: 5,
- url: goPages + 'status=1'
- });
-
- },
- fail: (e) => {
- return that.$util.Tips({
- title: '取消支付'
- });
- },
- complete: () => {
- uni.hideLoading();
- },
- });
- break;
- // #endif
- }
- }).catch(err => {
- uni.hideLoading();
- return that.$util.Tips({
- title: err
- });
- })
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .payment {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- max-height: 600rpx;
- border-radius: 16rpx 16rpx 0 0;
- background-color: #fff;
- padding-bottom: 60rpx;
- z-index: 99;
- transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
- transform: translate3d(0, 100%, 0);
- }
- .payment.on {
- transform: translate3d(0, 0, 0);
- }
- .payment .title {
- text-align: center;
- height: 123rpx;
- font-size: 32rpx;
- color: #282828;
- font-weight: bold;
- padding-right: 30rpx;
- margin-left: 30rpx;
- position: relative;
- border-bottom: 1px solid #eee;
- }
- .payment .title .iconfont {
- position: absolute;
- right: 30rpx;
- top: 50%;
- transform: translateY(-50%);
- font-size: 43rpx;
- color: #8a8a8a;
- font-weight: normal;
- }
- .payment .item {
- border-bottom: 1px solid #eee;
- height: 130rpx;
- margin-left: 30rpx;
- padding-right: 30rpx;
- }
- .payment .item .left {
- width: 610rpx;
- }
- .payment .item .left .text {
- width: 540rpx;
- }
- .payment .item .left .text .name {
- font-size: 32rpx;
- color: #282828;
- }
- .payment .item .left .text .info {
- font-size: 24rpx;
- color: #999;
- }
- .payment .item .left .text .info .money {
- color: #ff9900;
- }
- .payment .item .left .iconfont {
- font-size: 45rpx;
- color: #09bb07;
- }
- .payment .item .left .iconfont.icon-zhifubao {
- color: #00aaea;
- }
- .payment .item .left .iconfont.icon-yuezhifu {
- color: #ff9900;
- }
- .payment .item .left .iconfont.icon-yuezhifu1 {
- color: #eb6623;
- }
- .payment .item .iconfont {
- font-size: 0.3rpx;
- color: #999;
- }
- </style>
|