39 lines
1.7 KiB
Markdown
39 lines
1.7 KiB
Markdown
# History版本管理
|
||
|
||
> 绩效系统业务端相关代码库
|
||
> > 测试环境各自分支(多需求开发完成统一合并dev_public);预发环境合并dev;线上环境合并master;线上保护分支master_lock(上一次发布的内容)
|
||
|
||
| version | time | author | desc |
|
||
| ------- | ---- | ------ | ---- |
|
||
| V1.1.2 | | zhujida | 1.新增指标库; |
|
||
| V1.1.1 | 2021-1-13 | wulin | 1.审批自动跳转到下一待办文案修改为:提交成功,即将自动打开下一条待办;2.目标提交后没有审批可撤回;3.结果提交后没有评分客撤回;4.驳回可选驳回到指定节点,驳回理由必填;5.设定考评组时,评分环节可配置哪些评分需要填写评分理由;6.绩效评分环节指定必须填写的评分理由必填(已发起的绩效无此功能,新发起的绩效,且在考评组设置了相关配置将生效。参考功能:5);7.绩效总分小数点四舍五入至后两位 |
|
||
| V1.1.0 | 2020-12-18 | xiongchengqiang | 1.考核管理详情、多人评分等需求优化; |
|
||
| V1.0.0 | 2020-12-08 | xiongchengqiang、zhujida、yuyumin | 1.工作台:新建考评组、发起考核;2.考核管理;3.绩效报表;4.设置 |
|
||
|
||
## 开始使用
|
||
|
||
``` bash
|
||
# install dependencies
|
||
npm install
|
||
|
||
# serve with hot reload at localhost:8080
|
||
npm run dev
|
||
|
||
# build for production with minification
|
||
npm run build
|
||
|
||
# build for production and view the bundle analyzer report
|
||
npm run build --report
|
||
|
||
# run unit tests
|
||
npm run unit
|
||
|
||
# run e2e tests
|
||
npm run e2e
|
||
|
||
# run all tests
|
||
npm test
|
||
```
|
||
|
||
For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).
|