mirror of
https://gitee.com/maimengcloud/xm-ui-web.git
synced 2025-12-30 02:02:26 +00:00
优化风险功能、文档说明
This commit is contained in:
@@ -288,8 +288,13 @@
|
||||

|
||||
|
||||
### 风险管理
|
||||
|
||||

|
||||

|
||||

|
||||
### kpi、okr等绩效类管理
|
||||

|
||||

|
||||

|
||||
|
||||
### 人效趋势分析
|
||||

|
||||
|
||||
BIN
docs/images/xm-zs/xm-zs-risk-edit.png
Normal file
BIN
docs/images/xm-zs/xm-zs-risk-edit.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 142 KiB |
BIN
docs/images/xm-zs/xm-zs-risk-fenxi.png
Normal file
BIN
docs/images/xm-zs/xm-zs-risk-fenxi.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 195 KiB |
BIN
docs/images/xm-zs/xm-zs-risk-list.png
Normal file
BIN
docs/images/xm-zs/xm-zs-risk-list.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 136 KiB |
@@ -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
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user