123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <template>
- <view>
- <van-radio-group >
- <van-cell-group
- v-for="(item, index) in list"
- :key="index"
- >
- <van-cell
- :title="item.title"
- @click="onChange(index)"
- >
- <template slot="icon" style="padding-right: 10upx;">
- <van-radio-group :value="radio" >
- <van-radio checked-color="#D9332E" :name="index" >
- </van-radio>
- </van-radio-group>
- </template>
- </van-cell>
- </van-cell-group>
- </van-radio-group>
- <view class="payMoney" @click="payMoney">支付({{prices}})</view>
- <Dialog :orderCancel="orderCancel"
- :titles="titles"
- :values="values"
- @colseDialog="cancelDialog"
- @confirmPay="confirmOrder"
- />
- </view>
- </template>
- <script>
- import Dialog from '@/component/Dialog.vue'
- export default {
- components: {
- Dialog
- },
- data() {
- return {
- values:'',
- orderCancel: false,
- titles:'',
- list:[
- {title:'微信支付'},
- {title:'圈币支付'}
- ],
- radio: 0,
- prices: '',
- order_id:''
- }
- },
- onLoad(e) {
- this.prices = e.prices;
- this.order_id = e.order_id;
- },
- methods: {
- cancelDialog() {
- this.orderCancel = false;
- },
- confirmOrder() {
- this.orderCancel = false;
- this.request({
- url:'/v1/payment/pay',
- method:'POST',
- data: {
- pay_code: 'point',
- order_id: this.order_id
- },
- success: (res) => {
- console.log(res);
-
- }
- })
- },
- onChange(index) {
- this.radio = index;
- },
- payMoney() {
- console.log("kkk")
- if(this.radio == 0) {
- // 微信支付
- this.request({
- url:'/v1/payment/pay',
- method: 'post',
- data: {
- pay_code: 'wx',
- order_id: this.order_id
- },
- success:(res) => {
- let { wx } = res.data.data;
- console.log('prepay_id='+wx.prepayid,)
- uni.requestPayment({
- provider: 'wxpay',
- timeStamp: wx.timestamp,
- nonceStr: wx.noncestr,
- package: 'prepay_id='+wx.prepayid,
- signType: 'MD5',
- paySign: wx.sign,
- success: function (res) {
- console.log('success:' + JSON.stringify(res));
- },
- fail: function (err) {
- console.log('fail:' + JSON.stringify(err));
- }
- })
- }
- })
- }else {
- this.titles = "圈币支付";
- this.values = "使用圈币支付"+this.prices;
- this.orderCancel = true;
- // 圈币支付
- // this.request({
- // url:'/v1/payment/pay',
- // method:'POST',
- // data: {
- // pay_code: 'point',
- // order_id: this.order_id
- // },
- // success: (res) => {
- // console.log(res);
-
- // }
- // })
- }
- }
- }
- }
- </script>
- <style>
- .payMoney {
- width: 90%;
- color: #fff;
- background-color: #D9332E;
- position: fixed;
- text-align: center;
- padding: 20upx 0;
- bottom: 5%;
- left: 5%;
- }
- </style>
|