|
|
@ -62,7 +62,8 @@ |
|
|
|
header-align="center" |
|
|
|
header-align="center" |
|
|
|
:header-cell-style="headClass" |
|
|
|
:header-cell-style="headClass" |
|
|
|
> |
|
|
|
> |
|
|
|
<el-table-column prop="indexNo" label="序号" width="80"></el-table-column> |
|
|
|
<el-table-column prop="indexNo" type="index" label="序号" width="80"> |
|
|
|
|
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="流程判分正确答案"> |
|
|
|
<el-table-column label="流程判分正确答案"> |
|
|
|
<template slot-scope="scope" v-if="scope.row.isSubject"> |
|
|
|
<template slot-scope="scope" v-if="scope.row.isSubject"> |
|
|
|
<p class="p">操作一致性规则:用户完成的功能操作与下方设置的操作点一致</p> |
|
|
|
<p class="p">操作一致性规则:用户完成的功能操作与下方设置的操作点一致</p> |
|
|
@ -708,15 +709,22 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
handleDelete(row, index) { // 处理删除规则 |
|
|
|
handleDelete(row, index) { // 处理删除规则 |
|
|
|
|
|
|
|
|
|
|
|
this.$confirm("此操作将永久删除该规则, 是否继续?", "提示", { |
|
|
|
this.$confirm("此操作将永久删除该规则, 是否继续?", "提示", { |
|
|
|
confirmButtonText: "确定", |
|
|
|
confirmButtonText: "确定", |
|
|
|
cancelButtonText: "取消", |
|
|
|
cancelButtonText: "取消", |
|
|
|
type: "warning", |
|
|
|
type: "warning", |
|
|
|
center: true |
|
|
|
center: true |
|
|
|
}).then(() => { |
|
|
|
}).then(() => { |
|
|
|
this.tableData.splice(index, 1); |
|
|
|
console.log(this.tableData) |
|
|
|
index ? this.tableData.splice(index - 1, 1) : this.tableData.splice(0, 1); |
|
|
|
console.log(index) |
|
|
|
this.isAddRule = false; |
|
|
|
console.log(this.tableData[0]) |
|
|
|
|
|
|
|
console.log(this.tableData.splice(index,2)) |
|
|
|
|
|
|
|
this.tableData.splice(index,2); |
|
|
|
|
|
|
|
console.log(this.tableData) |
|
|
|
|
|
|
|
// console.log() |
|
|
|
|
|
|
|
// index ? this.tableData.splice(index - 1, 1) : this.tableData.splice(0, 1); |
|
|
|
|
|
|
|
// this.isAddRule = false; |
|
|
|
}).catch(() => { |
|
|
|
}).catch(() => { |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
@ -745,13 +753,13 @@ export default { |
|
|
|
line-height: 45px; |
|
|
|
line-height: 45px; |
|
|
|
font-size: 14px; |
|
|
|
font-size: 14px; |
|
|
|
font-weight: 600; |
|
|
|
font-weight: 600; |
|
|
|
padding: 0 10px; |
|
|
|
//padding: 0 10px; |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
justify-content: space-between; |
|
|
|
|
|
|
|
|
|
|
|
.back { |
|
|
|
.back { |
|
|
|
line-height: 3; |
|
|
|
line-height: 3; |
|
|
|
padding-left: 10px; |
|
|
|
//padding-left: 10px; |
|
|
|
|
|
|
|
|
|
|
|
span { |
|
|
|
span { |
|
|
|
font-size: 14px; |
|
|
|
font-size: 14px; |
|
|
|