Handy_Cao 1 jaar geleden
bovenliggende
commit
442c77c7de

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

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

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

@@ -67,10 +67,10 @@ const { fund } = useAccountFundInfo()
 const { router } = useNavigation()
 const formRef = shallowRef<FormInstance>()
 const { getSystemParamValue } = useUserStore()
-const start = getSystemParamValue('012') ?? ''
-const msg = getSystemParamValue('302') ?? '系统错误'
-const limitMsg = getSystemParamValue('1002') ?? '系统错误'
-const msg_317 = getSystemParamValue('317') ?? '系统错误'
+const start = getSystemParamValue('012')
+const msg = getSystemParamValue('302')
+const limitMsg = getSystemParamValue('1002')
+const msg_317 = getSystemParamValue('317')
 const userStore = useUserStore()
 
 // 表单验证规则

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

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

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

@@ -55,10 +55,10 @@ const { configs, cusBank, end } = useDoCusBankExtendConfigs(3)
 /// 资金账户信息
 const { fund } = useAccountFundInfo()
 const { getSystemParamValue } = useUserStore()
-const msg = getSystemParamValue('302') ?? ''
-const msg_317 = getSystemParamValue('317') ?? ''
-const start = getSystemParamValue('012') ?? ''
-const limitMsg = getSystemParamValue('1002') ?? ''
+const msg = getSystemParamValue('302')
+const msg_317 = getSystemParamValue('317')
+const start = getSystemParamValue('012')
+const limitMsg = getSystemParamValue('1002')
 
 const formRules: FormRules = {
     Amount: [{