`审查人:白占宁`
`被审核代码负责人:欧阳德才`
`代码地址:https://192.168.1.240:8443/svn/repos/diaisi-quxian`
#### 1、缺少必要的注释(已修改)
很多JS文件里面一句注释都没有,差评!!!
#### 2、mock URL不符合规范(已修改)
文件路径:`mock/index.js`
```
import Map from './map'
import Time from './time'
```
建议统一添加`fetch`前缀。
#### 3、原生DOM方法与jQuery混用(已修改)
文件路径:`components/time/index.js`
```
const div = document.createElement('div')
div.setAttribute('class','time')
$(el).append(div)
```
统一使用jQuery的方式,避免原生方法和jQuery混用。
#### 4、不符合基本的JS规范(已修改)
```
import {fetch} from '@/util/request'
import './index.css'
const mapConfig = {
height: 1600,
width: 1700,
scaleTimes: 50
}
class Map{
constructor(el){
this.Jiulongpo = new Jiulongpo(el, mapConfig)
}
render(){
fetch('Map', data => {
this.Jiulongpo.render(data)
})
}
}
```
以上代码不规范的地方如下:
- `{ }`两边没有留空格;
- `import`、变量定义和类定义之间没有留空行;
- 缩进不对,建议使用2个空格缩进,添加eslint检测;
- `render(){`方法定义和`{`之间差个空格。
#### 5、代码可读性差(已修改)
```
{startAngle: 0, endAngle: percent * 2 * Math.PI, innerRadius: 69, outerRadius: 75},
{startAngle: percent == 1 ? 0 : (percent + 0.01) * 2 * Math.PI, endAngle: percent == 1 ? 0 : 1.98 * Math.PI, innerRadius: 70, outerRadius: 74}
```
建议每行不超过120个字符。
#### 6、这个什么操作?(已修改)
```
(
function repeat() {
$('.important-into .case-list').css('top',$('.case-info').outerHeight() + 'px')
$('.important-into .case-list').animate({ 'top' : -ulHeight + 'px'}, liCount * 5000, 'linear', repeat)
}()
)
```
#### 7、图表组件结构不对(已修改)
```
export default class CasePie{
constructor(config){
this.config = config
this.arcPath = d3.svg.arc()
}
```
容器与配置项分离,所有图表组件提供默认配置项。
#### 8、可优化的代码(已修改)
```
.attr('transform', 'translate(' + this.config.centroid.x + ', ' + this.config.centroid.y + ')')
.attr('fill', (d, i) => {
return this.config.fill[i]
})
.attr('stroke', this.config.stroke)
```
以上代码存在的问题:
- 使用字符串模板代替字符串拼接;
- `return`后只有一句时可以简写,省略`{}`和`return`;
- 先定义`fill`、`stroke`等变量,不要到处都是`this.config.xxx`。
#### 9、方法定义位置不对(已修改)
```
// 获取地图缩放比例
this.getZoomScale = function (features, width, height) {
```
各个实例可以复用的方法定义到原型上,不要定义到构造方法里面。
#### 10、复用性及可扩展性体现在哪里?
如果有另外一个区县,和现在的样式很类似,如何用现有的代码快速开发出来,并且修改的地方很少?
- 1、执法项目
- 1.1 20170523-张红桥
- 1.2 20170523-李伟
- 2、运维项目
- 2.1 20170527-欧阳德才
- 2.2 20170613-尹帮会&欧阳德才
- 2.3 20170706-欧阳德才
- 2.4 20170706-尹帮会
- 3、指挥大屏项目
- 3.1 20170712-欧阳德才
- 4、PC端项目
- 4.1 20170516-张红桥
- 5、万达项目
- 5.1 20170619-李伟&舒曼
- 5.2 20170623-李伟&舒曼
- 5.3 20170803-李伟(未修改)
- 5.4 20170811-李伟(未修改)
- 6、可视化组件
- 6.1 20170718-张红桥
- 7、UI组件
- 7.1 20170522-舒曼
- 8、新员工练习项目
- 8.1 20170401-欧阳德才
- 8.2 20170401-舒曼
- 8.3 20170503-舒曼
- 8.4 20170609-刘黎
- 8.5 20170620-刘黎
- 8.6 20170703-谢洋
- 8.7 20170706-孙雨珩
- 8.8 20170706-谢洋
- 8.9 20170711-谢洋
- 8.10 20170724-谢洋
- 8.11 20170908-谭俊
- 8.12 20171026-廖爽
- 8.13 20171027-廖爽
- 8.14 20171027-廖爽
- 8.15 20171031-廖爽
- 8.16 20171103-覃英琪
- 8.17 20171103-01-廖爽
- 8.18 20171103-02-廖爽
- 8.19 20171110-赵家红
- 8.20 20171110-覃英琪
- 8.21 20171110-02-赵家红
- 8.22 20171115-01-廖爽
- 8.23 20171127-赵家红
- 8.24 20171122-李祁
- 8.25 20180528-吴泓江
- 9、资源监控大屏
- 9.1 20170705-舒曼
- 9.2 20170711-舒曼
- 9.3 20170724-舒曼
- 10、CQ指挥舱
- 10.1 20170906-张红桥&李伟&谢洋
- 11、昆明
- 11.1 20171009-李伟&舒曼
- 12、情报墙
- 12.1 20171025-谢洋
- 13、动态管控
- 14、迪爱斯区县
- 14.1 20171128-欧阳德才
- 15、贵州块数据指挥调度平台
- 16、北京东城区可视化项目
- 16.1 20180425-欧阳德才&谢洋
- 16.2 20180510-谢洋