|
@@ -65,8 +65,8 @@ const fields = [
|
|
|
{ label: t('pages.support.name'), model: 'name', isSearch: true },
|
|
|
{ label: t('pages.support.industry'), model: 'industry', isSearch: true, type: 'select' },
|
|
|
{ label: t('pages.support.tags'), model: 'tags', isSearch: true, format: (i) => getDict(i, 'tags') },
|
|
|
- { label: t('pages.support.field'), model: 'build', isSearch: true },
|
|
|
- { label: t('pages.support.time'), model: 'operate', isSearch: true },
|
|
|
+ { label: t('pages.support.field'), model: 'field', isSearch: true },
|
|
|
+ { label: t('pages.support.time'), model: 'time', isSearch: true },
|
|
|
{ label: t('pages.support.is_use'), model: 'is_use', custom: true, format: (i) => getDict(i, 'is_use') },
|
|
|
{ label: t('pages.support.status'), model: 'status', format: (i) => getDict(i, 'status') }
|
|
|
]
|
|
@@ -179,7 +179,7 @@ const toMoreDelect = () => {
|
|
|
}
|
|
|
// 添加
|
|
|
const toAdd = () => {
|
|
|
- form.value = { type: '1' }
|
|
|
+ form.value = {}
|
|
|
dialog.value = { type: '1', show: true, title: t('pages.support.addDialogTitle') }
|
|
|
}
|
|
|
// 修改
|