Commit 4a885c47 authored by renjintao's avatar renjintao

indexindex

parent 02bd0363
...@@ -53,69 +53,76 @@ export default { ...@@ -53,69 +53,76 @@ export default {
hide: true, hide: true,
align: "left", align: "left",
high: true, high: true,
},
{
key: "name",
title: this.l("name"),
align: "left",
easy: true,
high: true,
}, },
{ {
key: "creationTime", key: "creationTime",
title: this.l("creationTime"), title: this.l("creationTime"),
align: "left", align: "left",
high: true, high: true,
},
{
key: "status",
title: this.l("status"),
align: "left",
high: true,
code: "mes.import_center.Status",
}, },
{ {
key: "creatorUserId", key: "creatorUserId",
title: this.l("creatorUserId"), title: this.l("creatorUserId"),
align: "left", align: "left",
high: true, high: true,
type:"user"
}, },
{ {
key: "lastModificationTime", key: "lastModificationTime",
title: this.l("lastModificationTime"), title: this.l("lastModificationTime"),
align: "left", align: "left",
high: true, high: true,
hide: true,
}, },
{ {
key: "lastModifierUserId", key: "lastModifierUserId",
title: this.l("lastModifierUserId"), title: this.l("lastModifierUserId"),
align: "left", align: "left",
high: true, high: true,
hide: true,
}, },
{ {
key: "isDeleted", key: "isDeleted",
title: this.l("isDeleted"), title: this.l("isDeleted"),
align: "left", align: "left",
high: true, high: true,
hide: true,
}, },
{ {
key: "deletionTime", key: "deletionTime",
title: this.l("deletionTime"), title: this.l("deletionTime"),
align: "left", align: "left",
high: true, high: true,
hide: true,
}, },
{ {
key: "deleterUserId", key: "deleterUserId",
title: this.l("deleterUserId"), title: this.l("deleterUserId"),
align: "left", align: "left",
high: true, high: true,
hide: true,
}, },
{ key: "creator", title: this.l("creator"), align: "left", high: true }, { key: "creator", title: this.l("creator"), align: "left", high: true,hide: true, },
{ {
key: "lastModifier", key: "lastModifier",
title: this.l("lastModifier"), title: this.l("lastModifier"),
align: "left", align: "left",
high: true, high: true,
}, hide: true,
{
key: "name",
title: this.l("name"),
align: "left",
easy: true,
high: true,
},
{
key: "status",
title: this.l("status"),
align: "left",
high: true,
code: "mes.import_center.Status",
}, },
{ {
title: "操作", title: "操作",
...@@ -133,21 +140,21 @@ export default { ...@@ -133,21 +140,21 @@ export default {
"查看" "查看"
), ),
//h('op', { attrs: { oprate: 'copy' }, on: { click: () => this.copy(params.row.id) } }, '克隆'), //h('op', { attrs: { oprate: 'copy' }, on: { click: () => this.copy(params.row.id) } }, '克隆'),
h( // h(
"op", // "op",
{ // {
attrs: { oprate: "edit" }, // attrs: { oprate: "edit" },
on: { click: () => this.edit(params.row.id) }, // on: { click: () => this.edit(params.row.id) },
}, // },
"编辑" // "编辑"
), // ),
h( h(
"op", "op",
{ {
attrs: { oprate: "delete" }, attrs: { oprate: "delete" },
on: { click: () => this.remove(params.row.id) }, on: { click: () => this.remove(params.row.id) },
}, },
"删除" "处理"
), ),
]); ]);
}, },
......
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