|
|
@@ -55,7 +55,7 @@
|
|
|
<template v-for="(item, index) in dataList" :key="index">
|
|
|
<Cell :title="getPayModelName(item.paymodel)" v-if="checkedPayModel === index">
|
|
|
<template #value>
|
|
|
- <app-qrcode :width="128" :text="getFileUrl(item.payqrcode)" />
|
|
|
+ <Image :src="getFileUrl(item.payqrcode)" :width="128" :height="128" />
|
|
|
</template>
|
|
|
<template #label>
|
|
|
<pre>{{ item.payinfo }}</pre>
|
|
|
@@ -81,7 +81,7 @@
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
import { shallowRef } from 'vue'
|
|
|
-import { Form, Field, Cell, CellGroup, Button, FieldRule, FormInstance, showToast, showFailToast, RadioGroup, Radio } from 'vant'
|
|
|
+import { Form, Field, Cell, CellGroup, Button, FieldRule, FormInstance, showToast, showFailToast, RadioGroup, Radio, Image } from 'vant'
|
|
|
import { fullloading, dialog } from '@/utils/vant'
|
|
|
import { getFileUrl } from '@/filters'
|
|
|
import { useNavigation } from '@mobile/router/navigation'
|
|
|
@@ -93,7 +93,6 @@ import { useDoDeposit, useDoCusBankExtendConfigs } from '@/business/bank'
|
|
|
import { useUserStore } from '@/stores'
|
|
|
import moment from 'moment'
|
|
|
import AppUploader from '@mobile/components/base/uploader/index.vue'
|
|
|
-import AppQrcode from '@/components/base/qrcode/index.vue'
|
|
|
import WeChatPay from '../../../../../assets/images/icons/wechatpay.svg'
|
|
|
import AliPay from '../../../../../assets/images/icons/alipay.svg'
|
|
|
import UnionPay from '../../../../../assets/images/icons/unionpay.svg'
|