|
|
@@ -37,7 +37,7 @@
|
|
|
<label>出金时间:{{ start }} - {{ end }}</label>
|
|
|
</div>
|
|
|
<template #footer>
|
|
|
- <div class="g-form__footer inset">
|
|
|
+ <div class="g-form__footer inset" v-if="cusBank.canoutamount === 1">
|
|
|
<Button round block type="danger" @click="formRef?.submit()">确定</Button>
|
|
|
</div>
|
|
|
</template>
|
|
|
@@ -61,7 +61,7 @@ const { router } = useNavigation()
|
|
|
const formRef = shallowRef<FormInstance>()
|
|
|
const { getSystemParamValue } = useUserStore()
|
|
|
const start = getSystemParamValue('012') ?? ''
|
|
|
-const msg = getSystemParamValue('302')
|
|
|
+const msg = getSystemParamValue('302') ?? '系统错误'
|
|
|
const limitMsg = getSystemParamValue('1002')
|
|
|
const userStore = useUserStore()
|
|
|
|
|
|
@@ -83,7 +83,7 @@ const formRules: { [key in keyof Proto.t2bBankWithdrawReq]?: FieldRule[] } = {
|
|
|
const doWithDrawWarning = () => {
|
|
|
if (cusBank.value.cusbankid === 'jdjs') {
|
|
|
const now = moment(new Date().toISOString()).format('HH:mm')
|
|
|
- if (now > start && now < end) {
|
|
|
+ if (now > start && now < end.value) {
|
|
|
/// 提交
|
|
|
formSubmit()
|
|
|
} else {
|