Handy_Cao 1 éve
szülő
commit
284faeca4a

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

@@ -40,6 +40,11 @@
                         <p v-html="msg"></p>
                     </template>
                 </Cell>
+                <Cell>
+                    <template #label>
+                        <p v-html="msg_317"></p>
+                    </template>
+                </Cell>
             </CellGroup>
         </Form>
         <template #footer v-if="cusBank.canoutamount === 1">
@@ -69,6 +74,7 @@ const { getSystemParamValue } = useUserStore()
 const start = getSystemParamValue('012') ?? ''
 const msg = getSystemParamValue('302') ?? '系统错误'
 const limitMsg = getSystemParamValue('1002') ?? '系统错误'
+const msg_317 = getSystemParamValue('317') ?? '系统错误'
 const userStore = useUserStore()
 
 // 表单验证规则

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

@@ -27,6 +27,7 @@
             </el-form-item>
         </el-form>
         <span v-if="cusBank.canoutamount === 0" v-html="msg" />
+        <span v-if="cusBank.canoutamount === 0" v-html="msg_317" />
         <template #footer>
             <el-button type="info" @click="onCancel">取消</el-button>
             <el-button v-if="cusBank.canoutamount === 1" type="primary" @click="doWithDrawWarning">提交</el-button>
@@ -52,6 +53,7 @@ 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') ?? '系统错误'