Skip to content

Commit

Permalink
fix: fix quard issue
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Mar 26, 2020
1 parent dea214f commit 780d3c9
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 9 deletions.
8 changes: 4 additions & 4 deletions src/app/shared/support/chart-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,15 +233,15 @@ function buildQuadrantChartOption(data) {
name: 'left',
value: 50,
children: [
data.children[0],
data.children[1]
data.children[3],
data.children[2]
]
}, {
name: 'right',
value: 50,
children: [
data.children[2],
data.children[3]
data.children[1],
data.children[0]
]
}];

Expand Down
8 changes: 4 additions & 4 deletions src/assets/docs/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,18 +187,18 @@ Path to Production,来源于精益,旨在通过可视化的方式来展示

```quadrant
- 技术债墙
- 暂时不管
- 快速解决
- ……
- ……
- ……
- 在可能的时候提升
- 分解并计划
- ……
- ……
- 分解并计划
- ……
- 在可能的时候提升
- ……
- ……
- 快速解决
- 暂时不管
- ……
- ……
- ……
Expand Down
27 changes: 26 additions & 1 deletion src/assets/docs/practise.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@ Note
- 潜力无限
```

### 开发人员移情图

```
```

## 团队变革

## 组织变革
Expand Down Expand Up @@ -316,7 +322,9 @@ aka Deployment process as code

- Dockerfile

### Docs like Code
### 文档代码化

#### 文档代码化

> Docs like Code(文档代码化),是指采用开发软件的方式来开发文档,最后表现出文档和代码类似的现象。
Expand All @@ -338,6 +346,23 @@ aka Deployment process as code

-[【架构拾集】基于 Markdown 文档展示系统设计](https://www.phodal.com/blog/architecture-in-realworld-markdown-based-document-system-design/)


#### 架构文档化

```quadrant
- 选择架构描述方法
- 正式
- 能不到这里就不到
- 徒劳
- 回避这里
- 社区
- 演进到这里
- 部落
- 从这里开始
config: {"left": "易于分享", "right": "难以分享", "bottom": "难以变更", "top": "易于变更"}
```

## 4. 实例化需求

# 缩短反馈
Expand Down

0 comments on commit 780d3c9

Please sign in to comment.