Commit 8044bf00 authored by 周远喜's avatar 周远喜

ok

parent 9537973d
...@@ -262,9 +262,17 @@ export default { ...@@ -262,9 +262,17 @@ export default {
}, },
columns12: [ columns12: [
{ title: "序号", type: "index", width: "70", align: "center" }, { title: "序号", type: "index", width: "70", align: "center" },
{ title: "参数名称", key: "check_params" }, { title: "参数名称", key: "check_params" , tooltip: true },
{ title: "检验类型", key: "check_type" }, { title: "检验类型", key: "inspect_type" ,render(h,params) {
{ title: "汇报类型", key: "fillintype" },
return h("state",{
props:{
code:"QC.checktype",
value:params.row.inspect_type
}
})
},},
{ title: "汇报类型", key: "fillintype_str",width:100 },
{ title: "标准指标", key: "standard" }, { title: "标准指标", key: "standard" },
{ title: "生产要求", key: "production_requirement", tooltip: true }, { title: "生产要求", key: "production_requirement", tooltip: true },
{ title: "检测内容", key: "check_content", tooltip: true }, { title: "检测内容", key: "check_content", tooltip: true },
...@@ -340,11 +348,13 @@ export default { ...@@ -340,11 +348,13 @@ export default {
{ {
title: "是否拍照", title: "是否拍照",
key: "isPhotograph", key: "isPhotograph",
width:100,
slot: "isPhotograph" slot: "isPhotograph"
}, },
{ {
title: "模板", title: "模板",
key: "qualityTemplate", key: "qualityTemplate",
width:80,
render: (h, params) => { render: (h, params) => {
return h( return h(
"div", "div",
...@@ -659,7 +669,6 @@ export default { ...@@ -659,7 +669,6 @@ export default {
this.$refs.usercard.loadentry(this.entryModel, fillModel, recordList); this.$refs.usercard.loadentry(this.entryModel, fillModel, recordList);
}, },
selfchecklistcheck(index, e) { selfchecklistcheck(index, e) {
alert(e);
this.recorddata[index].selfchecklist.checkstatus = e; this.recorddata[index].selfchecklist.checkstatus = e;
this.recorddata[index].selfchecklist.fill_in_content = e ? "1" : "0"; this.recorddata[index].selfchecklist.fill_in_content = e ? "1" : "0";
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment