|
|
@@ -232,8 +232,7 @@ export default {
|
|
|
},
|
|
|
filterText: null,
|
|
|
showSearch: true,
|
|
|
- rule: null, //选中的内容库
|
|
|
- // orgOfRule:null,//选中内容库
|
|
|
+ rule: null, //选中的手册
|
|
|
expandAll: false,
|
|
|
fresh: true,
|
|
|
// checked: false,
|
|
|
@@ -325,7 +324,7 @@ export default {
|
|
|
},
|
|
|
async getList() {
|
|
|
if (!this.queryParams.ruleId) {
|
|
|
- this.$message.warning("请先选择一个检查内容库定义");
|
|
|
+ this.$message.warning("请先选择一个手册");
|
|
|
return;
|
|
|
}
|
|
|
this.loading = true;
|
|
|
@@ -348,13 +347,13 @@ export default {
|
|
|
this.rule = data;
|
|
|
this.rule.orgId = node.parent.data.id;
|
|
|
if (this.rule.status != 0) {
|
|
|
- this.$message.info("履职内容库已禁用,无法编辑履职项、履职内容");
|
|
|
+ this.$message.info("检查手册已禁用,无法编辑履职项、履职内容");
|
|
|
}
|
|
|
this.refresh();
|
|
|
},
|
|
|
deldata(val) {
|
|
|
this.$modal
|
|
|
- .confirm("确定删除检查内容库定义?")
|
|
|
+ .confirm("确定删除检查手册定义?")
|
|
|
.then(() => {
|
|
|
return del(val);
|
|
|
})
|
|
|
@@ -393,7 +392,7 @@ export default {
|
|
|
},
|
|
|
onAddItem() {
|
|
|
if (!this.rule) {
|
|
|
- this.$message.warning("请先选择检查内容库");
|
|
|
+ this.$message.warning("请先选择检查手册");
|
|
|
return;
|
|
|
}
|
|
|
this.$refs.dialogEdit.show(null);
|