123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <template>
- <view>
- <tui-bottom-popup :show="show" @close="close">
- <tui-list-cell :hover="false">
- <view class="tui-pay-item__title">
- <view>请选择支付方式</view>
- <view>支付金额:<text class="tui-pay-amuont">¥{{amuont}}</text></view>
- </view>
- </tui-list-cell>
- <radio-group @change="paymentradioChange">
- <block v-for="(item,index) in paymethod" :key="index">
- <tui-list-cell unlined>
- <label class="tui-pay-item">
- <image :src="'/static/images/mall/pay/'+item.code+'.png'" class="tui-pay-logo"></image>
- <text>{{item.title}}</text>
- <view class="tui-radio">
- <radio :color="stylecolor" :value="item.code" :name="item.code" :checked="item.code === paymethod[0].default"></radio>
- </view>
- </label>
- </tui-list-cell>
- </block>
- </radio-group>
- <view class="tui-btn-pay">
- <button class="gopaybutt" @click="goPay" :style="'background:'+ stylecolor">去付款</button>
- </view>
- </tui-bottom-popup>
- </view>
- </template>
- <script>
- export default {
- name: 'tPayWay',
- props: {
- //支付方式
- paymethod: {
- type: Array,
- default() {
- return [];
- }
- },
- //控制显示
- show: {
- type: Boolean,
- default: false
- },
- amuont:{
- type: String,
- default: ''
- },
- stylecolor:{
- type: String,
- default: '#ff1e02'
- },
- page: {
- type: Number,
- default: 1
- }
- },
- data() {
- return {
- paymentType:""
- };
- },
-
- methods: {
- close() {
- this.$emit("close", {})
- },
- goPay() {
- this.$emit("goPay", {paymentType:this.paymentType})
- },
- paymentradioChange(e) {
- this.paymentType = e.target.value
- }
- }
- }
- </script>
- <style scoped>
- .tui-pay-item__title {
- width: 100%;
- height: 90rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 20rpx;
- box-sizing: border-box;
- font-size: 28rpx;
- }
- .tui-pay-amuont {
- color: #eb0909;
- font-weight: 500;
- font-size: 34rpx;
- }
- .tui-pay-item {
- width: 100%;
- height: 80rpx;
- display: flex;
- align-items: center;
- padding: 0 20rpx;
- box-sizing: border-box;
- font-size: 28rpx;
- }
- .tui-pay-logo {
- width: 48rpx;
- height: 48rpx;
- margin-right: 15rpx;
- }
- .tui-radio {
- margin-left: auto;
- transform: scale(0.8);
- transform-origin: 100% center;
- }
- .tui-btn-pay {
- width: 100%;
- padding: 68rpx 60rpx 50rpx;
- box-sizing: border-box;
- }
- .tui-recharge {
- color: #fc872d;
- margin-left: auto;
- padding: 12rpx 0;
- }
- .gopaybutt {
- height: 88rpx;
- line-height: 88rpx;
- font-size: 28rpx;
- border-radius: 50rpx;
- color: #ffffff;
- align-items: center;
- }
- </style>
|