diff --git a/.env.development b/.env.development index c506c06..6385d3f 100644 --- a/.env.development +++ b/.env.development @@ -1,6 +1,8 @@ NODE_ENV = 'development' -VITE_APP_BASE_URL = 'https://ceshi-worker-task.lihaink.cn' +VITE_APP_BASE_URL = 'http://192.168.1.12:8001' + +# VITE_APP_BASE_URL = 'https://ceshi-worker-task.lihaink.cn' # VITE_APP_BASE_URL = 'https://preview-worker-task.lihaink.cn' diff --git a/src/api/company.ts b/src/api/company.ts index ff26c69..25ed266 100644 --- a/src/api/company.ts +++ b/src/api/company.ts @@ -65,4 +65,16 @@ export function companyResponsibleArea(params: any) { // 人脸采集 export function organizationFaceCreate(params: any) { return request.get({ url: '/company/organizationFaceCreate', params }) -} \ No newline at end of file +} + +// 押金线下对公账号转账凭证录入接口 +export function depositRechargeTransferVoucher(params: any) { + return request.post({ url: '/company/depositRechargeTransferVoucher', params }) +} + +// 获取押金凭证录入列表 +export function getDepositRechargeTransferVoucherList(params: any) { + return request.get({ url: '/company/getDepositRechargeTransferVoucherList', params }) +} + + diff --git a/src/views/finance/component/voucher.vue b/src/views/finance/component/voucher.vue new file mode 100644 index 0000000..772c544 --- /dev/null +++ b/src/views/finance/component/voucher.vue @@ -0,0 +1,250 @@ + + + + \ No newline at end of file diff --git a/src/views/finance/deposit.vue b/src/views/finance/deposit.vue new file mode 100644 index 0000000..928bf39 --- /dev/null +++ b/src/views/finance/deposit.vue @@ -0,0 +1,257 @@ + + + + + \ No newline at end of file diff --git a/src/views/finance/depositList.vue b/src/views/finance/depositList.vue new file mode 100644 index 0000000..669da97 --- /dev/null +++ b/src/views/finance/depositList.vue @@ -0,0 +1,215 @@ + + + + + \ No newline at end of file