Handy_Cao 1 vuosi sitten
vanhempi
commit
60e5306d48

+ 4 - 1
src/business/bank/index.ts

@@ -297,7 +297,10 @@ export function useDoCusBankExtendConfigs(extendbiztype?: number) {
         if (res.data.length) {
             const data = res.data[0]
             cusBank.value = data
-            end.value = (data.cusbankid === 'jdjs' ? getSystemParamValue('1003') : getSystemParamValue('013')) ?? ''
+            /// 不为空
+            const msg_318 = getSystemParamValue('318') ?? ''
+            const msg_013 = getSystemParamValue('013') ?? ''
+            end.value = msg_318 != '' ? msg_318 : msg_013
             /// 查询配置信息
             queryBankCusBankExtendConfigs({
                 data: {

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

@@ -14,6 +14,8 @@
                         :name="item.fieldcode" :label="item.fieldname" v-model="item.value"
                         :placeholder="`请输入${item.fieldname}`" />
                 </template>
+            </CellGroup>
+            <CellGroup inset>
                 <Field label="入金时间">
                     <template #input>
                         <span style="color: #999;">{{ start }} - {{ end }}</span>