From 670dccc4628ef130f2a79f717b429be0a3b1d429 Mon Sep 17 00:00:00 2001 From: zx <604444282@qq.com> Date: Mon, 28 Feb 2022 17:30:57 +0800 Subject: [PATCH] zx --- .eslintrc.js | 2 +- src/api/manage/index.js | 46 +++++++ src/router/manage.js | 4 +- src/views/Manage/CustomerList/_detail.vue | 2 +- src/views/Manage/CustomerList/index.vue | 129 ++++++++---------- .../Manage/SettleRequestManage/_detail.vue | 83 ++++++----- .../Manage/SettleRequestManage/index.vue | 123 ++++++++--------- 7 files changed, 216 insertions(+), 173 deletions(-) create mode 100644 src/api/manage/index.js diff --git a/.eslintrc.js b/.eslintrc.js index 0c40f7a..2cf5402 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -18,7 +18,7 @@ module.exports = { "vue" ], "rules": { - indent: ['error', 'tab'], + indent: ['offset', '2'], 'no-console': 'off', } }; \ No newline at end of file diff --git a/src/api/manage/index.js b/src/api/manage/index.js new file mode 100644 index 0000000..0504090 --- /dev/null +++ b/src/api/manage/index.js @@ -0,0 +1,46 @@ +import httpService from "@/request" + +// 入住申请-查询所有的入驻申请记录 +export function getAllRequest(params) { + return httpService({ + url: `/user/settledApplication/list`, + method: 'get', + params: params, + }) +} + +// 入住申请-根据入驻申请主键id查询详情 +export function getRequestDetail(params) { + return httpService({ + url: `/user/settledApplication/findDetailsById`, + method: 'get', + params: params, + }) +} + +// 入住申请-通过/驳回入驻申请 +export function isPass(params) { + return httpService({ + url: `/user/settledApplication/isPass`, + method: 'post', + params: params, + }) +} + +// 客户列表-查询所有客户信息 +export function getCustomerList(params) { + return httpService({ + url: `/user/customerList/list`, + method: 'get', + params: params, + }) +} + +// 客户列表-根据客户主键id查询详情 +export function getCustomerDetail(params) { + return httpService({ + url: `/user/customerList/findDetailsById`, + method: 'get', + params: params, + }) +} \ No newline at end of file diff --git a/src/router/manage.js b/src/router/manage.js index a7c4ff2..b3d885c 100644 --- a/src/router/manage.js +++ b/src/router/manage.js @@ -29,11 +29,11 @@ export default [ { path: '/Manage/SettleRequestManage/customer_detail', name: "customer_detail", - title: "查看详情", + title: "查看客户详情", hide: true, icon: 'container', component: resolve => require(['@/views/Manage/CustomerList/_detail'], resolve), - meta: {title: '查看详情'}, + meta: {title: '查看客户详情'}, }, { path: '/Manage/VillageManage', diff --git a/src/views/Manage/CustomerList/_detail.vue b/src/views/Manage/CustomerList/_detail.vue index db41b8b..30e49b9 100644 --- a/src/views/Manage/CustomerList/_detail.vue +++ b/src/views/Manage/CustomerList/_detail.vue @@ -6,7 +6,7 @@