Commit 9d06e416 authored by nick zheng's avatar nick zheng

Merge branch 'beta' into 'master'

chore: 我的对话列表展示

See merge request !2
parents c2c0bca0 822e2eae
......@@ -33,7 +33,7 @@ export function createDiaglogueTableColumn(
width: 240,
fixed: 'left',
render(row: DiaglogueTableItem) {
return h('div', { class: 'text-sm' }, row.title || '--')
return row.title || '--'
},
},
......@@ -75,7 +75,7 @@ export function createDiaglogueTableColumn(
value: row.isOpen === 'Y',
onUpdateValue: () => handleDiaglogueAction('updateOpen', row.configId, row),
},
{ checked: () => '啓用', unchecked: () => '停用' },
{ checked: () => '停用', unchecked: () => '啓用' },
)
},
},
......
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