123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369 |
- <template>
- <view class="container">
- <JHeader title="添加银行卡" width="50" height="50" style="padding: 24upx 0 0;"></JHeader>
- <view class="upload-bank-card">
- <view class="image-wrapper">
- <view class="uploader" @click="handleUploadImg">{{ uploadBandCard ? '重新上传' : '上传照片' }}</view>
- <image v-if="uploadBandCard" class="bank-img" :src="uploadBandCard"></image>
- <view v-else class="tip">上传图片银行卡图片自动识别~</view>
- </view>
- </view>
- <view class="addressBack-box">
- <view class="consignee-box bor-line-F7F7F7">
- <input v-model="username" maxlength="20" class="fs28" placeholder-class="consignee" placeholder="请填写真实姓名" />
- </view>
- <view class="iphoneNum-box bor-line-F7F7F7">
- <input
- v-model="phone" type="number" maxlength="11" class="fs28"
- placeholder-class="iphoneNum"
- placeholder="请填写手机号码"
- />
- </view>
- <view class="consignee-box bor-line-F7F7F7">
- <input v-model="bankName" maxlength="20" class="fs28" placeholder-class="consignee" placeholder="请填写银行名称" />
- </view>
- <view class="cardnum">
- <input
- v-model="cardNum" type="number" class="fs28" maxlength="20"
- placeholder-class="detailAddress"
- placeholder="请填写卡号"
- />
- </view>
- </view>
- <view v-if="type == 2" class="deleteBankcard-box">
- <label class="font-color-C5AA7B" @click="delBankcard">删除银行卡</label>
- </view>
- <view class="saveAddress-box">
- <view v-if="type == 1" class="saveAddress" @click="saveBankcardClick">添加银行卡</view>
- <view v-else class="saveAddress" @click="saveBankcardClick">保存</view>
- </view>
- <tui-toast ref="toast"></tui-toast>
- </view>
- </template>
- <script>
- import { getByIdUserBankcardApi, addUserBankcardApi, updateUserBankcardApi, deleteUserBankcardApi } from '../../../api/anotherTFInterface'
- import { bankCardAnalysisApi } from '../../../api/community-center'
- import { getUserId } from '../../../utils'
- import { T_STORAGE_KEY } from '../../../constant'
- import { IMG_UPLOAD_URL } from '../../../config'
- export default {
- name: 'AddBankcard',
- data() {
- return {
- show: false,
- type: 1, // 1.添加银行卡 2.编辑银行卡
- cardNum: '',
- bankcardId: '',
- bankCode: '',
- bankName: '',
- username: '',
- phone: '',
- id: '',
- uploadBandCard: null
- }
- },
- onLoad(options) {
- const userInfo = uni.getStorageSync(T_STORAGE_KEY)
- if (userInfo) {
- this.phone = userInfo.phone
- }
- if (options.type) {
- this.type = options.type
- }
- if (this.type == 2) {
- this.bankcardId = options.id
- this.renderBankcard(this.bankcardId)
- }
- },
- methods: {
- renderBankcard(bankcardId) {
- getByIdUserBankcardApi({ bankId: bankcardId }).then((res) => {
- const bankCard = res.data
- this.id = bankcardId
- this.username = bankCard.name
- this.phone = bankCard.phone
- this.bankName = bankCard.bankName
- this.bankCode = bankCard.bankCode
- this.cardNum = bankCard.bankCard
- })
- },
- // 新增或更新银行卡
- saveBankcardClick() {
- const _ = this
- const phoneCodeVerification = /^[1][3-9][0-9]{9}$/
- if (this.username == '') {
- uni.showToast({
- title: '请输入姓名!',
- duration: 2000,
- icon: 'none'
- })
- } else if (this.phone == '') {
- uni.showToast({
- title: '请输入手机号!',
- duration: 2000,
- icon: 'none'
- })
- } else if (!phoneCodeVerification.test(this.phone)) {
- uni.showToast({
- title: '请输入正确的手机号!',
- duration: 2000,
- icon: 'none'
- })
- } else if (this.bankName == '') {
- uni.showToast({
- title: '请填写银行名称!',
- duration: 2000,
- icon: 'none'
- })
- } else if (this.cardNum == '') {
- uni.showToast({
- title: '请输入卡号!',
- duration: 2000,
- icon: 'none'
- })
- } else if (this.cardNum.length != 16 && this.cardNum.length != 19) {
- uni.showToast({
- title: '请输入正确的卡号!',
- duration: 2000,
- icon: 'none'
- })
- } else if (this.type == 1) {
- addUserBankcardApi({
- name: this.username,
- phone: this.phone,
- bankName: this.bankName,
- bankCard: this.cardNum
- }).then((res) => {
- uni.showToast({
- title: '添加成功',
- duration: 2000,
- icon: 'none'
- })
- setTimeout(() => {
- uni.navigateBack()
- }, 2000)
- })
- } else {
- updateUserBankcardApi({
- bankId: this.id,
- name: this.username,
- phone: this.phone,
- bankName: this.bankName,
- bankCard: this.cardNum
- }).then((res) => {
- this.$showToast('操作成功')
- setTimeout(() => {
- uni.navigateBack()
- }, 2000)
- })
- }
- },
- // 删除银行卡
- delBankcard() {
- uni.showModal({
- title: '温馨提示',
- content: '确认删除该银行卡?',
- confirmText: '确定',
- cancelText: '取消',
- success: (res) => {
- if (res.confirm) {
- deleteUserBankcardApi({
- bankId: this.bankcardId
- }).then((res) => {
- this.$showToast('删除成功')
- setTimeout(() => {
- uni.navigateBack()
- }, 2000)
- })
- }
- }
- })
- },
- handleUploadImg() {
- const _this = this
- uni.chooseImage({
- success: (chooseImageRes) => {
- const imgPath = chooseImageRes.tempFiles[0].path
- if (!imgPath) return
- uni.showLoading({
- title: '上传中...'
- })
- uni.uploadFile({
- url: IMG_UPLOAD_URL,
- filePath: imgPath,
- name: 'file',
- formData: {
- userId: getUserId()
- },
- success: (uploadFileRes) => {
- uni.hideLoading()
- const imgUrl = JSON.parse(uploadFileRes.data).data.url
- _this.uploadBandCard = imgUrl
- _this.bankCardAnalysis(imgUrl)
- },
- fail: (error) => {
- uni.hideLoading()
- _this.ttoast({
- type: 'fail',
- title: '图片上传失败',
- content: error
- })
- }
- })
- },
- fail: (fail) => {
- console.log(fail)
- }
- })
- },
- async bankCardAnalysis(imageUrl) {
- if (!imageUrl) {
- this.ttoast({
- type: 'fail',
- title: '银行卡解析失败',
- content: '请填写银行卡信息'
- })
- return
- }
- try {
- uni.showLoading({
- title: '银行卡解析中...'
- })
- const data = await bankCardAnalysisApi({
- imageUrl
- })
- this.bankName = (data.cardName + '').replaceAll(' ', '')
- this.cardNum = (data.cardNum + '').replaceAll(' ', '')
- } catch (err) {
- this.ttoast({
- type: 'fail',
- title: '银行卡解析失败',
- content: '请填写银行卡信息'
- })
- this.uploadBandCard = ''
- } finally {
- uni.hideLoading()
- }
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .container {
- background-color: #F7F7F7;
- min-height: 100vh;
- box-sizing: border-box;
- .addressBack-box {
- padding: 30upx 30upx;
- .consignee-box {
- padding-bottom: 36upx;
- width: 690upx;
- margin-top: 20upx;
- .consignee {
- color: #999999;
- font-size: 28upx;
- }
- }
- .iphoneNum-box {
- padding-bottom: 36upx;
- width: 690upx;
- margin-top: 36upx;
- .iphoneNum {
- color: #999999;
- font-size: 28upx;
- }
- }
- .cardnum {
- margin-top: 19px;
- }
- }
- .saveAddress-box {
- position: fixed;
- bottom: 50upx;
- left: 30upx;
- .saveAddress {
- width: 690upx;
- height: 100upx;
- color: #FFEBC4;
- text-align: center;
- line-height: 100upx;
- background: #333333;
- }
- }
- .upload-bank-card {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 670upx;
- height: 408upx;
- background-color: #F7FBFF;
- margin: 30upx auto;
- .image-wrapper {
- width: 585upx;
- height: 375upx;
- background-color: #fff;
- position: relative;
- .bank-img {
- width: 100%;
- height: 100%;
- }
- .uploader {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 143upx;
- height: 143upx;
- border-radius: 100px;
- background: rgba(4, 3, 33, 0.6);
- transform: translate(-50%, -50%);
- color: #fff;
- font-size: 28upx;
- line-height: 143upx;
- text-align: center;
- transition: all 350ms;
- z-index: 10;
- &:active {
- opacity: 0.8;
- }
- }
- .tip {
- font-size: 24upx;
- letter-spacing: 0.4em;
- margin-top: 300upx;
- text-align: center;
- color: #ccc;
- }
- }
- }
- }
- .deleteBankcard-box {
- background-color: #FFFFFF;
- padding: 30upx 30upx;
- margin-top: 20upx;
- text-align: center;
- }
- </style>
|