|
|
@@ -36,25 +36,33 @@
|
|
|
<span class="msg_tips" :data-clipboard-text="msg_323" v-copy="onCopy">{{ msg_323 }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <cell-group class="paybar" inset>
|
|
|
+ <CellGroup class="paybar" inset>
|
|
|
+ <Cell label="请线下转账后再提交付款申请">
|
|
|
+ <template #title>
|
|
|
+ <b>线下收款账号</b>
|
|
|
+ </template>
|
|
|
+ </Cell>
|
|
|
<RadioGroup v-model="checkedPayModel" direction="horizontal">
|
|
|
<template v-for="(item, index) in dataList" :key="index">
|
|
|
<Radio :name="index">
|
|
|
- <img :src="payModelIcon[item.paymodel]" width="40" />
|
|
|
+ <template #icon="props">
|
|
|
+ <img :class="{ checked: props.checked }" :src="payModelIcon[item.paymodel]"
|
|
|
+ width="40" />
|
|
|
+ </template>
|
|
|
</Radio>
|
|
|
</template>
|
|
|
</RadioGroup>
|
|
|
<template v-for="(item, index) in dataList" :key="index">
|
|
|
- <cell :title="getPayModelName(item.paymodel)" v-if="checkedPayModel === index">
|
|
|
+ <Cell :title="getPayModelName(item.paymodel)" v-if="checkedPayModel === index">
|
|
|
<template #value>
|
|
|
<app-qrcode :width="128" :text="getFileUrl(item.payqrcode)" />
|
|
|
</template>
|
|
|
<template #label>
|
|
|
<pre>{{ item.payinfo }}</pre>
|
|
|
</template>
|
|
|
- </cell>
|
|
|
+ </Cell>
|
|
|
</template>
|
|
|
- </cell-group>
|
|
|
+ </CellGroup>
|
|
|
<CellGroup inset v-if="msg_324">
|
|
|
<Cell :title="$t('common.tips')">
|
|
|
<template #label>
|