| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <template>
- <view class="margin-20">
- <u-radio-group v-model="radio" active-color="#ff9447" size="40">
- <view @click="radio=item.id" v-for="(item,index) in bankList" :key="index" class="bank" v-if="!$isEmpty(bankList)">
- <view class="left center">
- <image :src="'/static/bank/'+item.bankType+'.png'" mode=""></image>
- <view class="content">
- <text>{{item.bankTypeLabel}}</text>
- <text>{{item.cardNo}}</text>
- </view>
- </view>
- <view class="center">
- <u-radio :name="item.id"></u-radio>
- </view>
- </view>
- </u-radio-group>
-
- <view class="">
- <view class="" style="height: 120rpx;"></view>
- <view style="background-color: #FFFFFF ;height: 120rpx;" class="footer-fixed center">
- <view @click="confirm" class="cu-btn df btn-bg-color radius " style="width: 86%;height: 80rpx;">
- <text>确认</text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: '',
- data() {
- return {
- bankList: [],
- radio: ''
- };
- },
- onLoad() {
- this.fetchCardList()
- },
- methods: {
- fetchCardList() {
- let params = {
- userId:this.vuex_shopId || '-1',
- size: 10
- }
- this.$api.userBank.appList(params).then(res => {
- if (!this.$isEmpty(res.data.records)) {
- this.bankList = res.data.records
- this.radio = this.bankList[0].id
- }
- })
- },
- confirm(){
- let bank= this.bankList.filter(item=>item.id==this.radio)[0]
- let params={
- bank
- }
- this.$util.backWithParams(params)
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .bank {
- margin-bottom: 20rpx;
- border-radius: 20rpx;
- background-color: #FFFFFF;
- padding: 44rpx;
- display: flex;
- justify-content: space-between;
- .left {
- display: flex;
- image {
- width: 90rpx;
- height: 90rpx;
- margin-right: 20rpx;
- }
- .content {
- display: flex;
- flex-direction: column;
- text:first-child {
- color: #252525;
- font-weight: 800;
- font-size: 34rpx;
- }
- text:last-child {
- margin-top: 15rpx;
- color: #888888;
- font-size: 26rpx;
- }
- }
- }
- }
- .card_add {}
- .submit-btn {
- background-color: #EE9230;
- color: #FFFFFF;
- border-radius: 10rpx;
- }
- </style>
|