重点认证标准/政策合规性项目审查流程 风险项入库
This commit is contained in:
@@ -71,10 +71,15 @@
|
||||
prop="implTime"
|
||||
sortable="custom"
|
||||
align="center"
|
||||
width="120"
|
||||
width="155"
|
||||
label="实施日期">
|
||||
<template slot-scope="scope">
|
||||
<el-input style="margin: 10px 0;" v-model="scope.row.implTime"></el-input>
|
||||
<el-date-picker
|
||||
v-model="scope.row.implTime"
|
||||
style="width: 130px"
|
||||
type="date"
|
||||
placeholder="选择日期">
|
||||
</el-date-picker>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
@@ -111,10 +116,16 @@
|
||||
prop="sopTime"
|
||||
sortable="custom"
|
||||
align="center"
|
||||
width="120"
|
||||
width="155"
|
||||
label="SOP时间">
|
||||
<template slot-scope="scope">
|
||||
<el-input style="margin: 10px 0;" v-model="scope.row.sopTime"></el-input>
|
||||
<el-date-picker
|
||||
value-format="yyyy-MM-dd"
|
||||
v-model="scope.row.sopTime"
|
||||
style="width: 130px"
|
||||
type="date"
|
||||
placeholder="选择日期">
|
||||
</el-date-picker>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
|
||||
@@ -107,6 +107,18 @@
|
||||
width="400"
|
||||
label="SOP时间超过法规时限的空档期的业务应对方案">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="isRisk"
|
||||
align="center"
|
||||
width="120"
|
||||
label="是否是风险项">
|
||||
<template slot-scope="scope">
|
||||
<el-select style="margin: 10px 0;" v-model="scope.row.isRisk" size="small" placeholder="请选择">
|
||||
<el-option label="是" value="1"></el-option>
|
||||
<el-option label="否" value="0"></el-option>
|
||||
</el-select>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<!--这个div是产品规划部信息-->
|
||||
@@ -431,8 +443,12 @@ export default {
|
||||
handleSubmit() {
|
||||
this.$refs["zdrzbzORzchgxxmscForm"].validate((valid) => {
|
||||
if (valid) {
|
||||
let infoTableDatas = []
|
||||
infoTableDatas = JSON.stringify(this.infoTableDatas)
|
||||
this.isSubmit = true;
|
||||
localStorage.setItem('infoTableDatas', JSON.stringify(this.infoTableDatas))
|
||||
var json = this.json;
|
||||
json.infoTableDatas = infoTableDatas
|
||||
json.commentText = this.commentText;
|
||||
json.responUserList = this.form.responUserList;
|
||||
json.responUserListName = this.form.responUserListName;
|
||||
|
||||
@@ -107,6 +107,12 @@
|
||||
width="400"
|
||||
label="SOP时间超过法规时限的空档期的业务应对方案">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="isRiskShow"
|
||||
align="center"
|
||||
width="120"
|
||||
label="是否是风险项">
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<!--这个div是产品规划部信息-->
|
||||
@@ -487,7 +493,14 @@ export default {
|
||||
}
|
||||
let data = JSON.parse(res.mesg)
|
||||
this.infoTableDatas = JSON.parse(data.infoTableDatas)
|
||||
this.form.cid = data.cid
|
||||
console.log('490',this.infoTableDatas)
|
||||
for (let i = 0; i < this.infoTableDatas.length; i++) {
|
||||
if (this.infoTableDatas[i].isRisk === "1"){
|
||||
this.infoTableDatas[i].isRiskShow = '是'
|
||||
}else {
|
||||
this.infoTableDatas[i].isRiskShow = '否'
|
||||
}
|
||||
}
|
||||
this.form.endTime = data.endTime
|
||||
this.form.cname = data.cname
|
||||
this.form.fjList = data.fjList
|
||||
|
||||
@@ -107,6 +107,12 @@
|
||||
width="400"
|
||||
label="SOP时间超过法规时限的空档期的业务应对方案">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="isRiskShow"
|
||||
align="center"
|
||||
width="120"
|
||||
label="是否是风险项">
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<!--这个div是产品规划部信息-->
|
||||
@@ -434,11 +440,25 @@ export default {
|
||||
this.$refs["zdrzbzORzchgxxmscForm"].validate((valid) => {
|
||||
if (valid) {
|
||||
this.isSubmit = true;
|
||||
let infoTableDatas = []
|
||||
infoTableDatas = JSON.stringify(this.infoTableDatas)
|
||||
localStorage.setItem('infoTableDatas', JSON.stringify(this.infoTableDatas))
|
||||
var json = this.json;
|
||||
json.feedbackDept = this.feedbackDept
|
||||
console.log('448',json.feedbackDept)
|
||||
json.commentText = this.commentText;
|
||||
json.infoTableDatas = infoTableDatas
|
||||
json.responUserList = this.form.responUserList;
|
||||
json.responUserListName = this.form.responUserListName;
|
||||
json.introduce = false;
|
||||
this.$http.postData("policy/activiti/enterIssue",{
|
||||
json: JSON.stringify(json),
|
||||
taskId: this.taskIds,
|
||||
userId: this.$store.getters.userInfo.userId
|
||||
},{},res=> {
|
||||
console.log('455',res)
|
||||
this.isSubmit = false;
|
||||
});
|
||||
this.$http.post("lawss/activiti/completeTask", {
|
||||
json: JSON.stringify(json),
|
||||
taskId: this.taskIds,
|
||||
@@ -487,7 +507,14 @@ export default {
|
||||
}
|
||||
let data = JSON.parse(res.mesg)
|
||||
this.infoTableDatas = JSON.parse(data.infoTableDatas)
|
||||
this.form.cid = data.cid
|
||||
console.log('490',data)
|
||||
for (let i = 0; i < this.infoTableDatas.length; i++) {
|
||||
if (this.infoTableDatas[i].isRisk === "1"){
|
||||
this.infoTableDatas[i].isRiskShow = '是'
|
||||
}else {
|
||||
this.infoTableDatas[i].isRiskShow = '否'
|
||||
}
|
||||
}
|
||||
this.form.endTime = data.endTime
|
||||
this.form.cname = data.cname
|
||||
this.form.fjList = data.fjList
|
||||
|
||||
@@ -1075,7 +1075,7 @@ export default {
|
||||
}
|
||||
})
|
||||
}
|
||||
else if(row.taskInfo === '法规认证部副总监批准'){
|
||||
else if(row.taskInfo === '法规认证部副总监审定'){
|
||||
this.$router.push({
|
||||
name: 'zdrzbzORzchgxxmscStep9',
|
||||
query: {
|
||||
|
||||
Reference in New Issue
Block a user