Commit 2c56ca27 authored by 周远喜's avatar 周远喜

ok

parent ba1fbb07
......@@ -35,7 +35,7 @@
<Dictionary code="message.config.status" v-model="entity.status" type="radio"></Dictionary>
</FormItem>
</Col>
<Col :span="12">
<!-- <Col :span="12">
<FormItem :label="l('isInner')" prop="isInner">
<Dictionary code="message.config.isInner" v-model="entity.isInner" type="radio"></Dictionary>
</FormItem>
......@@ -44,7 +44,7 @@
<FormItem :label="l('isEmail')" prop="isEmail">
<Dictionary code="message.config.isInner" v-model="entity.isEmail" type="radio"></Dictionary>
</FormItem>
</Col>
</Col> -->
<Col :span="12">
<FormItem :label="l('title')" prop="title">
<Input v-model="entity.title"></Input>
......
......@@ -35,7 +35,7 @@
<Dictionary code="message.config.status" v-model="entity.status" type="radio"></Dictionary>
</FormItem>
</Col>
<Col :span="12">
<!-- <Col :span="12">
<FormItem :label="l('isInner')" prop="isInner">
<Dictionary code="message.config.isInner" v-model="entity.isInner" type="radio"></Dictionary>
</FormItem>
......@@ -44,7 +44,7 @@
<FormItem :label="l('isEmail')" prop="isEmail">
<Dictionary code="message.config.isInner" v-model="entity.isEmail" type="radio"></Dictionary>
</FormItem>
</Col>
</Col> -->
<Col :span="12">
<FormItem :label="l('title')" prop="title">
<Input v-model="entity.title"></Input>
......
......@@ -55,30 +55,30 @@ export default {
high: true,
},
{
key: "creationTime",
title: this.l("creationTime"),
align: "left",
high: true,
},
{
key: "creatorUserId",
title: this.l("creatorUserId"),
align: "left",
high: true,
},
{
key: "lastModificationTime",
title: this.l("lastModificationTime"),
align: "left",
high: true,
},
{
key: "lastModifierUserId",
title: this.l("lastModifierUserId"),
align: "left",
high: true,
},
// {
// key: "creationTime",
// title: this.l("creationTime"),
// align: "left",
// high: true,
// },
// {
// key: "creatorUserId",
// title: this.l("creatorUserId"),
// align: "left",
// high: true,
// },
// {
// key: "lastModificationTime",
// title: this.l("lastModificationTime"),
// align: "left",
// high: true,
// },
// {
// key: "lastModifierUserId",
// title: this.l("lastModifierUserId"),
// align: "left",
// high: true,
// },
// {
// key: "isDeleted",
// title: this.l("isDeleted"),
......@@ -101,12 +101,14 @@ export default {
key: "code",
title: this.l("code"),
align: "left",
width:200,
easy: true,
high: true,
},
{
key: "categoryName",
title: this.l("categoryName"),
width:200,
align: "left",
easy: true,
high: true,
......@@ -147,28 +149,29 @@ export default {
// easy: true,
// high: true,
// },
{
key: "isInner",
title: this.l("isInner"),
align: "left",
high: true,
render: (h, params) => {
return h("span", {}, params.row.isInner == 1 ? "是" : "否");
},
},
{
key: "isEmail",
title: this.l("isEmail"),
align: "left",
high: true,
render: (h, params) => {
return h("span", {}, params.row.isEmail == 1 ? "是" : "否");
},
},
// {
// key: "isInner",
// title: this.l("isInner"),
// align: "left",
// high: true,
// render: (h, params) => {
// return h("span", {}, params.row.isInner == 1 ? "是" : "否");
// },
// },
// {
// key: "isEmail",
// title: this.l("isEmail"),
// align: "left",
// high: true,
// render: (h, params) => {
// return h("span", {}, params.row.isEmail == 1 ? "是" : "否");
// },
// },
{
key: "status",
title: this.l("status"),
align: "left",
align: "center",
width:100,
high: true,
render: (h, params) => {
return h("span", {}, params.row.status == 1 ? "启用" : "禁用");
......
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