|
@@ -15,43 +15,31 @@
|
|
|
:placeholder="`请输入${item.fieldname}`" />
|
|
:placeholder="`请输入${item.fieldname}`" />
|
|
|
</template>
|
|
</template>
|
|
|
</CellGroup>
|
|
</CellGroup>
|
|
|
- <CellGroup inset>
|
|
|
|
|
- <Field label="入金时间">
|
|
|
|
|
- <template #input>
|
|
|
|
|
- <span style="color: #999;">{{ start }} - {{ end }}</span>
|
|
|
|
|
- </template>
|
|
|
|
|
- </Field>
|
|
|
|
|
- <Field>
|
|
|
|
|
- <template #input>
|
|
|
|
|
- <span style="color: #993333; font-size: 13px;">节假日以通知、公告为准;非交易日请勿操作</span>
|
|
|
|
|
- </template>
|
|
|
|
|
- </Field>
|
|
|
|
|
- </CellGroup>
|
|
|
|
|
- <CellGroup inset>
|
|
|
|
|
- <Field label="平台入金银行" v-if="msg_320">
|
|
|
|
|
- <template #input>
|
|
|
|
|
- <span class="msg_tips" :data-clipboard-text="msg_320" v-copy="onCopy">{{ msg_320 }}</span>
|
|
|
|
|
- </template>
|
|
|
|
|
- </Field>
|
|
|
|
|
- <Field label="平台入金账号" v-if="msg_321">
|
|
|
|
|
- <template #input>
|
|
|
|
|
- <span class="msg_tips" :data-clipboard-text="msg_321" v-copy="onCopy">{{ msg_321 }}</span>
|
|
|
|
|
- </template>
|
|
|
|
|
- </Field>
|
|
|
|
|
- <Field label="平台入金账户" v-if="msg_322">
|
|
|
|
|
- <template #input>
|
|
|
|
|
- <span class="msg_tips" :data-clipboard-text="msg_322" v-copy="onCopy">{{ msg_322 }}</span>
|
|
|
|
|
- </template>
|
|
|
|
|
- </Field>
|
|
|
|
|
- <Field label="平台入金支行" v-if="msg_323">
|
|
|
|
|
- <template #input>
|
|
|
|
|
- <span class="msg_tips" :data-clipboard-text="msg_323" v-copy="onCopy">{{ msg_323 }}</span>
|
|
|
|
|
- </template>
|
|
|
|
|
- </Field>
|
|
|
|
|
- </CellGroup>
|
|
|
|
|
|
|
+ <div class="tips_time">
|
|
|
|
|
+ <span class="tips">入金时间:交易日 {{ start }} - {{ end }}</span>
|
|
|
|
|
+ <span class="tips"><br>节假日以通知、公告为准;非交易日请勿操作!</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="tips_bank">
|
|
|
|
|
+ <div class="tips_bank_row" v-if="msg_320">
|
|
|
|
|
+ <span class="tips_bank_row__label">平台入金银行</span>
|
|
|
|
|
+ <span class="msg_tips" :data-clipboard-text="msg_320" v-copy="onCopy">{{ msg_320 }}</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="tips_bank_row" v-if="msg_321">
|
|
|
|
|
+ <span class="tips_bank_row__label">平台入金账号</span>
|
|
|
|
|
+ <span class="msg_tips" :data-clipboard-text="msg_321" v-copy="onCopy">{{ msg_321 }}</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="tips_bank_row" v-if="msg_322">
|
|
|
|
|
+ <span class="tips_bank_row__label">平台入金账户</span>
|
|
|
|
|
+ <span class="msg_tips" :data-clipboard-text="msg_322" v-copy="onCopy">{{ msg_322 }}</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="tips_bank_row" v-if="msg_323">
|
|
|
|
|
+ <span class="tips_bank_row__label">平台入金支行</span>
|
|
|
|
|
+ <span class="msg_tips" :data-clipboard-text="msg_323" v-copy="onCopy">{{ msg_323 }}</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
<CellGroup inset v-if="msg_324">
|
|
<CellGroup inset v-if="msg_324">
|
|
|
<Cell title="提示" icon="info-o">
|
|
<Cell title="提示" icon="info-o">
|
|
|
- <template #label><p style="color: #993333;" v-html="msg_324" /></template>
|
|
|
|
|
|
|
+ <template #label><p class="tips" v-html="msg_324" /></template>
|
|
|
</Cell>
|
|
</Cell>
|
|
|
</CellGroup>
|
|
</CellGroup>
|
|
|
</Form>
|
|
</Form>
|
|
@@ -65,7 +53,7 @@
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
<script lang="ts" setup>
|
|
|
import { shallowRef, ref } from 'vue'
|
|
import { shallowRef, ref } from 'vue'
|
|
|
-import { Form, Field, Cell, CellGroup, Button, FieldRule, FormInstance, Icon, showToast, showFailToast } from 'vant'
|
|
|
|
|
|
|
+import { Form, Field, Cell, CellGroup, Button, FieldRule, FormInstance, showToast, showFailToast } from 'vant'
|
|
|
import { useDoDeposit, useDoCusBankExtendConfigs } from '@/business/bank'
|
|
import { useDoDeposit, useDoCusBankExtendConfigs } from '@/business/bank'
|
|
|
import { fullloading, dialog } from '@/utils/vant'
|
|
import { fullloading, dialog } from '@/utils/vant'
|
|
|
import { useNavigation } from '@mobile/router/navigation'
|
|
import { useNavigation } from '@mobile/router/navigation'
|
|
@@ -82,7 +70,6 @@ const certificate_photo_url = ref('')
|
|
|
const userStore = useUserStore()
|
|
const userStore = useUserStore()
|
|
|
|
|
|
|
|
const start = getSystemParamValue('012') ?? ''
|
|
const start = getSystemParamValue('012') ?? ''
|
|
|
-const limitMsg = getSystemParamValue('1002')
|
|
|
|
|
const msg_320 = getSystemParamValue('320')
|
|
const msg_320 = getSystemParamValue('320')
|
|
|
const msg_321 = getSystemParamValue('321')
|
|
const msg_321 = getSystemParamValue('321')
|
|
|
const msg_322 = getSystemParamValue('322')
|
|
const msg_322 = getSystemParamValue('322')
|
|
@@ -127,7 +114,7 @@ const doDepositWarning = () => {
|
|
|
} else {
|
|
} else {
|
|
|
dialog({
|
|
dialog({
|
|
|
title: '提示',
|
|
title: '提示',
|
|
|
- message: limitMsg,
|
|
|
|
|
|
|
+ message: '入金不在时间范围内',
|
|
|
confirmButtonText: '我知道了'
|
|
confirmButtonText: '我知道了'
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|