bankInfo.vue 21.6 KB
Newer Older
786817560's avatar
786817560 committed
1 2 3 4
<!--
 * @Description: In User Settings Edit
 * @Author: your name
 * @Date: 2019-09-24 21:29:35
786817560's avatar
786817560 committed
5
 * @LastEditTime : 2019-12-24 16:25:09
786817560's avatar
786817560 committed
6
 * @LastEditors  : Please set LastEditors
786817560's avatar
786817560 committed
7 8 9 10 11 12 13 14 15 16 17 18
 -->
<template>
  <h-view id="bankInfo" class="public-style">
    <h-header :proportion="[5,1,1]" class="bar-custom">
      <div slot="left" class="h-header-btn" @click="$routeGo()">
        <img src="@/assets/userBind/arrow.png">
        <span>银行信息</span>
      </div>
    </h-header>
    <div class="info">
      <div class="info-icon">
        <img src="@/assets/userBind/info.png" >
786817560's avatar
786817560 committed
19
        <span>温馨提示</span>
786817560's avatar
786817560 committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
      </div>
      <p>推荐使用农行卡,农行卡支付免收手续费!</p>
    </div>
    <div class="my-card">
      <div class="top">
        <div class="left">
          <img src="@/assets/userBind/bankIcon.png" class="icon" >
          <span class="top-word">
            我的卡
            <span class="sum">(共{{ getBankList.length }}张)</span>
          </span>
        </div>
        <img src="@/assets/userBind/add.png" class="icon-right" @click="sendFlag" >
      </div>
      <div class="clear" />
      <div class="card-content">
        <ul>
          <li v-for="(item,index) in getBankList" :key="index">
            <item-option class="slider">
              <div
                :style="'background-image: url('+ changeBgImg (item) +')'"
                class="my-bank-card"
                @click="sendList(item)"
              >
                <div class="card-info" >
                  <span class="name">{{ item.bank_full_name }}</span>
                  <span class="card-type">{{ selectType(item.bank_card_type) }}</span>
                  <span class="number">卡号</span>
                  <span class="card-number">**** **** **** {{ selectLast (item) }}</span>
                </div>
              </div>
              <div slot="buttons" class="button">
                <option-button text @click.native="deleteFun(item.bank_account_num)" />
              </div>
            </item-option>
          </li>
        </ul>
      </div>
    </div>
    <bottom-tab class="footer-button">
linxin's avatar
linxin committed
60
      <tab-button class="save" @click.native="handSubmit">提交</tab-button>
786817560's avatar
786817560 committed
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
    </bottom-tab>
    <h-modal ref="modal" v-model="showModalValue" position="bottom">
      <h-view>
        <div class="modal-content">
          <div class="modal-content-add-top">
            <span>添加银行卡</span>
            <img src="@/assets/userBind/close.png" @click="hideModal">
          </div>
          <img
            v-if="!bankImg"
            src="@/assets/userBind/addBack.png"
            class="addBack"
            @click="ocrShow('bankCard', '')"
          >
          <img
            v-if="bankImg"
            :src="bankImg"
            class="addBack"
            style="height: 38%;"
            @click="ocrShow('bankCard', '')"
          >
          <list-item :item-height="44" class="card-Info">
            <item>
              <div slot="name">银行卡卡号</div>
              <input
                slot="content"
                v-model="bank_lists.bank_account_num"
                readonly
                placeholder="识别银行卡自动填充"
              >
            </item>
            <item>
              <div slot="name">账户姓名</div>
              <input slot="content" v-model="bank_lists.bank_account_name" placeholder="请输入账户名称">
            </item>
            <item>
              <div slot="name">银行名称</div>
              <input
                slot="content"
                v-model="bank_lists.bank_full_name"
                readonly
                placeholder="识别银行卡自动填充"
              >
            </item>
            <item>
              <div slot="name">支行名称</div>
              <input slot="content" v-model="bank_lists.bank_branch_name" placeholder="请输入支行名称">
            </item>
          </list-item>
        </div>
      </h-view>
      <bottom-tab class="add-box">
        <tab-button class="add-card" @click.native="addBankInfo">添加</tab-button>
      </bottom-tab>
    </h-modal>
  </h-view>
