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

ok

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