123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- <template>
- <view class="back">
- <view class="topbox">
- <view class="" style="position: absolute;top: -30rpx;right: 0;">
- <view class="state u-flex u-row-between" @click="stateshow = !stateshow">
- <text>{{state}}</text>
- <image src="static/images/pull_down.png" style="width: 24rpx;height: 24rpx;" mode=""></image>
- </view>
- <view class="state" v-if="stateshow">
- <view @click="statechange(item,idx)" :class="state_id==idx?'stateac':'unstate'"
- style="margin-bottom: 20rpx;" v-for="(item,idx) in array">{{item.name}}</view>
- </view>
- </view>
- <view class="u-row-center"
- style="display: flex;flex-direction: column;align-items: center;margin-top: 56rpx;">
- <view class="paysum">实付金额</view>
- <view class="numbe" style="margin-top: 40rpx;">
- <text>¥</text>
- <text style="font-size: 60rpx;font-weight: 500;">2792.5</text>
- </view>
- <!-- <view class="">
- <text>支付剩余时间 13:50</text>
- </view> -->
- </view>
- <!-- 余额支付 -->
- <view class="payitem" style="margin-top: 100rpx;display: flex;" @click="change(0)">
- <image src="static/images/yuer.png" mode="" style="width: 40rpx;height: 40rpx;"></image>
- <view class="u-flex u-row-between " style="margin-left: 20rpx;flex: 1;">
- <view class="">
- <view class="">余额支付</view>
- <view class="" style="margin-top: 10rpx;color: rgba(248, 50, 36, 1);">
- 当前余额:2387.5
- </view>
- </view>
- <image v-if="mode==0" src="static/images/active.png" mode="" style="width: 36rpx;height: 36rpx;">
- </image>
- <image v-else src="static/images/unactive.png" mode="" style="width: 36rpx;height: 36rpx;"></image>
- </view>
- </view>
- <!-- 微信支付 -->
- <view v-if="state_id==0" class="payitem" style="margin-top: 20rpx;display: flex;" @click="change(1)">
- <image src="static/images/wx.png" mode="" style="width: 40rpx;height: 40rpx;"></image>
- <view class="u-flex u-row-between " style="margin-left: 20rpx;flex: 1;">
- <view class="">
- <view class="">微信支付</view>
- <view class="" style="margin-top: 10rpx;color: rgba(121, 121, 121, 1)">
- 适用微信支付
- </view>
- </view>
- <image v-if='mode==1' src="static/images/active.png" mode="" style="width: 36rpx;height: 36rpx;">
- </image>
- <image v-else src="static/images/unactive.png" mode="" style="width: 36rpx;height: 36rpx;"></image>
- </view>
- </view>
- <!-- 客服支付 -->
- <view class="payitem" style="margin-top: 20rpx;display: flex;" @click="change(2)">
- <image src="static/images/kefu2.png" mode="" style="width: 40rpx;height: 40rpx;"></image>
- <view class="u-flex u-row-between " style="margin-left: 20rpx;flex: 1;">
- <view class="">
- <view class="">客服支付</view>
- <view class="" style="margin-top: 10rpx;color: rgba(121, 121, 121, 1)">
- 联系微信支付
- </view>
- </view>
- <image v-if='mode==2' src="static/images/active.png" mode="" style="width: 36rpx;height: 36rpx;">
- </image>
- <image v-else src="static/images/unactive.png" mode="" style="width: 36rpx;height: 36rpx;"></image>
- </view>
- </view>
- </view>
- <!-- 付款须知 -->
- <view class="">
- <view class="payment" style="margin-top: 24rpx;">付款须知</view>
- <view class="content" style="margin-top: 18rpx;">1.联系客服付款需走线下支付通道,付款成</view>
- </view>
- <view class="confirm" @click="confirm">
- 确认支付
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- mode: 0,
- stateshow: false,
- state: '人民币',
- state_id: 0,
- array: [{
- name: '人民币'
- }, {
- name: '欧元'
- }, {
- name: '美元'
- }]
- };
- },
- methods: {
- change(idx) {
- this.mode = idx
- },
- statechange(item, idx) {
- this.state = item.name
- this.state_id = idx
- this.stateshow = !this.stateshow
- },
- confirm(){
- uni.navigateTo({
- url:'confirm'
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .payment {
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 24rpx;
- color: #222222;
- line-height: 34rpx;
- text-align: left;
- font-style: normal;
- }
- .content {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 20rpx;
- color: #777777;
- line-height: 28rpx;
- text-align: left;
- font-style: normal;
- }
- .stateac {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #FF1515;
- line-height: 34rpx;
- text-align: left;
- font-style: normal;
- }
- .unstate {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #222222;
- line-height: 34rpx;
- text-align: left;
- font-style: normal;
- }
- .confirm {
- position: fixed;
- bottom: 66rpx;
- width: 702rpx;
- height: 84rpx;
- background: #F83224;
- border-radius: 44rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 32rpx;
- color: #FFFFFF;
- line-height: 84rpx;
- text-align: center;
- font-style: normal;
- }
- .payitem {
- width: 702rpx;
- height: 140rpx;
- background: #FFFFFF;
- border-radius: 12rpx;
- padding: 34rpx 24rpx;
- box-sizing: border-box;
- }
- .back {
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- .topbox {
- position: relative;
- .state {
- width: 128rpx;
- // height: 56rpx;
- background: #FFFFFF;
- border-radius: 6rpx;
- padding: 12rpx;
- box-sizing: border-box;
- }
- .paysum {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #222222;
- line-height: 40rpx;
- text-align: left;
- font-style: normal;
- }
- .numbe {
- font-family: HarmonyOS_Sans_Medium;
- font-size: 28rpx;
- color: #000000;
- line-height: 38rpx;
- text-align: left;
- font-style: normal;
- margin-top: 20rpx;
- }
- }
- }
- </style>
|