列表详情支持看租户ID和部门信息
This commit is contained in:
parent
92438e9085
commit
4dcad4a403
@ -37,7 +37,26 @@
|
||||
</el-text>
|
||||
</template>
|
||||
<el-tag>{{ props.data.updateTime ?? t('message.list.none') }}</el-tag>
|
||||
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item>
|
||||
<template #label>
|
||||
<el-text>
|
||||
<el-icon><ele-OfficeBuilding /></el-icon>{{ t('message.list.organizationName') }}
|
||||
</el-text>
|
||||
</template>
|
||||
<el-tag>{{ props.data.createOrgName ?? t('message.list.none') }}</el-tag>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item>
|
||||
<template #label>
|
||||
<el-text>
|
||||
<el-icon><ele-School /></el-icon>{{ t('message.list.tenantName') }}
|
||||
</el-text>
|
||||
</template>
|
||||
<el-tag>{{ props.data.tenantId ?? t('message.list.none') }}</el-tag>
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item v-if="'remark' in props.data">
|
||||
<template #label>
|
||||
<el-text>
|
||||
|
||||
7
Web/src/types/views.d.ts
vendored
7
Web/src/types/views.d.ts
vendored
@ -323,7 +323,7 @@ declare type TableDemoState = {
|
||||
tableData: {
|
||||
// data: EmptyObjectType[];
|
||||
// header: TableHeaderType[];
|
||||
columns: Object[]; //列设置,同ELTable-Column属性
|
||||
columns: Object[]; //列设置,å<EFBFBD>ŒELTable-Column属æ€?
|
||||
config: {
|
||||
// total: number;
|
||||
// loading: boolean;
|
||||
@ -350,7 +350,7 @@ declare type TableDemoState = {
|
||||
};
|
||||
};
|
||||
|
||||
// HTTP 作业消息(字段定义来源 Furion 的 HttpJobMessage)
|
||||
// HTTP 作业消æ<EFBFBD>¯ï¼ˆå—段定义æ<EFBFBD>¥æº?Furion çš?HttpJobMessageï¼?
|
||||
interface HttpJobMessage {
|
||||
requestUri?: string | null;
|
||||
httpMethod?: string | null;
|
||||
@ -365,4 +365,7 @@ declare type ModifyRecord = {
|
||||
updateUserName?: string | null;
|
||||
updateTime?: string | null;
|
||||
remark?: string | null;
|
||||
|
||||
createOrgName?: string | null;
|
||||
tenantId?: string | null;
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user