优化消息模板模块

This commit is contained in:
zjl 2024-08-30 13:41:11 +08:00
parent 1ef5affebe
commit 19f3cdc025
2 changed files with 13 additions and 2 deletions

View File

@ -7,7 +7,12 @@ export const columns = [
},
{
label: 'ID',
prop: 'id'
prop: 'id',
width: 100,
},
{
label: '模板编号',
prop: 'number',
},
{
label: '模板名称',
@ -38,6 +43,11 @@ export const columns = [
return h('span', typeText || '-');
},
},
{
label: '模板内容',
prop: 'content',
width: 350,
},
{
label: '创建人',
prop: 'createUser',
@ -45,5 +55,6 @@ export const columns = [
{
label: '创建时间',
prop: 'createTime',
width: 180,
},
];

View File

@ -68,7 +68,7 @@ const editVisible=ref(false)
type:''
});
const actionColumn = reactive({
width: 250,
width: 200,
label: '操作',
prop: 'action',
fixed: 'right',