li.shaoyi 2 jaren geleden
bovenliggende
commit
180a604c59

+ 1 - 1
src/packages/qdhs/router/index.ts

@@ -164,7 +164,7 @@ const routes: Array<RouteRecordRaw> = [
       {
         path: 'wallet',
         name: 'bank-wallet',
-        component: () => import('../views/bank/wallet/Index.vue'),
+        component: () => import('@mobile/views/bank/wallet/Index.vue'),
       },
       {
         path: 'sign',

+ 0 - 12
src/packages/qdhs/views/bank/wallet/Index.vue

@@ -1,12 +0,0 @@
-<template>
-    <app-view>
-        <template #header>
-            <app-navbar title="出金" />
-        </template>
-        <app-withdraw />
-    </app-view>
-</template>
-
-<script lang="ts" setup>
-import AppWithdraw from '@mobile/views/bank/wallet/components/withdraw/Index.vue'
-</script>

+ 0 - 144
src/packages/qdhs/views/bank/wallet/components/deposit/Index.vue

@@ -1,144 +0,0 @@
-<template>
-    <app-view class="g-form bank-wallet-deposit">
-        <Form ref="formRef" v-if="cusBank.caninamount === 1" class="g-form__container" @submit="formSubmit">
-            <CellGroup inset>
-                <Field type="number" v-model="formData.Amount" label="充值金额" placeholder="请填写充值金额"
-                    :rules="formRules.Amount" />
-                <Field label="凭证" :rules="formRules.filePath">
-                    <template #input>
-                        <app-uploader @success="onUploadSuccess" />
-                    </template>
-                </Field>
-                <template v-for="(item, index) in configs" :key="index">
-                    <Field v-if="item.usabletype === 1 || item.usabletype === userStore.userInfo?.userinfotype"
-                        :name="item.fieldcode" :label="item.fieldname" v-model="item.value"
-                        :placeholder="`请输入${item.fieldname}`" />
-                </template>
-            </CellGroup>
-        </Form>
-        <div class="g-form__bank" v-if="cusBank.caninamount === 0">
-            <span>{{ msg }}</span>
-        </div>
-        <div class="g-form__time">
-            <label>充值提现时间:{{ start }}-{{ end }}</label>
-        </div>
-        <div class="g-form__bank" v-if="false">
-            <table cellspacing="10" cellpadding="0">
-                <tr>
-                    <td>
-                        <span>企业名称:</span>
-                        <span>上海徽行供应链有限公司</span>
-                    </td>
-                    <td>
-                        <button type="button" data-clipboard-text="上海徽行供应链有限公司" v-copy="onCopy">复制</button>
-                    </td>
-                </tr>
-                <tr>
-                    <td colspan="2">
-                        <span>开户银行:</span>
-                        <span>中信银行上海虹口支行</span>
-                    </td>
-                </tr>
-                <tr>
-                    <td>
-                        <span>银行账户:</span>
-                        <span>8110201012101533442</span>
-                    </td>
-                    <td>
-                        <button ref="copy2" type="button" data-clipboard-text="8110201012101533442"
-                            v-copy="onCopy">复制</button>
-                    </td>
-                </tr>
-                <tr>
-                    <td colspan="2">
-                        <span>(汇款备注:预付货款或合同转让款)</span>
-                    </td>
-                </tr>
-                <tr>
-                    <td colspan="2">
-                        <span>电话: 021-63138889, 13681901188</span>
-                    </td>
-                </tr>
-            </table>
-        </div>
-        <template #footer>
-            <div class="g-form__footer inset">
-                <Button round block type="danger" @click="formRef?.submit()">确定</Button>
-            </div>
-        </template>
-    </app-view>
-</template>
-
-<script lang="ts" setup>
-import { shallowRef, ref } from 'vue'
-import { Form, Field, CellGroup, Button, FieldRule, FormInstance, showFailToast, showSuccessToast } from 'vant'
-import { useDoDeposit, useDoCusBankExtendConfigs, useQueryCusBankSignBank } from '@/business/bank'
-import { fullloading, dialog } from '@/utils/vant'
-import { useNavigation } from '@mobile/router/navigation'
-import { useUserStore } from '@/stores'
-import AppUploader from '@mobile/components/base/uploader/index.vue'
-
-const formRef = shallowRef<FormInstance>()
-const { formData, onSubmit } = useDoDeposit()
-const { router } = useNavigation()
-const { getSystemParamValue } = useUserStore()
-const start = getSystemParamValue('012')
-const end = getSystemParamValue('013')
-const msg = getSystemParamValue('302')
-const { configs } = useDoCusBankExtendConfigs(2)
-const certificate_photo_url = ref('')
-const userStore = useUserStore()
-/// 查询托管银行信息
-const { cusBank } = useQueryCusBankSignBank()
-
-// 表单验证规则
-const formRules: { [key in keyof Proto.t2bBankDepositReq | 'filePath']?: FieldRule[] } = {
-    Amount: [{
-        required: true,
-        message: '请填写充值金额',
-    }],
-    filePath: [{
-        message: '请上传转账凭证',
-        validator: () => {
-            return !!certificate_photo_url.value
-        }
-    }]
-}
-
-const onCopy = (status: boolean) => {
-    if (status) {
-        showSuccessToast('复制成功')
-    } else {
-        showFailToast('复制失败')
-    }
-}
-
-const onUploadSuccess = (filePath: string) => {
-    certificate_photo_url.value = filePath
-}
-
-const formSubmit = () => {
-    fullloading((hideLoading) => {
-        const obj: { [key: string]: unknown } = Object.create({})
-        configs.value.forEach((e) => {
-            if (e.value) {
-                obj[e.fieldcode] = e.value
-            }
-        })
-        obj['certificate_photo_url'] = certificate_photo_url.value
-        formData.extend_info = JSON.stringify(obj)
-        onSubmit().then(() => {
-            hideLoading()
-            dialog('充值申请提交成功,请等待审核。').then(() => {
-                router.back()
-            })
-        }).catch(() => {
-            hideLoading('充值失败', 'fail')
-        })
-    })
-}
-</script>
-
-<style lang="less">
-@import './index.less';
-</style>

+ 0 - 35
src/packages/qdhs/views/bank/wallet/components/deposit/index.less

@@ -1,35 +0,0 @@
-.bank-wallet-deposit {
-    .g-form__time {
-        color: #999;
-        padding-left: 15px;
-    }
-
-    .g-form__bank {
-        padding: 16px;
-
-        table {
-            width: 100%;
-            font-size: .24rem;
-            border: 1px dashed #ddd;
-            border-radius: .1rem;
-
-            td {
-                &:not(:first-child) {
-                    text-align: right;
-                }
-
-                span {
-                    &:first-child {
-                        color: #999;
-                    }
-                }
-
-                button {
-                    background-color: #e1e1e1;
-                    border-radius: .1rem;
-                    padding: .04rem .2rem;
-                }
-            }
-        }
-    }
-}

+ 0 - 106
src/packages/qdhs/views/bank/wallet/components/withdraw/Index.vue

@@ -1,106 +0,0 @@
-<template>
-    <app-view class="g-form bank-wallet-withdraw">
-        <Form ref="formRef" v-if="cusBank.canoutamount === 1" class="g-form__container" @submit="formSubmit">
-            <CellGroup inset>
-                <Field class="form-field" type="number" label="提现金额" v-model="formData.Amount" :rules="formRules.Amount">
-                    <template #input>
-                        <input v-model="formData.Amount" placeholder="请填写提现金额" />
-                        <span class="form-field__tips">可出金额:{{ fund.AvailableOutMoney }}</span>
-                    </template>
-                </Field>
-                <Field label="开户银行">
-                    <template #input>
-                        {{ sign.bankname }}
-                    </template>
-                </Field>
-                <Field label="银行卡号">
-                    <template #input>
-                        {{ sign.bankaccountno }}
-                    </template>
-                </Field>
-                <Field label="姓名">
-                    <template #input>
-                        {{ sign.bankaccountname }}
-                    </template>
-                </Field>
-                <template v-for="(item, index) in configs" :key="index">
-                    <Field v-if="item.usabletype === 1 || item.usabletype === userStore.userInfo?.userinfotype"
-                        :name="item.fieldcode" :label="item.fieldname" v-model="item.value"
-                        :placeholder="`请输入${item.fieldname}`" />
-                </template>
-            </CellGroup>
-        </Form>
-        <div class="g-form__bank" v-if="cusBank.canoutamount === 0">
-            <span>{{ msg }}</span>
-        </div>
-        <div class="g-form__time">
-            <label>充值提现时间:{{ start }}-{{ end }}</label>
-        </div>
-        <template #footer>
-            <div class="g-form__footer inset">
-                <Button round block type="danger" @click="formRef?.submit()">确定</Button>
-            </div>
-        </template>
-    </app-view>
-</template>
-
-<script lang="ts" setup>
-import { useDoWithdraw, useAccountFundInfo, useDoCusBankExtendConfigs, useQueryCusBankSignBank } from '@/business/bank';
-import { Form, Field, CellGroup, FormInstance, Button, FieldRule } from 'vant'
-import { shallowRef } from 'vue'
-import { fullloading, dialog } from '@/utils/vant'
-import { useNavigation } from '@mobile/router/navigation'
-import { useUserStore } from '@/stores'
-
-const { formData, onSubmit, sign } = useDoWithdraw()
-const { configs } = useDoCusBankExtendConfigs(3)
-/// 资金账户信息
-const { fund } = useAccountFundInfo()
-const { router } = useNavigation()
-const formRef = shallowRef<FormInstance>()
-const { getSystemParamValue } = useUserStore()
-const start = getSystemParamValue('012')
-const end = getSystemParamValue('013')
-const msg = getSystemParamValue('302')
-const userStore = useUserStore()
-/// 查询托管银行信息
-const { cusBank } = useQueryCusBankSignBank()
-
-// 表单验证规则
-const formRules: { [key in keyof Proto.t2bBankWithdrawReq]?: FieldRule[] } = {
-    Amount: [{
-        required: true,
-        message: '请输入出金金额',
-        validator: (val) => {
-            if (val <= (fund.value.AvailableOutMoney ?? 0.0)) {
-                return true
-            }
-            return '超过可出金额'
-        }
-    }]
-}
-
-const formSubmit = () => {
-    const obj: { [key: string]: unknown } = Object.create({})
-    configs.value.forEach((e) => {
-        if (e.value) {
-            obj[e.fieldcode] = e.value
-        }
-    })
-    formData.extend_info = JSON.stringify(obj)
-    fullloading((hideLoading) => {
-        onSubmit().then(() => {
-            hideLoading()
-            dialog('出金提交申请成功,请耐心等待审核。').then(() => {
-                router.back()
-            })
-        }).catch(() => {
-            hideLoading('出金失败', 'fail')
-        })
-    })
-}
-</script>
-
-<style lang="less">
-@import './index.less';
-</style>

+ 0 - 22
src/packages/qdhs/views/bank/wallet/components/withdraw/index.less

@@ -1,22 +0,0 @@
-.bank-wallet-withdraw {
-    .form-field {
-        .van-field__control {
-            display: flex;
-            flex-direction: column;
-            align-items: flex-start;
-        }
-
-        &__tips {
-            font-size: .24rem;
-        }
-    }
-
-    .g-form__bank {
-        padding: 16px;
-    }
-
-    .g-form__time {
-        color: #999;
-        padding-left: 15px;
-    }
-}