</template>
<script>
import backImg1 from '@/assets/userBind/nong.png'
import backImg2 from '@/assets/userBind/unNong.png'
export default {
  data () {
    return {
      from: false,
786817560's avatar
786817560 committed
125 126
      authUrl: '', // 电子签url
      errorMsg: '',
786817560's avatar
786817560 committed
127 128 129 130 131 132 133 134 135 136 137 138 139 140
      bp_id: '',
      bankImg: '', // 银行卡图片
      isApproved: false,
      backImg: null,
      getBankList: [],
      bank_lists: {
        bank_account_num: '', // 卡号
        bank_account_name: '', // 账户姓名
        bank_card_type: '', // 类型(信用卡/借记卡/未知)
        bank_full_name: '', // 银行名称
        bank_branch_name: '', // 支行
      },
      showModalValue: false,
      bank_card_flag: false, // 银行卡信息是否完整
786817560's avatar
786817560 committed
141
      certification_status: '', // 电子签认证状态值Y/N
786817560's avatar
786817560 committed
142 143 144 145 146
    }
  },
  beforeRouteEnter (to, from, next) {
    next(vm => {
      if (from.name === 'Enclosure') {
786817560's avatar
786817560 committed
147 148 149 150 151 152 153 154
        vm.getBankList = []
        vm.bank_lists = {
          bank_account_num: '', // 卡号
          bank_account_name: '', // 账户姓名
          bank_card_type: '', // 类型(信用卡/借记卡/未知)
          bank_full_name: '', // 银行名称
          bank_branch_name: '', // 支行
        }
786817560's avatar
786817560 committed
155
        vm.bankImg = '' // 银行卡图片
786817560's avatar
786817560 committed
156 157
        vm.authUrl = ''
        vm.errorMsg = ''
786817560's avatar
786817560 committed
158 159
        vm.showModalValue = false
        vm.bank_card_flag = false
786817560's avatar
786817560 committed
160
        vm.certification_status = ''
786817560's avatar
786817560 committed
161
        vm.getBankInfo()
786817560's avatar
786817560 committed
162
        vm.electQuery()
linxin's avatar
linxin committed
163
        /* if (window.localStorage.bp_identity === 'ORG_NO') {
786817560's avatar
786817560 committed
164
          vm.getOrgCertificationUrl() // 获取企业认证url
786817560's avatar
786817560 committed
165 166
        } else {
          vm.getNpCertificationUrl()
linxin's avatar
linxin committed
167
        } */
786817560's avatar
786817560 committed
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
      }
    })
  },
  methods: {
    // 银行卡查询
    getBankInfo () {
      let vm = this
      let url = process.env.basePath + 'bp_bank_query'
      let param = {
        bp_id: vm.$route.params.bp_id,
      }
      vm.hlsPopup.showLoading('请稍候')
      vm.hlsHttp.post(url, param).then(function (res) {
        vm.hlsPopup.hideLoading()
        if (res.result === 'S') {
          vm.getBankList = res.lists
        }
      })
    },
786817560's avatar
786817560 committed
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
    // 电子签认证状态查询
    electQuery () {
      let vm = this
      let url = process.env.basePath + 'bp_elec_check'
      let param = {
        bp_id: vm.$route.params.bp_id,
      }
      vm.hlsPopup.showLoading('请稍候')
      vm.hlsHttp.post(url, param).then(function (res) {
        vm.hlsPopup.hideLoading()
        if (res.result === 'S') {
          vm.certification_status = res.info.certification_status
        }
      })
    },
786817560's avatar
786817560 committed
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
    hideModal () {
      this.showModalValue = false
    },
    selectType (e) {
      if (e === '0') {
        return '未知类型'
      } else if (e === '1') {
        return '借记卡'
      } else if (e === '2') {
        return '信用卡'
      }
    },
    sendFlag () {
      this.showModalValue = true
    },
    sendList (a) {
786817560's avatar
786817560 committed
218 219
      this.sendFlag()
      this.bank_lists = a
786817560's avatar
786817560 committed
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
    },
    changeBgImg (item) {
      if (item.bank_full_name.indexOf('农业银行') !== -1) {
        return backImg1
      } else {
        return backImg2
      }
    },
    selectLast (item) {
      console.log('item', item)
      let num = item.bank_account_num
      return num.substring(num.length - 4)
    },
    deleteFun (e) {
      this.hlsPopup.showConfirm({
        title: '提示',
        content: '您确认删除吗?',
        onConfirm: data => {
          if (data === 1) {
            let index = this.getBankList.findIndex(item => {
              if (item.bank_account_num === e) {
                return true
              }
            })
            this.getBankList.splice(index, 1)
            let vm = this
            let url = process.env.basePath + 'bp_bank_delete'
            let param = {
              'master': {
                'bp_id': this.$route.params.bp_id,
                'bank_account_num': e,
              },
            }
            vm.hlsPopup.showLoading('请稍候')
            vm.hlsHttp.post(url, param).then(function (res) {
              vm.hlsPopup.hideLoading()
              if (res.result === 'S') {
                vm.hlsPopup.showSuccess('删除成功')
              } else {
                vm.hlsPopup.showLongCenter(res.message)
              }
            })
          }
        },
      })
    },
linxin's avatar
linxin committed
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
    throttle (func, wait) { // 节流
      let previous = 0
      return function () {
        let now = +new Date()
        let remain = wait - (now - previous)

        if (remain < 0) {
          previous = now
          func.call(this, arguments)
        }
      }
    },
    putData () {
      this.throttle(this.handSubmit(), 3000)
    },
786817560's avatar
786817560 committed
281
    // 提交
李晓兵's avatar
李晓兵 committed
282 283
    async handSubmit () {
      let vm = this
linxin's avatar
linxin committed
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
      // if (window.localStorage.bp_identity === 'ORG_NO') {
      //   var urlTemp = await vm.getOrgCertificationUrl() // 获取企业认证url
      // } else {
      var urlTemp = await vm.getNpCertificationUrl()
      // }
      this.hlsPopup.showConfirm({
        title: '提示',
        content: '您确认提交吗?',
        onConfirm: data => {
          if (data) {
            let url = $config.basePath + 'bp_bind_submit'
            let param = {
              master: {
                bp_id: this.$route.params.bp_id,
                company_id: '2145',
linxin's avatar
linxin committed
299
                bp_class: 'ORG',
linxin's avatar
linxin committed
300
                bp_type: window.localStorage.getItem('bp_type'),
linxin's avatar
linxin committed
301
                business_num: window.localStorage.getItem('business_num'),
linxin's avatar
linxin committed
302 303 304 305 306 307 308 309 310
              },
            }
            let vm = this
            vm.hlsPopup.showLoading('请稍候')
            vm.hlsHttp.post(url, param).then(function (res) {
              vm.hlsPopup.hideLoading()
              if (res.result === 'S') {
                vm.hlsPopup.showSuccess('提交成功')
                if (urlTemp) {
李晓兵's avatar
李晓兵 committed
311
                  if (vm.certification_status === 'Y') {
786817560's avatar
786817560 committed
312
                    vm.$router.push({
李晓兵's avatar
李晓兵 committed
313
                      name: 'MyInfo',
786817560's avatar
786817560 committed
314 315
                    })
                  } else {
李晓兵's avatar
李晓兵 committed
316
                    if (vm.authUrl) {
linxin's avatar
linxin committed
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
                      // vm.$router.push({
                      //   name: 'Certification',
                      //   params: {
                      //     authUrl: vm.authUrl,
                      //   },
                      // })
                      const u = navigator.userAgent
                      const isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)
                      if (isiOS) {
                        cordova.InAppBrowser.open(vm.authUrl, '_blank', 'location=yes')
                        console.log('ios')
                      } else {
                        vm.$router.push({
                          name: 'Certification',
                          params: {
                            authUrl: vm.authUrl,
                          },
                        })
                        console.log('android')
                      }
李晓兵's avatar
李晓兵 committed
337
                    } else {
linxin's avatar
linxin committed
338 339 340
                      vm.$router.push({
                        name: 'MyInfo',
                      })
李晓兵's avatar
李晓兵 committed
341
                    }
786817560's avatar
786817560 committed
342
                  }
linxin's avatar
linxin committed
343 344 345 346
                } else {
                  vm.$router.push({
                    name: 'MyInfo',
                  })
786817560's avatar
786817560 committed
347
                }
linxin's avatar
linxin committed
348 349 350 351 352
              } else if (res.result === 'P') {
                vm.hlsPopup.showLongCenter(res.message)
                vm.$router.push({
                  name: 'MyInfo',
                })
linxin's avatar
linxin committed
353
              } else {
linxin's avatar
linxin committed
354 355
                vm.hlsPopup.showLongCenter(res.message)
              }
linxin's avatar
linxin committed
356 357 358 359
            })
          }
        },
      })
786817560's avatar
786817560 committed
360
    },
786817560's avatar
786817560 committed
361
    // 获取个人认证url
李晓兵's avatar
李晓兵 committed
362
    async getNpCertificationUrl () {
786817560's avatar
786817560 committed
363 364 365 366 367 368
      let vm = this
      let url = $config.basePath + 'auth_user_sign'
      let param = {
        phone: window.localStorage.user_phone,
      }
      hlsPopup.showLoading('请稍候')
李晓兵's avatar
李晓兵 committed
369 370
      let res = await vm.$post(url, param)
      hlsPopup.hideLoading()
李晓兵's avatar
李晓兵 committed
371
      if ((res.info.code === 0) && (res.info.data.authUrl)) {
李晓兵's avatar
李晓兵 committed
372 373
        vm.authUrl = res.info.data.authUrl
        return vm.authUrl
linxin's avatar
linxin committed
374
      } else if ((res.info.code === 0) && (res.info.data.openId)) {
李晓兵's avatar
李晓兵 committed
375 376
        vm.authUrl = res.info.data.openId
        return vm.authUrl
李晓兵's avatar
李晓兵 committed
377
      } else {
linxin's avatar
linxin committed
378 379
        // hlsPopup.showError(res.info.msg)
        // vm.errorMsg = res.info.msg
李晓兵's avatar
李晓兵 committed
380 381
        return ''
      }
786817560's avatar
786817560 committed
382
    },
786817560's avatar
786817560 committed
383
    // 获取企业认证url
linxin's avatar
linxin committed
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
    // async getOrgCertificationUrl () {
    //   let vm = this
    //   let url = $config.basePath + 'auth_company_sign'
    //   let param = {
    //     phone: window.localStorage.user_phone,
    //   }
    //   hlsPopup.showLoading('请稍候')
    //   let res = await vm.$post(url, param)
    //   hlsPopup.hideLoading()
    //   if ((res.info.code === 0) && (res.info.data.authUrl)) {
    //     vm.authUrl = res.info.data.authUrl
    //     return vm.authUrl
    //   } else if((res.info.code === 0) && (res.info.data.openId)){
    //     vm.authUrl = res.info.data.openId
    //     return vm.authUrl
    //   } else {
    //     hlsPopup.showError(res.info.msg)
    //     return ''
    //     //vm.errorMsg = res.info.msg
    //   }
    // },
786817560's avatar
786817560 committed
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
    // ocr识别入口
    ocrShow (ocrType, type) {
      let vm = this
      hlsPopup.showActionSheet({
        titleText: '请选择照片',
        buttonArray: ['拍照', '从相册取'],
        callback: index => {
          if (index === 0) {
            vm.openCamera(ocrType, type)
          } else {
            vm.takePicture(ocrType, type)
          }
        },
      })
    },
    openCamera (ocrType, type) {
      let vm = this
      let cameraoptions = {
        quality: 60,
        width: 1843,
        height: 1382,
      }
      let success = function (imgdata) {
        if (!imgdata) {
          hlsPopup.showLongCenter('请拍照')
        } else {
          vm.bankImg = imgdata
          vm.bankCardIdentify(imgdata)
        }
      }
      let error = function () {
        hlsPopup.showLongCenter('请拍照')
      }
      hlsUtil.openCamera(cameraoptions, success, error)
    },
    takePicture (ocrType, type) {
      let vm = this
      var cameraoptions = {
        quality: 70,
        width: 1843,
        height: 1382,
        maxCount: 1,
      }
      let success = function (imgUrl) {
        if (imgUrl.length === 0) {
          hlsPopup.showLongCenter('请选择一张图片')
        } else {
          vm.bankImg = imgUrl[0]
          vm.bankCardIdentify(imgUrl[0])
        }
      }
      let error = function () {
        hlsPopup.showLongCenter(error)
      }
      vm.hlsUtil.takePicture(cameraoptions, success, error)
    },
    // 银行卡识别
    bankCardIdentify (fileUrl) {
      let vm = this
      hlsPopup.showLoading('正在识别')
      let url = process.env.ocrPath + '/baidu/ocr/bankCard'
      hlsUtil.baiduOcr(fileUrl, url, function (res) {
        hlsPopup.hideLoading()
        let result = res.result.result
        vm.bank_lists.bank_account_num = result.bank_card_number.replace(/\s*/g, '')
        vm.bank_lists.bank_full_name = result.bank_name
        vm.bank_lists.bank_card_type = result.bank_card_type
      })
    },
    addBankInfo () {
      this.hlsPopup.showConfirm({
        title: '提示',
        content: '您确认添加吗?',
        onConfirm: data => {
          if (data === 1) {
            if (!this.bank_lists.bank_account_num || !this.bank_lists.bank_account_name || !this.bank_lists.bank_full_name) {
              this.bank_card_flag = false
              this.hlsPopup.showLongCenter('银行信息不完整!')
            } else {
              this.bank_card_flag = true
            }
            // 银行卡验证this.hlsUtil.isBankAccount(this.bank.bank_account_num)
            if (this.hlsUtil.isBankAccount(this.bank_lists.bank_account_num)) {
              this.bank_card_flag = false
              this.hlsPopup.showLongCenter('请输入正确银行卡号!')
            }
            if (this.bank_card_flag) {
              this.hlsPopup.showLoading('请稍后')
              let url = $config.basePath + 'bp_bank_save'
              let param = {
                master: {
                  bp_id: this.$route.params.bp_id,
                  bank_lists: [this.bank_lists],
                },
              }
              let vm = this
              vm.hlsHttp.post(url, param).then(function (res) {
                if (res.result === 'S') {
                  vm.hlsPopup.hideLoading()
                  vm.showModalValue = false
                  vm.hlsPopup.showSuccess('添加成功')
786817560's avatar
786817560 committed
506 507 508 509 510 511 512 513 514
                  vm.bankImg = ''
                  vm.bank_card_flag = false
                  vm.bank_lists = {
                    bank_account_num: '', // 卡号
                    bank_account_name: '', // 账户姓名
                    bank_card_type: '', // 类型(信用卡/借记卡/未知)
                    bank_full_name: '', // 银行名称
                    bank_branch_name: '', // 支行
                  }
786817560's avatar
786817560 committed
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
                  vm.getBankInfo()
                }
              })
            }
          }
        },
      })
    },
  },
}
</script>
<style lang="less">
#bankInfo {
    .footer-button {
      padding-top: 15px;
      padding-bottom: 15px;
    }
    .save {
      width: 100%;
      height: 45px;
      color: #fff;
      border-radius: 4px;
      background-color: @headerColor;
    }
    .modal-content {
      width: 100%;
      height: 75%;
      position: absolute;
      top: 25%;
      background-color: #fff;
      overflow-y: scroll;

      .modal-content-add-top {
        width: 320px;
        height: 34px;
        line-height: 34px;
        padding-top: 10px;
        background-color: #fff;
        padding-bottom: 40px;
        position: fixed;
        left: 28px;

        span {
          font-family: PingFangSC-Semibold;
          font-size: 15px;
          color: @headerColor;
          letter-spacing: 0.47px;
        }

        img {
          width: 34px;
          height: 34px;
          float: right;
        }
      }

      .addBack {
        display: block;
        width: 320px;
        margin: 0 auto;
        margin-top: 50px;
        border-radius: 6px;
        margin-bottom: 17px;
      }

      .card-Info {
        margin-bottom: 220px;
      }
    }
    .add-card {
      width: 358px;
      height: 40px;
      background: @headerColor;
      border-radius: 4px;
      color: #fff;
    }

    .modal {
      background-color: rgba(0, 0, 0, 0) !important;
    }
    .info {
        height: 70px;
        background-color: rgba(142, 195, 30, 0.1);
        .info-icon {
          height: 20px;
          padding-top: 20px;
          display: flex;
          align-items: center;
          img {
            width: 15.8px;
            height: 15.8px;
            margin-left: 17.1px;
          }
          span {
            font-family: PingFangSC-Semibold;
            font-size: 14px;
            color: #8ec31e;
            margin-left: 9px;
            letter-spacing: 0.5px;
            line-height: 20px;
          }
        }
        p {
          font-family: PingFangSC-Regular;
          font-size: 13px;
          color: #656464;
          width: 310px;
          margin-left: 42px;
          letter-spacing: 0.4px;
          line-height: 18px;
          margin-top: 8px;
        }
      }
      .my-card {
        .top {
          width: 320px;
          margin: 0 auto;
          margin-top: 13px;
          .left {
            height: 32px;
            display: flex;
            align-items: center;
            float: left;
            .icon {
              width: 18px;
              height: 20px;
              margin-right: 4px;
            }
            .top-word {
              font-family: PingFangSC-Semibold;
              font-size: 15px;
              color: @headerColor;
              letter-spacing: 0.46px;
              .sum {
                font-family: PingFangSC-Semibold;
                font-size: 15px;
                color: #4d5d6c;
                letter-spacing: 0.46px;
              }
            }
          }
          .icon-right {
            width: 34px;
            height: 34px;
            float: right;
          }
        }
        .clear {
          clear: both;
        }
        .card-content {
          width: 350px;
          padding-left: 28px;
          overflow: hidden;
          margin-top: 16px;
          li {
            margin-bottom: 10px;
            .slider {
              height: 100%;
              margin-left: -14px;
            }
          }
          .my-bank-card {
            width: 320px;
            height: 190px;
            box-shadow: 0 5px 20px 0 rgba(101, 101, 101, 0.25);
            border-radius: 6px;
            background-size: 370px 240px;
            background-position: -20px;
            .card-info {
              font-family: PingFangSC-Medium;
              color: #ffffff;
              margin-left: 18px;
              padding-top: 15px;
              .name,
              .card-type {
                font-size: 16px;
                letter-spacing: 5.5px;
                line-height: 24px;
              }
              .card-type {
                display: block;
                margin-top: 9px;
              }
              .number {
                font-size: 12px;
                letter-spacing: 0;
                line-height: 16px;
                margin-top: 33px;
                display: block;
                margin-top: 33px;
              }
              .card-number {
                display: block;
                font-family: Avenir-Heavy;
                font-size: 16px;
                color: #ffffff;
                letter-spacing: 6px;
                line-height: 24px;
              }
            }
          }
        }
      }
      .swipeout-list .item .function {
        left: 330px;
        border-radius: 6px;
        width: 54px;
        height: 190px;
        background: url("../../../assets/userBind/delete.png") 16px 84.9px #fde5e8
        no-repeat;
        background-size: 20px 20px;
      }
}
</style>