优化若干模块

This commit is contained in:
zjl 2024-12-12 16:09:58 +08:00
parent 53bd8f422c
commit 6adc0474a5
10 changed files with 15 additions and 9 deletions

View File

@ -90,7 +90,7 @@ export const columns = [
{ {
title: '投放时间', title: '投放时间',
key: 'time', key: 'time',
width: 180, width: 300,
render(record) { render(record) {
return record.startTime + '-' + record.endTime; return record.startTime + '-' + record.endTime;
}, },

View File

@ -110,4 +110,9 @@ export const columns = [
); );
}, },
}, },
{
title: '排序',
key: 'sort',
width: 100,
},
]; ];

View File

@ -29,7 +29,7 @@ export const columns = [
{ {
title: '备注', title: '备注',
key: 'note', key: 'note',
width: 100, width: 200,
}, },
{ {
title: '创建人', title: '创建人',

View File

@ -15,7 +15,7 @@ export const columns = [
{ {
title: '标题', title: '标题',
key: 'title', key: 'title',
width: 300, width: 250,
}, },
{ {
title: '类型', title: '类型',

View File

@ -21,7 +21,7 @@ export const columns = [
{ {
title: '模板名称', title: '模板名称',
key: 'title', key: 'title',
width: 150, width: 200,
}, },
{ {
title: '模板编码', title: '模板编码',

View File

@ -31,6 +31,7 @@ export const columns = [
{ {
title: '模板类型', title: '模板类型',
key: 'type', key: 'type',
width: 100,
render(record) { render(record) {
let typeText = ''; let typeText = '';
switch (record.type) { switch (record.type) {

View File

@ -54,7 +54,7 @@ export const columns = [
{ {
title: '数据库驱动类', title: '数据库驱动类',
key: 'dbDriver', key: 'dbDriver',
width: 100, width: 150,
}, },
{ {
title: '数据源地址', title: '数据源地址',
@ -69,7 +69,7 @@ export const columns = [
{ {
title: '数据库用户名', title: '数据库用户名',
key: 'dbUsername', key: 'dbUsername',
width: 100, width: 120,
}, },
{ {
title: '备注', title: '备注',

View File

@ -78,7 +78,7 @@
{ {
title: '登录地点', title: '登录地点',
key: 'loginLocation', key: 'loginLocation',
width: 100, width: 150,
}, },
{ {
title: '浏览器', title: '浏览器',

View File

@ -25,6 +25,7 @@ export const columns = [
{ {
title: '租户图片', title: '租户图片',
key: 'image', key: 'image',
width: 100,
render(record) { render(record) {
return h(NImage, { return h(NImage, {
width: 48, width: 48,
@ -33,7 +34,6 @@ export const columns = [
fit: 'fill', fit: 'fill',
}); });
}, },
width: 100,
}, },
{ {
title: '统一社会信用代码', title: '统一社会信用代码',

View File

@ -35,7 +35,7 @@ export const columns = [
{ {
title: '数据表自增索引', title: '数据表自增索引',
key: 'autoIncrement', key: 'autoIncrement',
width: 120, width: 150,
}, },
{ {
title: '数据表编码', title: '数据表编码',