mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2025-12-12 09:32:49 +00:00
修改用户
This commit is contained in:
parent
35b10c5ec9
commit
002c99a3e7
16
README.md
16
README.md
@ -10,6 +10,14 @@
|
||||
<img src="https://img.shields.io/github/last-commit/cool-team-official/cool-admin-midway?style=flat-square" alt="GitHub tag"></a>
|
||||
</p>
|
||||
|
||||
## 技术栈
|
||||
|
||||
* 后端:**`node.js`、 `midway.js`、`egg.js`、`mysql`、`typescript`**
|
||||
* 前端:**`vue.js`、`element-ui`、`jsx`、`vuex`、`vue-router`**
|
||||
|
||||
如果你是前端,后端的这些技术选型对你是特别友好的,前端开发者可以较快速地上手。
|
||||
如果你是后端,Typescript的语法又跟java、php等特别类似,一切看起来也是那么得熟悉。
|
||||
|
||||
<!-- 在此次添加使用文档 -->
|
||||
## 演示
|
||||
[https://show.cool-admin.com](https://show.cool-admin.com)
|
||||
@ -117,7 +125,13 @@ import { DemoAppGoodsEntity } from '../../entity/goods';
|
||||
entity: DemoAppGoodsEntity
|
||||
})
|
||||
export class DemoAppGoodsController extends BaseController {
|
||||
|
||||
/**
|
||||
* 其他接口
|
||||
*/
|
||||
@Get('/other')
|
||||
async other() {
|
||||
return this.ok('hello, cool-admin!!!');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
@ -190,7 +190,7 @@ export class BaseSysUserService extends BaseService {
|
||||
}
|
||||
if (!_.isEmpty(param.password)) {
|
||||
param.password = md5(param.password);
|
||||
const userInfo = await this.ctx.repo.sys.User.findOne({ id: param.id });
|
||||
const userInfo = await this.baseSysUserEntity.findOne({ id: param.id });
|
||||
if (!userInfo) {
|
||||
throw new CoolCommException('用户不存在');
|
||||
}
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import { Provide } from '@midwayjs/decorator';
|
||||
import { Get, Provide } from '@midwayjs/decorator';
|
||||
import { CoolController, BaseController } from 'midwayjs-cool-core';
|
||||
import { DemoAppGoodsEntity } from '../../entity/goods';
|
||||
|
||||
@ -11,5 +11,11 @@ import { DemoAppGoodsEntity } from '../../entity/goods';
|
||||
entity: DemoAppGoodsEntity,
|
||||
})
|
||||
export class DemoAppGoodsController extends BaseController {
|
||||
|
||||
/**
|
||||
* 其他接口
|
||||
*/
|
||||
@Get('/other')
|
||||
async other() {
|
||||
return this.ok('hello, cool-admin!!!');
|
||||
}
|
||||
}
|
||||
|
||||
154
uni.md
Executable file
154
uni.md
Executable file
@ -0,0 +1,154 @@
|
||||

|
||||
|
||||
  
|
||||
|
||||
|
||||
## 技术栈
|
||||
|
||||
* 后端:**`node.js`、 `midway.js`、`egg.js`、`mysql`、`typescript`**
|
||||
* 前端:**`vue.js`、`element-ui`、`jsx`、`vuex`、`vue-router`**
|
||||
|
||||
如果你是前端,后端的这些技术选型对你是特别友好的,前端开发者可以较快速地上手。
|
||||
如果你是后端,Typescript的语法又跟java、php等特别类似,一切看起来也是那么得熟悉。
|
||||
|
||||
<!-- 在此次添加使用文档 -->
|
||||
## 演示
|
||||
[https://show.cool-admin.com](https://show.cool-admin.com)
|
||||
|
||||
* 账户:admin
|
||||
* 密码:123456
|
||||
|
||||

|
||||
#### 文档
|
||||
[https://admin.cool-js.com](https://admin.cool-js.com)
|
||||
|
||||
#### 项目前端
|
||||
|
||||
[https://github.com/cool-team-official/cool-admin-vue](https://github.com/cool-team-official/cool-admin-vue)
|
||||
|
||||
## QQ群
|
||||
2群:539478405
|
||||
|
||||
## 微信群
|
||||
|
||||

|
||||
|
||||
## 微信公众号
|
||||
|
||||

|
||||
|
||||
|
||||
## 运行
|
||||
|
||||
#### 修改数据库配置,配置文件位于`src/config/config.local.ts`
|
||||
|
||||
数据库为mysql(`>=5.7版本`),首次启动会自动初始化并导入数据
|
||||
|
||||
```js
|
||||
config.orm = {
|
||||
type: 'mysql',
|
||||
host: '127.0.0.1',
|
||||
port: 3306,
|
||||
username: 'root',
|
||||
password: '',
|
||||
database: 'cool-admin',
|
||||
synchronize: true,
|
||||
logging: true,
|
||||
}
|
||||
```
|
||||
|
||||
#### 安装依赖并运行
|
||||
|
||||
```bash
|
||||
$ npm i
|
||||
$ npm run dev
|
||||
$ open http://localhost:8001/
|
||||
```
|
||||
|
||||
注: 如果你的网络不佳可以尝试使用[cnpm](https://developer.aliyun.com/mirror/NPM?from=tnpm),或者切换您的镜像源
|
||||
|
||||
## CURD(快速增删改查)
|
||||
|
||||
大部分的后台管理系统,或者API服务都是对数据进行管理,所以可以看到大量的CRUD场景(增删改查),cool-admin对此进行了大量地封装,让这块的编码量变得极其地少。
|
||||
|
||||
|
||||
#### 新建一个数据表
|
||||
|
||||
`src/modules/demo/entity/goods.ts`,项目启动数据库会自动创建该表,无需手动创建
|
||||
|
||||
```ts
|
||||
import { EntityModel } from '@midwayjs/orm';
|
||||
import { BaseEntity } from 'midwayjs-cool-core';
|
||||
import { Column } from 'typeorm';
|
||||
|
||||
/**
|
||||
* 商品
|
||||
*/
|
||||
@EntityModel('demo_app_goods')
|
||||
export class DemoAppGoodsEntity extends BaseEntity {
|
||||
|
||||
@Column({ comment: '标题' })
|
||||
title: string;
|
||||
|
||||
@Column({ comment: '图片' })
|
||||
pic: string;
|
||||
|
||||
@Column({ comment: '价格', type: 'decimal', precision: 5, scale: 2 })
|
||||
price: number;
|
||||
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
#### 编写api接口
|
||||
|
||||
`src/modules/demo/controller/app/goods.ts`,快速编写6个api接口
|
||||
|
||||
```ts
|
||||
import { Provide } from '@midwayjs/decorator';
|
||||
import { CoolController, BaseController } from 'midwayjs-cool-core';
|
||||
import { DemoAppGoodsEntity } from '../../entity/goods';
|
||||
|
||||
/**
|
||||
* 商品
|
||||
*/
|
||||
@Provide()
|
||||
@CoolController({
|
||||
api: ['add', 'delete', 'update', 'info', 'list', 'page'],
|
||||
entity: DemoAppGoodsEntity
|
||||
})
|
||||
export class DemoAppGoodsController extends BaseController {
|
||||
/**
|
||||
* 其他接口
|
||||
*/
|
||||
@Get('/other')
|
||||
async other() {
|
||||
return this.ok('hello, cool-admin!!!');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
这样我们就完成了6个接口的编写,对应的接口如下:
|
||||
|
||||
- `POST /app/demo/goods/add` 新增
|
||||
- `POST /app/demo/goods/delete` 删除
|
||||
- `POST /app/demo/goods/update` 更新
|
||||
- `GET /app/demo/goods/info` 单个信息
|
||||
- `POST /app/demo/goods/list` 列表信息
|
||||
- `POST /app/demo/goods/page` 分页查询(包含模糊查询、字段全匹配等)
|
||||
|
||||
|
||||
### 部署
|
||||
|
||||
```bash
|
||||
$ npm start
|
||||
$ npm stop
|
||||
```
|
||||
|
||||
### 内置指令
|
||||
|
||||
- 使用 `npm run lint` 来做代码风格检查。
|
||||
- 使用 `npm test` 来执行单元测试。
|
||||
|
||||
|
||||
[midway]: https://midwayjs.org
|
||||
Loading…
x
Reference in New Issue
Block a user