diff --git a/Web/src/components/table/modifyRecord.vue b/Web/src/components/table/modifyRecord.vue
index bfefc040..f6c8fd71 100644
--- a/Web/src/components/table/modifyRecord.vue
+++ b/Web/src/components/table/modifyRecord.vue
@@ -37,7 +37,26 @@
{{ props.data.updateTime ?? t('message.list.none') }}
+
+
+
+
+
+ {{ t('message.list.organizationName') }}
+
+
+ {{ props.data.createOrgName ?? t('message.list.none') }}
+
+
+
+
+ {{ t('message.list.tenantName') }}
+
+
+ {{ props.data.tenantId ?? t('message.list.none') }}
+
+
diff --git a/Web/src/types/views.d.ts b/Web/src/types/views.d.ts
index a246a99b..a22a1910 100644
--- a/Web/src/types/views.d.ts
+++ b/Web/src/types/views.d.ts
@@ -323,7 +323,7 @@ declare type TableDemoState = {
tableData: {
// data: EmptyObjectType[];
// header: TableHeaderType[];
- columns: Object[]; //列设置,同ELTable-Column属性
+ columns: Object[]; //列设置,同ELTable-Column属?
config: {
// total: number;
// loading: boolean;
@@ -350,7 +350,7 @@ declare type TableDemoState = {
};
};
-// HTTP 作业消息(字段定义来源 Furion 的 HttpJobMessage)
+// HTTP 作业消息(字段定义来?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;
};