diff --git a/.env.development b/.env.development index 934211c..51fee85 100644 --- a/.env.development +++ b/.env.development @@ -4,7 +4,7 @@ ENV = 'development' # http://mer.crmeb.net/admin # base api # VUE_APP_BASE_API = 'http://192.168.31.106:8324' -VUE_APP_BASE_API = 'https://mer1.crmeb.net' +VUE_APP_BASE_API = 'http://127.0.0.1:8324' # socket 连接地址 # VUE_APP_WS_URL = 'ws://0.0.0.0:8324' diff --git a/src/api/supply.js b/src/api/supply.js new file mode 100644 index 0000000..41559f2 --- /dev/null +++ b/src/api/supply.js @@ -0,0 +1,380 @@ +// +---------------------------------------------------------------------- +// | CRMEB [ CRMEB赋能开发者,助力企业发展 ] +// +---------------------------------------------------------------------- +// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved. +// +---------------------------------------------------------------------- +// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 +// +---------------------------------------------------------------------- +// | Author: CRMEB Team +// +---------------------------------------------------------------------- +import request from './request' + +/** + * @description 商户权限管理 -- 列表 + */ +export function supplyMenuListApi(data) { + return request.get('supply/menu/lst', data) +} +/** + * @description 商户权限管理 -- 新增表单 + */ +export function supplyMenuCreateApi() { + return request.get('supply/menu/create/form') +} +/** + * @description 商户权限管理 -- 编辑表单 + */ +export function supplyMenuUpdateApi(id) { + return request.get(`supply/menu/update/form/${id}`) +} +/** + * @description 商户权限管理 -- 删除 + */ +export function supplyMenuDeleteApi(id) { + return request.delete(`supply/menu/delete/${id}`) +} +/** + * @description 商户列表 -- 列表 + */ +export function supplyListApi(data) { + return request.get('system/supply/lst', data) +} +/** + * @description 商户列表 -- 详情 + */ +export function supplyDetail(id) { + return request.get(`system/supply/detail/${id}`) +} +/** + * @description 商户列表 -- 新增表单 + */ +export function supplyCreateApi() { + return request.get('system/supply/create/form') +} +/** + * @description 商户列表 -- 新增 + */ +export function supplyCreate(data) { + return request.post('system/supply/create', data) +} +/** + * @description 商户列表 -- 编辑表单 + */ +export function supplyUpdateApi(id) { + return request.get(`system/supply/update/form/${id}`) +} + +/** + * @description 商户列表 -- 编辑 + */ +export function supplyUpdate(id,data) { + return request.post(`system/supply/update/${id}`,data) +} +/** + * @description 商户列表 -- 删除 + */ +export function supplyDeleteApi(id) { + return request.delete(`system/supply/delete/${id}`) +} +/** + * @description 商户列表 -- 删除(表单) + */ +export function supplyDeleteForm(id) { + return request.get(`system/supply/delete/${id}/form`) +} +/** + * @description 商户列表 -- 修改开启状态 + */ +export function supplyStatuseApi(id, status) { + return request.post(`system/supply/status/${id}`, { status }) +} +/** + * @description 商户列表 -- 修改密码 + */ +export function supplyPasswordApi(id) { + return request.get(`system/supply/password/form/${id}`) +} +/** + * @description 商户分类 -- 列表 + */ +export function categoryListApi(data) { + return request.get('system/supply/category/lst', data) +} +/** + * @description 商户分类 -- 新增表单 + */ +export function categoryCreateApi() { + return request.get('system/supply/category/form') +} +/** + * @description 商户分类 -- 编辑表单 + */ +export function categoryUpdateApi(id) { + return request.get(`system/supply/category/form/${id}`) +} +/** + * @description 商户分类 -- 删除 + */ +export function categoryDeleteApi(id) { + return request.delete(`system/supply/category/${id}`) +} + +/** + * @description 商户对账 -- 订单列表 + */ +export function merOrderListApi(id, data) { + return request.get(`supply/order/lst/${id}`, data) +} +/** + * @description 商户对账 -- 订单备注 + */ +export function orderMarkApi(id) { + return request.get(`supply/order/mark/${id}/form`) +} +/** + * @description 商户对账 -- 退款订单列表 + */ +export function refundOrderListApi(id, data) { + return request.get(`supply/order/refund/lst/${id}`, data) +} +/** + * @description 退款订单 -- 订单备注 + */ +export function refundMarkApi(id) { + return request.get(`supply/order/refund/mark/${id}/form`) +} +/** + * @description 对账订单 -- 发起对账单 + */ +export function reconciliationApi(id, data) { + return request.post(`supply/order/reconciliation/create/${id}`, data) +} +/** + * @description 对账订单 -- 发起对账单 + */ +export function supplyLoginApi(mer_id) { + return request.post(`system/supply/login/${mer_id}`) +} +/** + * @description 申请管理 -- 列表 + */ +export function intentionLstApi(data) { + return request.get('supply/intention/lst', data) +} +/** + * @description 申请管理 -- 备注 + */ +export function auditApi(mer_id) { + return request.get(`supply/intention/mark/${mer_id}/form`) +} +/** + * @description 申请管理 -- 删除 + */ +export function intentionDelte(mer_id) { + return request.delete(`supply/intention/delete/${mer_id}`) +} +/** + * @description 申请管理 -- 修改状态 + */ +export function intentionStatusApi(mer_id) { + return request.get(`supply/intention/status/${mer_id}/form`) +} +/** + * @description 申请管理 -- 编辑复制次数 + */ +export function changeCopyApi(mer_id) { + return request.get(`system/supply/changecopy/${mer_id}/form`) +} +/** + * @description 申请管理 -- 入驻协议详情 + */ +export function intentionAgreeInfo() { + return request.get(`agreement/sys_intention_agree`) +} +/** + * @description 申请管理 -- 入驻协议保存 + */ +export function intentionAgreeUpdate(data) { + return request.post(`agreement/sys_intention_agree`,data) +} +/** + * @description 店铺类型 -- 获取说明 + */ + export function getStoreTypeApi(key) { + return request.get(`agreement/${key}`) +} +/** + * @description 店铺类型 -- 编辑说明 + */ +export function updateStoreTypeApi(type, data) { + return request.post(`agreement/${type}`, data) +} +/** + * @description 商户列表 -- 开启关闭 + */ +export function supplyIsCloseApi(id, status) { + return request.post(`system/supply/close/${id}`, { status }) +} +/** + * @description 商户列表 -- 开启商户数 + */ +export function supplyCountApi() { + return request.get(`system/supply/count`) +} + +/** + * @description 店铺类型 -- 创建店铺类型 + */ +export function storeTypeCreateApi(data) { + return request.post(`supply/type/create`, data) +} +/** + * @description 店铺类型 -- 列表 + */ + export function storeTypeLstApi(data) { + return request.get(`supply/type/lst`, data) +} +/** + * @description 店铺类型 -- 店铺权限 + */ + export function storeJurisdictionApi() { + return request.get(`supply/type/mer_auth`) +} +/** + * @description 店铺类型 -- 创建店铺类型 + */ +export function storeTypeUpdateApi(id, data) { + return request.post(`supply/type/update/${id}`, data) +} +/** + * @description 店铺类型列表 -- 删除 + */ +export function storeTypeDeleteApi(id) { + return request.delete(`supply/type/delete/${id}`) +} +/** + * @description 店铺类型列表 -- 备注 + */ +export function supplyTypeMarkForm(id) { + return request.get(`supply/type/mark/${id}`) +} +/** + * @description 店铺类型列表 -- 详情 + */ + export function supplyTypeDetailApi(id) { + return request.get(`/supply/type/detail/${id}`) +} +/** + * @description 店铺类型 -- 获取选择项 + */ +export function getstoreTypeApi() { + return request.get(`supply/type/options`) +} +/** + * @description 商户分类 -- 获取选择项 + */ +export function getMerCateApi() { + return request.get(`system/supply/category/options`) +} +/** + * @description 服务申请 -- 列表 + */ +export function getApplymentLst(data) { + return request.get(`system/applyments/lst`, data) +} +/** + * @description 服务申请 -- 审核 + */ +export function applymentStatusApi(id, data) { + return request.post(`system/applyments/status/${id}`, data) +} +/** + * @description 服务申请 -- 详情 + */ +export function applymentDetailApi(id) { + return request.get(`system/applyments/detail/${id}`) +} +/** + * @description 商户 -- 分账列表 + */ + export function applymentLstApi(data) { + return request.get(`profitsharing/lst`, data) +} +/** + * @description 商户 -- 分账(立即分账) + */ + export function splitAccountApi(id) { + return request.post(`profitsharing/again/${id}`) +} +/** + * @description 分账申请 -- 备注 + */ +export function splitAccountMark(id) { + return request.get(`system/applyments/mark/${id}/form`) +} +/** + * @description 分账管理 -- 导出 + */ + export function ledgerManageExportApi(data) { + return request.get(`profitsharing/export`, data) +} +/** + * @description 缴存保证金 -- 列表 + */ + export function marginLstApi(data) { + return request.get(`margin/lst`, data) +} +/** + * @description 待缴保证金 -- 列表 + */ +export function marginDepositLstApi(data) { + return request.get(`margin/make_up`, data) +} +/** + * @description 待缴保证金 -- 线下付款 + */ +export function marginPaymentApi(id) { + return request.get(`margin/local/${id}/form`) +} +/** + * @description 退回保证金 -- 列表 + */ + export function marginRefundLstApi(data) { + return request.get(`margin/refund/lst`, data) +} +/** + * @description 退回保证金 -- 审核 + */ + export function marginRefundStatus(id) { + return request.get(`margin/refund/status/${id}/form`) +} +/** + * @description 退回保证金 -- 备注 + */ + export function marginRefundMark(id) { + return request.get(`margin/refund/mark/${id}/form`) +} +/** + * @description 退回保证金 -- 退回信息 + */ + export function marginRefundInfo(id) { + return request.get(`margin/refund/show/${id}`) +} +/** + * @description 退回保证金 -- 扣费记录 + */ + export function marginDeductionRecord(id, data) { + return request.get(`margin/list/${id}`, data) +} +/** + * @description 退回保证金 -- 保证金扣费 + */ + export function marginDeductionForm(id) { + return request.get(`margin/set/${id}/form`) +} +/** + * @description 商户详情 -- 操作记录 + */ +export function supplyOperateLog(id, data) { + return request.get(`system/supply/get_operate_list/${id}`, data) +} diff --git a/src/router/index.js b/src/router/index.js index 7d4d56b..65e59ba 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -39,6 +39,7 @@ import stationRouter from "./modules/station"; import serviceRouter from "./modules/service"; import communityRouter from "./modules/community"; import deliveryRouter from "./modules/delivery"; +import supplyRouter from "./modules/supply"; export const constantRoutes = [ configRouter, @@ -64,6 +65,7 @@ export const constantRoutes = [ serviceRouter, communityRouter, deliveryRouter, + supplyRouter, { path: roterPre, component: Layout, diff --git a/src/router/modules/supply.js b/src/router/modules/supply.js new file mode 100644 index 0000000..55d44df --- /dev/null +++ b/src/router/modules/supply.js @@ -0,0 +1,135 @@ +// +---------------------------------------------------------------------- +// | CRMEB [ CRMEB赋能开发者,助力企业发展 ] +// +---------------------------------------------------------------------- +// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved. +// +---------------------------------------------------------------------- +// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 +// +---------------------------------------------------------------------- +// | Author: CRMEB Team +// +---------------------------------------------------------------------- +import Layout from '@/layout' +import { roterPre } from '@/settings' +const supplyRouter = + { + path: `${roterPre}/supply`, + name: 'supply', + meta: { + icon: 'dashboard', + title: '商户管理' + }, + alwaysShow: true, + component: Layout, + children: [ + { + path: 'system', + name: 'SupplySystem', + meta: { + title: '商户权限管理', + noCache: true + }, + component: () => import('@/views/supply/system/index') + }, + { + path: 'list', + name: 'SupplyList', + meta: { + title: '商户列表', + noCache: true + }, + component: () => import('@/views/supply/list/index') + }, + { + path: 'list/reconciliation/:id/:type?', + name: 'SupplyRecord', + component: () => import('@/views/supply/list/record'), + meta: { + title: '商户对账', + noCache: true, + activeMenu: `${roterPre}/supply/list` + }, + hidden: true + }, + { + path: 'classify', + name: 'SupplyClassify', + meta: { + title: '商户分类', + noCache: true + }, + component: () => import('@/views/supply/classify') + }, + { + path: 'application', + name: 'SupplyApplication', + meta: { + title: '商户申请', + noCache: true + }, + component: () => import('@/views/supply/application') + }, + { + path: 'agree', + name: 'SupplyAgreement', + meta: { + title: '入驻协议', + noCache: true + }, + component: () => import('@/views/supply/agreement') + }, + { + path: 'type', + name: 'storeType', + meta: { + title: '店铺类型', + noCache: true + }, + component: () => import('@/views/supply/type/index') + }, + { + path: 'applyMents', + name: 'SupplyApplyMents', + meta: { + title: '服务申请', + noCache: true + }, + component: () => import('@/views/supply/applyments/index') + }, + { + path: 'applyList', + name: 'ApplyList', + meta: { + title: '分账商户列表' + }, + component: () => import('@/views/supply/applyments/list') + }, + { + path: 'type/description', + name: 'MerTypeDesc', + meta: { + title: '店铺类型说明', + noCache: true, + }, + component: () => import('@/views/supply/type/description') + }, + { + path: 'deposit_list', + name: 'DepositList', + meta: { + title: '店铺保证金管理', + noCache: true + }, + component: () => import('@/views/supply/deposit/index') + }, + { + path: 'recharge_record', + name: 'RechargeRecord', + meta: { + title: '商户充值记录', + noCache: true + }, + component: () => import('@/views/supply/rechargeRecord/index') + }, + ] + } + +export default supplyRouter diff --git a/src/views/supply/agreement/index.vue b/src/views/supply/agreement/index.vue new file mode 100644 index 0000000..136f98d --- /dev/null +++ b/src/views/supply/agreement/index.vue @@ -0,0 +1,171 @@ + + + + + + + + diff --git a/src/views/supply/application/index.vue b/src/views/supply/application/index.vue new file mode 100644 index 0000000..ecda849 --- /dev/null +++ b/src/views/supply/application/index.vue @@ -0,0 +1,310 @@ + + + + + diff --git a/src/views/supply/applyments/index.vue b/src/views/supply/applyments/index.vue new file mode 100644 index 0000000..032c9ef --- /dev/null +++ b/src/views/supply/applyments/index.vue @@ -0,0 +1,488 @@ + + + + diff --git a/src/views/supply/applyments/list.vue b/src/views/supply/applyments/list.vue new file mode 100644 index 0000000..5b42067 --- /dev/null +++ b/src/views/supply/applyments/list.vue @@ -0,0 +1,339 @@ + + + + + diff --git a/src/views/supply/classify/index.vue b/src/views/supply/classify/index.vue new file mode 100644 index 0000000..431099f --- /dev/null +++ b/src/views/supply/classify/index.vue @@ -0,0 +1,135 @@ + + + + + diff --git a/src/views/supply/deposit/index.vue b/src/views/supply/deposit/index.vue new file mode 100644 index 0000000..386b951 --- /dev/null +++ b/src/views/supply/deposit/index.vue @@ -0,0 +1,720 @@ + + + + diff --git a/src/views/supply/list/handle/merDetails.vue b/src/views/supply/list/handle/merDetails.vue new file mode 100644 index 0000000..756deb6 --- /dev/null +++ b/src/views/supply/list/handle/merDetails.vue @@ -0,0 +1,336 @@ + + + diff --git a/src/views/supply/list/handle/merEditForm.vue b/src/views/supply/list/handle/merEditForm.vue new file mode 100644 index 0000000..f9ad12b --- /dev/null +++ b/src/views/supply/list/handle/merEditForm.vue @@ -0,0 +1,510 @@ + + + diff --git a/src/views/supply/list/handle/merInfo.vue b/src/views/supply/list/handle/merInfo.vue new file mode 100644 index 0000000..2c8b1c1 --- /dev/null +++ b/src/views/supply/list/handle/merInfo.vue @@ -0,0 +1,420 @@ + + + diff --git a/src/views/supply/list/index.vue b/src/views/supply/list/index.vue new file mode 100644 index 0000000..33f38ce --- /dev/null +++ b/src/views/supply/list/index.vue @@ -0,0 +1,419 @@ + + + + diff --git a/src/views/supply/list/record.vue b/src/views/supply/list/record.vue new file mode 100644 index 0000000..8a9eb90 --- /dev/null +++ b/src/views/supply/list/record.vue @@ -0,0 +1,632 @@ + + + + + diff --git a/src/views/supply/rechargeRecord/index.vue b/src/views/supply/rechargeRecord/index.vue new file mode 100644 index 0000000..54e7dbd --- /dev/null +++ b/src/views/supply/rechargeRecord/index.vue @@ -0,0 +1,203 @@ + + + + + diff --git a/src/views/supply/system/index.vue b/src/views/supply/system/index.vue new file mode 100644 index 0000000..7dd59d5 --- /dev/null +++ b/src/views/supply/system/index.vue @@ -0,0 +1,146 @@ + + + + + diff --git a/src/views/supply/type/description.vue b/src/views/supply/type/description.vue new file mode 100644 index 0000000..82945a1 --- /dev/null +++ b/src/views/supply/type/description.vue @@ -0,0 +1,171 @@ + + + + + + + + diff --git a/src/views/supply/type/index.vue b/src/views/supply/type/index.vue new file mode 100644 index 0000000..327aed5 --- /dev/null +++ b/src/views/supply/type/index.vue @@ -0,0 +1,252 @@ + + + + diff --git a/src/views/supply/type/record.vue b/src/views/supply/type/record.vue new file mode 100644 index 0000000..159b8c4 --- /dev/null +++ b/src/views/supply/type/record.vue @@ -0,0 +1,632 @@ + + + + + diff --git a/src/views/supply/type/typeDetails.vue b/src/views/supply/type/typeDetails.vue new file mode 100644 index 0000000..fb0ac00 --- /dev/null +++ b/src/views/supply/type/typeDetails.vue @@ -0,0 +1,324 @@ + + + diff --git a/src/views/supply/type/typeEditForm.vue b/src/views/supply/type/typeEditForm.vue new file mode 100644 index 0000000..98ef4ed --- /dev/null +++ b/src/views/supply/type/typeEditForm.vue @@ -0,0 +1,307 @@ + + + diff --git a/src/views/supply/type/typeInfo.vue b/src/views/supply/type/typeInfo.vue new file mode 100644 index 0000000..e6b4adf --- /dev/null +++ b/src/views/supply/type/typeInfo.vue @@ -0,0 +1,151 @@ + + +