资源下载地址:https://download.csdn.net/download/sheziqiong/85894968
资源下载地址:https://download.csdn.net/download/sheziqiong/85894968
git clone https://github.com/Allenem/CapitalManagementSystem.git
npm install
npm run client-install
npm run dev
服务端地址:http://localhost:5000, 客户端地址:http://localhost:8080
根目录下打开cmd
或powershell
运行tree /f
命令生成
.
│ package-lock.json
│ package.json
│ README.md
│ server.js
│
├─client
│ │ .gitignore
│ │ babel.config.js
│ │ package-lock.json
│ │ package.json
│ │ README.md
│ │ vue.config.js
│ │
│ ├─public
│ │ │ favicon.ico
│ │ │ index.html
│ │ │
│ │ └─css
│ │ reset.css
│ │
│ └─src
│ │ App.vue
│ │ http.js
│ │ main.js
│ │ router.js
│ │ store.js
│ │
│ ├─assets
│ │ 403.png
│ │ 404.gif
│ │ bg.jpg
│ │ coin.png
│ │ showcase.jpg
│ │
│ ├─components
│ │ Dialog.vue
│ │ HeadNav.vue
│ │ LeftMenu.vue
│ │
│ └─views
│ 404.vue
│ ChangeList.vue
│ FundList.vue
│ Home.vue
│ Index.vue
│ InfoShow.vue
│ Login.vue
│ Register.vue
│ UserList.vue
│
├─config
│ keys.js
│ passport.js
│
├─effectImg
│ ……
│
├─models
│ Profile.js
│ User.js
│
└─routers
└─api
profiles.js
users.js
主文件
server.js
两个模型
models/Profile.js
models/User.js
路由配置
routers/api/profiles.js
routers/api/users.js
常量和token验证
config/key
config/passport
vue默认配置
client/vue.config.js
入口文件
client/public/index.html
根组件
client/src/App.vue
路由配置
client/src/router.js
库的引用
client/src/main.js
loading,请求拦截,响应拦截
client/src/http.js
vuex存储
client/src/store.js
静态文件夹
client/src/assets
页面文件夹
client/src/views
组件文件夹
client/src/components
test无身份,all为管理员
|注册页
|登录页|
|主页|
非管理员资金流水页|
|非管理员个人信息页
|非管理员全员信息页|
|管理员资金流水页
管理员资金流水页
|管理员资金流水页编辑|
管理员个人信息页|
|管理员全员信息页|
管理员全员信息筛选|
接口地址:http://localhost:5000/api/users/test
请求方式:get
请求示例:Examples
接口参数:
1.请求参数说明:
{
}
2.返回参数说明:
{
"msg":"users test api works"
}
接口地址:http://localhost:5000/api/users/register
请求方式:post
请求示例:Examples
接口参数:
1.请求参数说明:
{
"name": "test",
"email": "test@test.com",
"password": "123456",
"identity": "manager"
}
2.返回参数说明:
{
"name": "test",
"email": "test@test.com",
"avatar": "xxx",
"password": "123456",
"identity": "manager"
}
接口地址:http://localhost:5000/api/users/login
请求方式:post
请求示例:Examples
接口参数:
返回参数说明:
1.请求参数说明:
{
"email": "test@test.com",
"password": "123456",
}
2.返回参数说明:
{
"success": true,
"token": "'Bearer' + token"
}
接口地址:http://localhost:5000/api/users/current
请求方式:get
请求示例:Examples
接口参数:
返回参数说明:
1.请求参数说明:
{
}
2.返回参数说明:
{
"id": "qwertyuiopasdfghjklcvbnm",
"name": "test",
"email": "test@test.com",
"identity": "manager"
}
接口地址:http://localhost:5000/api/users/
请求方式:get
请求示例:Examples
接口参数:
返回参数说明:
1.请求参数说明:
{
}
2.返回参数说明:
{
"user":
[
{
"_id": "5d320d3bb77a763724d503d9",
"name": "test",
"email": "test@gmail.com",
"avatar": "//www.gravatar.com/avatar/1aedb8d9dc4751e229a335e371db8058?s=200&r=pg&d=mm",
"password": "$2b$10$TBjcpQBI2hsXfZMB5DKzXuQBeevJI7mc7GuootkbwscUT9A/wiI6S",
"date": "2019-07-19T18:34:35.489Z",
"__v": 0
},
{
"_id": "5d32b28ae6b23dcb8dd4f727",
"name": "abc",
"email": "abc@abc.com",
"avatar": "//www.gravatar.com/avatar/4adcca49b3b1e5a08ac202f5d5a9e688?s=200&r=pg&d=mm",
"password": "$2b$10$TFjKmx0vtwbDjQMr6R0kNeQ/jQvDLzCksDPXebDBJyykahun7Cnhi",
"identity": "employee",
"date": "2019-07-20T06:19:54.158Z",
"__v": 0
}
]
}
接口地址:http://localhost:5000/api/profiles/test
请求方式:get
请求示例:Examples
接口参数:
1.请求参数说明:
{
}
2.返回参数说明:
{
"msg":"profiles test api works"
}
接口地址:http://localhost:5000/api/profiles/add
请求方式:post
请求示例:Examples
接口参数:
返回参数说明:
1.请求参数说明:
{
"type":"优惠券",
"describe":"买书",
"income":"30",
"expend":"20",
"cash":"10",
"remark":"开心"
}
2.返回参数说明:
{
"type":"优惠券",
"describe":"买书",
"income":"30",
"expend":"20",
"cash":"10",
"remark":"开心"
}
接口地址:http://localhost:5000/api/profiles/
请求方式:get
请求示例:Examples
接口参数:
返回参数说明:
1.请求参数说明:
{
}
2.返回参数说明:
{
"profile":
[
{
"type":"优惠券",
"describe":"买书",
"income":"30",
"expend":"20",
"cash":"10",
"remark":"开心"
},
{
"type":"礼券",
"describe":"充值",
"income":"50",
"expend":"20",
"cash":"30",
"remark":"好开心"
}
]
}
接口地址:http://localhost:5000/api/profiles/id
请求方式:get
请求示例:Examples
接口参数:
返回参数说明:
1.请求参数说明:
{
"id":"5d320d3bb77a763724d503d9"
}
2.返回参数说明:
{
"_id":"5d320d3bb77a763724d503d9",
"type":"优惠券",
"describe":"买书",
"income":"30",
"expend":"20",
"cash":"10",
"remark":"开心"
}
资源下载地址:https://download.csdn.net/download/sheziqiong/85894968
资源下载地址:https://download.csdn.net/download/sheziqiong/85894968