列表详情支持看租户ID和部门信息

This commit is contained in:
侯炯 2025-07-18 18:04:48 +08:00
parent 92438e9085
commit 4dcad4a403
2 changed files with 24 additions and 2 deletions

View File

@ -37,7 +37,26 @@
</el-text> </el-text>
</template> </template>
<el-tag>{{ props.data.updateTime ?? t('message.list.none') }}</el-tag> <el-tag>{{ props.data.updateTime ?? t('message.list.none') }}</el-tag>
</el-descriptions-item> </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"> <el-descriptions-item v-if="'remark' in props.data">
<template #label> <template #label>
<el-text> <el-text>

View File

@ -323,7 +323,7 @@ declare type TableDemoState = {
tableData: { tableData: {
// data: EmptyObjectType[]; // data: EmptyObjectType[];
// header: TableHeaderType[]; // header: TableHeaderType[];
columns: Object[]; //列设置同ELTable-Column属性 columns: Object[]; //列设置,å<EFBFBD>ŒELTable-Column属æ€?
config: { config: {
// total: number; // total: number;
// loading: boolean; // loading: boolean;
@ -350,7 +350,7 @@ declare type TableDemoState = {
}; };
}; };
// HTTP 作业消息(字段定义来源 Furion 的 HttpJobMessage // HTTP 作业消æ<EFBFBD>¯ï¼ˆå­—段定义æ<EFBFBD>¥æº?Furion çš?HttpJobMessageï¼?
interface HttpJobMessage { interface HttpJobMessage {
requestUri?: string | null; requestUri?: string | null;
httpMethod?: string | null; httpMethod?: string | null;
@ -365,4 +365,7 @@ declare type ModifyRecord = {
updateUserName?: string | null; updateUserName?: string | null;
updateTime?: string | null; updateTime?: string | null;
remark?: string | null; remark?: string | null;
createOrgName?: string | null;
tenantId?: string | null;
}; };