refactor: dictData ==> dictClass

This commit is contained in:
xingyu
2022-11-17 23:09:29 +08:00
parent 5725d4862b
commit 6291a3d7d8
36 changed files with 63 additions and 63 deletions

View File

@ -26,7 +26,7 @@ const crudSchemas = reactive<CrudSchema[]>([
label: '用户类型',
field: 'userType',
dictType: DICT_TYPE.USER_TYPE,
dictData: 'number',
dictClass: 'number',
search: {
show: true
}

View File

@ -69,7 +69,7 @@ const crudSchemas = reactive<CrudSchema[]>([
label: '处理状态',
field: 'processStatus',
dictType: DICT_TYPE.INFRA_API_ERROR_LOG_PROCESS_STATUS,
dictData: 'number',
dictClass: 'number',
search: {
show: true
}

View File

@ -52,7 +52,7 @@ const crudSchemas = reactive<CrudSchema[]>([
label: '系统内置',
field: 'type',
dictType: DICT_TYPE.INFRA_CONFIG_TYPE,
dictData: 'number',
dictClass: 'number',
search: {
show: true
}

View File

@ -48,7 +48,7 @@ const crudSchemas = reactive<CrudSchema[]>([
label: '存储器',
field: 'storage',
dictType: DICT_TYPE.INFRA_FILE_STORAGE,
dictData: 'number',
dictClass: 'number',
search: {
show: true
}
@ -57,7 +57,7 @@ const crudSchemas = reactive<CrudSchema[]>([
label: '主配置',
field: 'primary',
dictType: DICT_TYPE.INFRA_BOOLEAN_STRING,
dictData: 'number'
dictClass: 'number'
},
{
label: t('form.remark'),

View File

@ -37,7 +37,7 @@ const crudSchemas = reactive<CrudSchema[]>([
label: t('common.status'),
field: 'status',
dictType: DICT_TYPE.INFRA_JOB_STATUS,
dictData: 'number',
dictClass: 'number',
form: {
show: false
},

View File

@ -74,7 +74,7 @@ const crudSchemas = reactive<CrudSchema[]>([
label: t('common.status'),
field: 'status',
dictType: DICT_TYPE.INFRA_JOB_LOG_STATUS,
dictData: 'number',
dictClass: 'number',
search: {
show: true
}