Handy_Cao 2 éve
szülő
commit
8eccf9a40c

+ 1 - 1
src/packages/mobile/views/bank/wallet/components/deposit/Index.vue

@@ -84,7 +84,7 @@ const { formData, onSubmit } = useDoDeposit()
 const { router } = useNavigation()
 const { getSystemParamValue } = useUserStore()
 const start = getSystemParamValue('012') ?? ''
-const limitMsg = getSystemParamValue('1002')
+const limitMsg = getSystemParamValue('1002') ?? '系统错误'
 const msg = getSystemParamValue('302') ?? '系统错误'
 const { configs, cusBank, end } = useDoCusBankExtendConfigs(2)
 const certificate_photo_url = ref('')

+ 1 - 1
src/packages/mobile/views/bank/wallet/components/withdraw/Index.vue

@@ -62,7 +62,7 @@ const formRef = shallowRef<FormInstance>()
 const { getSystemParamValue } = useUserStore()
 const start = getSystemParamValue('012') ?? ''
 const msg = getSystemParamValue('302') ?? '系统错误'
-const limitMsg = getSystemParamValue('1002')
+const limitMsg = getSystemParamValue('1002') ?? '系统错误'
 const userStore = useUserStore()
 
 // 表单验证规则

+ 1 - 1
src/packages/pc/views/footer/capital/summary/deposit/index.vue

@@ -53,7 +53,7 @@ const certificate_photo_url = ref('')
 const { getSystemParamValue } = useUserStore()
 const msg = getSystemParamValue('302') ?? '系统错误'
 const start = getSystemParamValue('012') ?? ''
-const limitMsg = getSystemParamValue('1002')
+const limitMsg = getSystemParamValue('1002') ?? '系统错误'
 
 const formRules: FormRules = {
     Amount: [{ required: true, message: '请输入入金金额' }],

+ 1 - 1
src/packages/pc/views/footer/capital/summary/withdraw/index.vue

@@ -53,7 +53,7 @@ const { fund } = useAccountFundInfo()
 const { getSystemParamValue } = useUserStore()
 const msg = getSystemParamValue('302') ?? '系统错误'
 const start = getSystemParamValue('012') ?? ''
-const limitMsg = getSystemParamValue('1002')
+const limitMsg = getSystemParamValue('1002') ?? '系统错误'
 
 const formRules: FormRules = {
     Amount: [{