From 48f7c566b7f826b73d6e4215c3d1edb8803b8008 Mon Sep 17 00:00:00 2001 From: weipengfei <2187978347@qq.com> Date: Mon, 9 Oct 2023 13:46:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=8A=BC=E9=87=91=E5=85=85?= =?UTF-8?q?=E5=80=BC=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 8 +- src/api/accounts.js | 7 + src/libs/constants.js | 38 +++++ src/router/modules/accounts.js | 11 +- src/views/accounts/deposit/index.vue | 238 +++++++++++++++++++++++++++ 5 files changed, 297 insertions(+), 5 deletions(-) create mode 100644 src/libs/constants.js create mode 100644 src/views/accounts/deposit/index.vue diff --git a/.env.development b/.env.development index f776270..ae8f67e 100644 --- a/.env.development +++ b/.env.development @@ -3,12 +3,12 @@ ENV = 'development' # base api #VUE_APP_BASE_API = 'http://127.0.0.1:8325' - VUE_APP_BASE_API = 'https://shop.lihaink.cn' -# VUE_APP_BASE_API = 'https://crmeb-test.shop.lihaink.cn' +# VUE_APP_BASE_API = 'https://shop.lihaink.cn' + VUE_APP_BASE_API = 'https://crmeb-test.shop.lihaink.cn' # socket 连接地址 #VUE_APP_WS_URL = 'ws://192.168.3.20:8324' -VUE_APP_WS_URL = 'wss://shop.lihaink.cn' -# VUE_APP_WS_URL = 'wss://crmeb-test.shop.lihaink.cn' +# VUE_APP_WS_URL = 'wss://shop.lihaink.cn' +VUE_APP_WS_URL = 'wss://crmeb-test.shop.lihaink.cn' # vue-cli uses the VUE_CLI_BABEL_TRANSPILE_MODULES environment variable, # to control whether the babel-plugin-dynamic-import-node plugin is enabled. diff --git a/src/api/accounts.js b/src/api/accounts.js index 3c3edb8..516a573 100644 --- a/src/api/accounts.js +++ b/src/api/accounts.js @@ -133,3 +133,10 @@ export function downloadFinancialApi(type, data) { export function getStatisticsApi(data) { return request.get(`financial_record/count`,data) } + +/** + * @description 保证金充值记录 -- 列表 + */ +export function depositListApi(data) { + return request.get(`/bill/deposit`, data) +} diff --git a/src/libs/constants.js b/src/libs/constants.js new file mode 100644 index 0000000..c285049 --- /dev/null +++ b/src/libs/constants.js @@ -0,0 +1,38 @@ +// +---------------------------------------------------------------------- +// | CRMEB [ CRMEB赋能开发者,助力企业发展 ] +// +---------------------------------------------------------------------- +// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved. +// +---------------------------------------------------------------------- +// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 +// +---------------------------------------------------------------------- +// | Author: CRMEB Team +// +---------------------------------------------------------------------- +export const switchStatus = [ + { label: '开启', value: 1 }, + { label: '关闭', value: 0 } +] + +export const fromList = { + title: '选择时间', + custom: true, + fromTxt: [ + { text: '全部', val: '' }, + { text: '今天', val: 'today' }, + { text: '昨天', val: 'yesterday' }, + { text: '最近7天', val: 'lately7' }, + { text: '最近30天', val: 'lately30' }, + { text: '本月', val: 'month' }, + { text: '本年', val: 'year' } + ] +} + +export const statusList = { + title: '状态', + custom: true, + fromTxt: [ + { text: '全部', val: '' }, + { text: '待审核', val: '0' }, + { text: '审核已通过', val: '1' }, + { text: '审核未通过', val: '2' } + ] +} diff --git a/src/router/modules/accounts.js b/src/router/modules/accounts.js index f6179b9..627a1a1 100644 --- a/src/router/modules/accounts.js +++ b/src/router/modules/accounts.js @@ -75,7 +75,16 @@ const accountsRouter = noCache: true }, component: () => import('@/views/accounts/payType') - } + }, + { + path: 'deposit', + name: 'AccountsDeposit', + meta: { + title: '押金充值记录', + noCache: true + }, + component: () => import('@/views/accounts/deposit/index') + }, ] } export default accountsRouter diff --git a/src/views/accounts/deposit/index.vue b/src/views/accounts/deposit/index.vue new file mode 100644 index 0000000..9e486e2 --- /dev/null +++ b/src/views/accounts/deposit/index.vue @@ -0,0 +1,238 @@ + + + + +