123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- <template>
- <view class="page">
- <view class="bankClass dis a-start f-c j-s" v-for="(item,index) in cardPackList" :key="index"
- :style="{background:item.stylelist.background}">
- <image class="Backgroundimage" src="/static/image/bindBank/img1.png" mode="" style=""></image>
- <view class="dis j-s">
- <view class="dis">
- <view class="logo">
- <image :src="item.stylelist.logo" mode=""></image>
- </view>
- <view class="banktitle dis f-c j-s">
- <text>{{item.bankAccount}}</text>
- <text>储蓄卡</text>
- </view>
- </view>
- <image class="tool" src="/static/image/bindBank/tool.png" mode="" @click="delbankCard(item.id)"></image>
- </view>
- <view class="bank dis j-s a-c">
- <view>****</view>
- <view>****</view>
- <view>****</view>
- <text>{{item.bankNumber.slice(-4)}}</text>
- </view>
- </view>
- <view class="fixed">
- <u-button type="primary" style="background-color:#0052FF ;font-weight: bold;" @tap="getbankCard">+
- 添加银行卡</u-button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- bankNumber: "",
- cardPackList: [],
- bankList: [{
- bankName: "中国邮政储蓄银行",
- logo: "/static/image/bankLogo/youzheng.png",
- background: "linear-gradient(90deg, rgba(79, 136, 69, 0.7) 0%, #4f8845 100%)"
- },
- {
- bankName: "中国工商银行",
- logo: "/static/image/bankLogo/youzheng.png",
- background: "linear-gradient(90deg, rgba(177, 0, 13, 0.7) 0%, #b1000d 100%)"
- },
- {
- bankName: "中国农业银行",
- logo: "/static/image/bankLogo/youzheng.png",
- background: "linear-gradient(90deg, rgba(86,152, 130, 0.7) 0%, #569882 100%)"
- },
- {
- bankName: "中国银行",
- logo: "/static/image/bankLogo/youzheng.png",
- background: "linear-gradient(90deg, rgba(157, 32, 40, 0.7) 0%, #9d2028 100%)"
- },
- {
- bankName: "中国建设银行",
- logo: "/static/image/bankLogo/jianshe.png",
- background: "linear-gradient(90deg, rgba(6, 89, 159, 0.7) 0%, #06569F 100%)"
- },
- {
- bankName: "招商银行",
- logo: "/static/image/bankLogo/youzheng.png",
- background: "linear-gradient(90deg, rgba(197, 0, 25, 0.7) 0%, #c50019 100%)"
- },
- {
- bankName: "中国民生银行",
- logo: "/static/image/bankLogo/youzheng.png",
- background: "linear-gradient(90deg, rgba(84,149, 92, 0.7) 0%, #54955c 100%)"
- },
- {
- bankName: "中国光大银行",
- logo: "/static/image/bankLogo/youzheng.png",
- background: "linear-gradient(90deg, rgba(93, 30, 131, 0.7) 0%, #5d1e83 100%)"
- },
- {
- bankName: "中信银行",
- logo: "/static/image/bankLogo/youzheng.png",
- background: "linear-gradient(90deg, rgba(184, 0,22, 0.7) 0%, #b80016 100%)"
- },
- {
- bankName: "华夏银行",
- logo: "/static/image/bankLogo/youzheng.png",
- background: "linear-gradient(90deg, rgba(216, 12, 24, 0.7) 0%, #d80c18 100%)"
- },
- {
- bankName: "中国交通银行",
- logo: "/static/image/bankLogo/youzheng.png",
- background: "linear-gradient(90deg, rgba(33, 58, 120, 0.7) 0%, #213a78 100%)"
- },
- ],
- }
- },
- onShow() {
- this.getcardPack(); //获取卡包
- },
- onLoad() {
- this.getcardPack(); //获取卡包
- },
- methods: {
- async getcardPack() {
- let res = await this.$http.get('/userBank/getUserBankList');
- if (res.code == '200' && res.data) {
- this.bankList.map(val => {
- res.data.map(ele => {
- if (val.bankName == ele.bankAccount) {
- ele.stylelist = val;
- return ele;
- }
- })
- })
- this.cardPackList = res.data;
- }
- },
- getbankCard() {
- this.navigate({
- url: '/pages/wallet/bindBank',
- }, "navigateTo", true)
- },
- async delbankCard(id) {
- let res = await this.$http.delete('/userBank/' + id);
- if (res.code == '200') {
- this.getcardPack();
- uni.showToast({
- title: res.msg,
- duration: 2000,
- icon: "success"
- });
- }
- },
- //银行style数据匹配
- // bankMatching(Name) {
- // let obj = this.bankList.find(item => item.bankName === Name);
- // return obj;
- // }
- },
- }
- </script>
- <style lang="scss" scoped>
- page {
- background-color: #f2f2f2;
- }
- .page {
- padding: 10px 16px;
- }
- .fixed {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 62px;
- background: #FFFFFF;
- box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.1);
- padding: 12px 16px;
- }
- .bankClass {
- width: 100%;
- height: 110px;
- border-radius: 6px;
- padding: 14px;
- position: relative;
- .Backgroundimage {
- width: 94px;
- height: 86px;
- position: absolute;
- right: 0;
- bottom: 0;
- }
- >view {
- width: 100%;
- }
- .bank {
- font-size: 18px;
- color: #fff;
- line-height: 1;
- view {
- font-size: 18px;
- line-height: 1;
- margin-top: 6px;
- }
- }
- .logo {
- width: 39px;
- height: 39px;
- background: #FFFFFF;
- border-radius: 6px;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .tool {
- width: 28px;
- height: 20px;
- }
- .banktitle {
- margin-left: 12px;
- text:first-child {
- color: #fff;
- font-weight: bold;
- font-size: 16px;
- line-height: 1;
- }
- text:last-child {
- color: #fff;
- font-size: 12px;
- line-height: 1;
- }
- }
- }
- </style>
|