优化风险功能、文档说明

This commit is contained in:
陈裕财
2025-04-16 18:18:01 +08:00
parent 115279de0e
commit 9cd7420053
5 changed files with 22 additions and 6 deletions

View File

@@ -288,8 +288,13 @@
![项目立项](/docs/images/xm-zs/xm-zs-16-xnfx.png)
### 风险管理
![kpi](/docs/images/xm-zs/xm-zs-risk-list.png)
![kpi](/docs/images/xm-zs/xm-zs-risk-edit.png)
![kpi](/docs/images/xm-zs/xm-zs-risk-fenxi.png)
### kpi、okr等绩效类管理
![kpi](/docs/images/xm-zs/xm-zs-kpi-list.png)
![kpi](/docs/images/xm-zs/xm-zs-kpi-edit.png)
![kpi](/docs/images/xm-zs/xm-zs-kpi-fenxi.png)
### 人效趋势分析
![项目立项](/docs/images/xm-zs/xm-zs-16-rxfx-trend.png)

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

View File

@@ -151,12 +151,12 @@
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="建立时间" prop="ctime">
<el-form-item label="建立时间" prop="ctime" v-if="currOpType!='add'">
<mdp-date type="date" width="100%" placeholder="选择日期" v-model="editForm.ctime" value-format="YYYY-MM-DD HH:mm:ss" format="YYYY-MM-DD" @change="editSomeFields(editForm,'ctime',$event)" :disabled="disField"/>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="解除时间" prop="closeTime">
<el-form-item label="解除时间" prop="closeTime" v-if="currOpType!='add'">
<mdp-date type="date" width="100%" placeholder="选择日期" v-model="editForm.closeTime" value-format="YYYY-MM-DD HH:mm:ss" format="YYYY-MM-DD" @change="editSomeFields(editForm,'closeTime',$event)" :disabled="disField"/>
</el-form-item>
</el-col>
@@ -166,10 +166,10 @@
</el-form-item>
<el-form-item label="应对措施" prop="rway">
<mdp-input type="textarea" rows="4" width="100%" v-model="editForm.rway" placeholder="应对措施" :maxlength="255" @change="editSomeFields(editForm,'rway',$event)" :disabled="disField"/>
</el-form-item>
</el-form-item>
</el-form>
<div class="footer" v-if="currOpType=='add'" @click="saveSubmit"><el-button type="primary" icon="finished">提交</el-button></div>
</el-tab-pane>
<el-tab-pane label="进展" name="comment" v-if="currOpType!='add'">
<xm-comment-area v-if="currTabName=='comment'" :biz-id="editForm.id" :pbiz-id="editForm.projectId" obj-type="R"/>
@@ -210,6 +210,14 @@ export default {
xmProject:{
type: Object,
default:()=>null
},
xmProduct:{
type: Object,
default:()=>null
},
xmCollect:{
type: Object,
default:()=>null
}
},
data() {
@@ -236,7 +244,7 @@ export default {
],
},
editForm: {
id:'',name:'',rtype:'',odds:'',impact:'',rstatus:'',rlvl:'',remark:'',rsgy:'',rway:'',ruserid:'',rusername:'',ctime:'',closeTime:'',deptid:'',branchId:'',projectId:'',cuserid:'',cusername:''
id:'',name:'',rtype:'1',odds:'1',impact:'1',rstatus:'1',rlvl:'1',remark:'',rsgy:'1',rway:'',ruserid:'',rusername:'',ctime:'',closeTime:'',deptid:'',branchId:'',projectId:'',cuserid:'',cusername:''
},
//增删改查(含批量)接口
apis:{
@@ -258,6 +266,9 @@ export default {
}else{
this.editForm.projectId=null
}
this.editForm.ruserid=this.userInfo.userid
this.editForm.rusername=this.userInfo.username
this.editForm.deptid=this.userInfo.deptid
}
},