123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558 |
- <template>
- <view :style="colorStyle">
- <view class="payment" :class="pay_close ? 'on' : ''">
- <view class="title acea-row row-center-wrapper">
- {{$t(`选择付款方式`)}}<text class="iconfont icon-guanbi" @click='close'></text>
- </view>
- <view class="item acea-row row-between-wrapper" v-for="(item,index) in payMode" :key="index"
- v-show='item.payStatus' @click="payType(item.number || 0 , item.value,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.value == 'yue'">
- {{item.title}} <span class="money">{{$t(`¥`)}}{{ item.number }}</span>
- </view>
- <view class="info" v-else>{{item.title}}</view>
- </view>
- </view>
- <view class="iconfont" :class="active==index?'icon-xuanzhong11 font-num':'icon-weixuan'"></view>
- </view>
- <view class="payMoney">{{$t(`支付`)}}<span class="font-color">{{$t(`¥`)}}<span
- class="money">{{totalPrice}}</span></span></view>
- <view class="button bg-color acea-row row-center-wrapper" @click='goPay(number, paytype)'>{{$t(`去付款`)}}
- </view>
- </view>
- <view class="mask" @click='close' v-if="pay_close"></view>
- <view v-show="false" v-html="formContent"></view>
- </view>
- </template>
- <script>
- import {
- orderPay
- } from '@/api/order.js';
- import colors from '@/mixins/color.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'
- },
- isCall: {
- type: Boolean,
- default: false
- },
- friendPay: {
- type: Boolean,
- default: false
- }
- },
- mixins: [colors],
- data() {
- return {
- formContent: '',
- active: 0,
- paytype: '',
- number: 0
- };
- },
- watch: {
- payMode: {
- handler(newV, oldValue) {
- let newPayList = [];
- newV.forEach((item, index) => {
- if (item.payStatus) {
- item.index = index;
- newPayList.push(item)
- }
- });
- this.active = newPayList[0].index;
- this.paytype = newPayList[0].value;
- this.number = newPayList[0].number || 0;
- },
- immediate: true,
- deep: true
- }
- },
- methods: {
- payType(number, paytype, index) {
- this.active = index;
- this.paytype = paytype;
- this.number = number;
- this.$emit('changePayType', paytype)
- },
- formpost(url, postData) {
- let tempform = document.createElement("form");
- tempform.action = url;
- tempform.method = "post";
- tempform.target = "_self";
- tempform.style.display = "none";
- for (let x in postData) {
- let opt = document.createElement("input");
- opt.name = x;
- opt.value = postData[x];
- tempform.appendChild(opt);
- }
- document.body.appendChild(tempform);
- this.$nextTick(e => {
- tempform.submit();
- })
- },
- 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;
- if (!that.order_id) return that.$util.Tips({
- title: that.$t(`请选择要支付的订单`)
- });
- if (paytype == 'yue' && parseFloat(number) < parseFloat(that.totalPrice)) return that.$util.Tips({
- title: that.$t(`余额不足`)
- });
- uni.showLoading({
- title: that.$t(`支付中`)
- });
- if (paytype == 'friend' && that.order_id) {
- return uni.navigateTo({
- url: '/pages/users/payment_on_behalf/index?order_id=' + that.order_id + '&spread=' +
- this.$store.state.app.uid,
- success: res => {},
- fail: () => {},
- complete: () => {}
- });
- }
- orderPay({
- uni: that.order_id,
- paytype: paytype,
- type: that.friendPay ? 1 : 0,
- // #ifdef MP
- 'from': 'routine',
- // #endif
- // #ifdef H5
- 'from': this.$wechat.isWeixin() ? 'weixin' : 'weixinh5',
- // #endif
- // #ifdef H5
- quitUrl: location.port ? location.protocol + '//' + location.hostname + ':' + location
- .port +
- '/pages/goods/order_details/index?order_id=' + this.order_id : location.protocol +
- '//' + location.hostname +
- '/pages/goods/order_details/index?order_id=' + this.order_id
- // #endif
- // #ifdef APP-PLUS
- quitUrl: '/pages/goods/order_details/index?order_id=' + this.order_id
- // #endif
- }).then(res => {
- let jsConfig = res.data.result.jsConfig;
- if (res.data.status == 'ALLINPAY_PAY') {
- uni.hideLoading();
- // #ifdef MP
- wx.openEmbeddedMiniProgram({
- appId: 'wxef277996acc166c3',
- extraData: {
- cusid: jsConfig.cusid,
- appid: jsConfig.appid,
- version: jsConfig.version,
- trxamt: jsConfig.trxamt,
- reqsn: jsConfig.reqsn,
- notify_url: jsConfig.notify_url,
- body: jsConfig.body,
- remark: jsConfig.remark,
- validtime: jsConfig.validtime,
- randomstr: jsConfig.randomstr,
- paytype: jsConfig.paytype,
- sign: jsConfig.sign,
- signtype: jsConfig.signtype
- }
- })
- this.jumpData = {
- orderId: res.data.result.orderId,
- msg: res.msg,
- }
- // #endif
- // #ifdef APP-PLUS
- plus.runtime.openURL(jsConfig.payinfo);
- // #endif
- // #ifdef H5
- this.formpost(res.data.result.pay_url, jsConfig)
- // #endif
- } else {
- switch (paytype) {
- case 'weixin':
- if (res.data.result === undefined) return that.$util.Tips({
- title: that.$t(`缺少支付参数`)
- });
- // #ifdef MP
- let mp_pay_name = ''
- if (uni.requestOrderPayment) {
- mp_pay_name = 'requestOrderPayment'
- } else {
- mp_pay_name = 'requestPayment'
- }
- uni[mp_pay_name]({
- timeStamp: jsConfig.timestamp,
- nonceStr: jsConfig.nonceStr,
- package: jsConfig.package,
- signType: jsConfig.signType,
- paySign: jsConfig.paySign,
- success: function(res) {
- uni.hideLoading();
- return that.$util.Tips({
- title: res.msg,
- icon: 'success'
- }, () => {
- that.$emit('onChangeFun', {
- action: 'pay_complete'
- });
- });
- },
- fail: function(e) {
- uni.hideLoading();
- return that.$util.Tips({
- title: that.$t(`取消支付`)
- }, () => {
- that.$emit('onChangeFun', {
- action: 'pay_fail'
- });
- });
- },
- complete: function(e) {
- uni.hideLoading();
- if (e.errMsg == 'requestPayment:cancel' || e.errMsg ==
- 'requestOrderPayment:cancel') return that.$util
- .Tips({
- title: that.$t(`取消支付`)
- }, () => {
- that.$emit('onChangeFun', {
- action: 'pay_fail'
- });
- });
- },
- });
- // #endif
- // #ifdef H5
- let data = res.data;
- if (data.status == "WECHAT_H5_PAY") {
- uni.hideLoading();
- location.replace(data.result.jsConfig.h5_url);
- return that.$util.Tips({
- title: that.$t(`支付成功`),
- icon: 'success'
- }, () => {
- that.$emit('onChangeFun', {
- action: 'pay_complete'
- });
- });
- } else {
- that.$wechat.pay(data.result.jsConfig)
- .then(() => {
- return that.$util.Tips({
- title: that.$t(`支付成功`),
- icon: 'success'
- }, () => {
- that.$emit('onChangeFun', {
- action: 'pay_complete'
- });
- });
- })
- .catch(() => {
- return that.$util.Tips({
- title: that.$t(`支付失败`),
- }, () => {
- that.$emit('onChangeFun', {
- action: 'pay_fail'
- });
- });
- });
- }
- // #endif
- // #ifdef APP-PLUS
- uni.requestPayment({
- provider: 'wxpay',
- orderInfo: jsConfig,
- success: (e) => {
- let url = '/pages/goods/order_pay_status/index?order_id=' +
- orderId +
- '&msg=支付成功';
- uni.showToast({
- title: that.$t(`支付成功`)
- })
- setTimeout(res => {
- that.$emit('onChangeFun', {
- action: 'pay_complete'
- });
- }, 2000)
- },
- fail: (e) => {
- uni.showModal({
- content: that.$t(`支付失败`),
- showCancel: false,
- success: function(res) {
- if (res.confirm) {
- that.$emit('onChangeFun', {
- action: 'pay_fail'
- });
- } else if (res.cancel) {}
- }
- })
- },
- complete: () => {
- uni.hideLoading();
- },
- });
- // #endif
- break;
- case 'yue':
- uni.hideLoading();
- return that.$util.Tips({
- title: res.msg,
- icon: 'success'
- }, () => {
- that.$emit('onChangeFun', {
- action: 'pay_complete'
- });
- });
- break;
- case 'offline':
- uni.hideLoading();
- return that.$util.Tips({
- title: res.msg,
- icon: 'success'
- }, () => {
- that.$emit('onChangeFun', {
- action: 'pay_complete'
- });
- });
- break;
- case 'friend':
- uni.hideLoading();
- return that.$util.Tips({
- title: res.msg,
- icon: 'success'
- }, () => {
- that.$emit('onChangeFun', {
- action: 'pay_complete'
- });
- });
- break;
- case 'alipay':
- uni.hideLoading();
- //#ifdef H5
- if (this.$wechat.isWeixin()) {
- uni.redirectTo({
- url: `/pages/users/alipay_invoke/index?id=${res.data.result.order_id}&pay_key=${res.data.result.pay_key}`
- });
- } else {
- uni.hideLoading();
- that.formContent = res.data.result.jsConfig;
- that.$nextTick(() => {
- document.getElementById('alipaysubmit').submit();
- });
- }
- //#endif
- // #ifdef MP
- uni.navigateTo({
- url: `/pages/users/alipay_invoke/index?id=${res.data.result.order_id}&link=${res.data.result.jsConfig.qrCode}`
- });
- // #endif
- // #ifdef APP-PLUS
- uni.requestPayment({
- provider: 'alipay',
- orderInfo: jsConfig,
- success: (e) => {
- uni.showToast({
- title: that.$t(`支付成功`)
- })
- setTimeout(res => {
- that.$emit('onChangeFun', {
- action: 'pay_complete'
- });
- }, 2000)
- },
- fail: (e) => {
- uni.showModal({
- content: that.$t(`支付失败`),
- showCancel: false,
- success: function(res) {
- if (res.confirm) {
- that.$emit('onChangeFun', {
- action: 'pay_fail'
- });
- } else if (res.cancel) {}
- }
- })
- },
- complete: () => {
- uni.hideLoading();
- },
- });
- // #endif
- break;
- }
- }
- }).catch(err => {
- uni.hideLoading();
- return that.$util.Tips({
- title: err
- }, () => {
- that.$emit('onChangeFun', {
- action: 'pay_fail'
- });
- });
- })
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .bgcolor {
- background-color: var(--view-theme)
- }
- .payment {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- border-radius: 16rpx 16rpx 0 0;
- background-color: #fff;
- padding-bottom: 60rpx;
- z-index: 999;
- transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
- transform: translate3d(0, 100%, 0);
- .payMoney {
- font-size: 28rpx;
- color: #333333;
- text-align: center;
- margin-top: 50rpx;
- .font-color {
- margin-left: 10rpx;
- .money {
- font-size: 40rpx;
- }
- }
- }
- .button {
- width: 690rpx;
- height: 90rpx;
- border-radius: 45rpx;
- color: #FFFFFF;
- margin: 20rpx auto 0 auto;
- }
- }
- .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: 1rpx solid #eee;
- }
- .payment .title .iconfont {
- position: absolute;
- right: 30rpx;
- top: 50%;
- transform: translateY(-50%);
- font-size: 38rpx;
- color: #8a8a8a;
- font-weight: normal;
- }
- .payment .item {
- border-bottom: 1rpx 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 .left .iconfont.icon-tonglianzhifu1 {
- color: #305fd8;
- }
- .payment .item .iconfont {
- font-size: 40rpx;
- color: #ccc;
- }
- .icon-haoyoudaizhifu {
- color: #F34C3E !important;
- }
- </style>
|