-
会议时长
-
{meetingDuration > 0 ? formatDurationRange(0, meetingDuration).split(' - ')[1] : TEXT.noDuration}
+
+
+
+ {TEXT.meetingTime}
+
+ {meeting.meetingTime ? dayjs(meeting.meetingTime).format("YYYY.MM.DD HH:mm") : TEXT.notSet}
+
+
+
+ {TEXT.createdAt}
+
+ {meeting.createdAt ? dayjs(meeting.createdAt).format("YYYY.MM.DD HH:mm") : TEXT.notSet}
+
+
+
+ {TEXT.creator}
+ {meeting.creatorName || TEXT.notSet}
+
+
+ {TEXT.host}
+ {meeting.hostName || TEXT.notSet}
+
+
+ {TEXT.participantsCount}
+ {participantCountValue || TEXT.notFilled}
+
+
+ 会议时长
+ {meetingDuration > 0 ? formatDurationRange(0, meetingDuration).split(' - ')[1] : TEXT.noDuration}
+
+
+ {participants.length > 0 ? (
+
+
{TEXT.participants}
+
+ {participants.map((item) => (
+
+
+ {item}
+
+ ))}
+
+
+ ) : null}
+
+ {tags.length > 0 ? (
+
0 ? 12 : 20 }}>
+
{TEXT.tags}
+
+ {tags.map((item) => (
+
+ {item}
+
+ ))}
+
+
+ ) : null}
- {participants.length > 0 ? (
-
-
{TEXT.participants}
-
- {participants.map((item) => (
-
-
- {item}
-
- ))}
-
-
- ) : null}
-
- {tags.length > 0 ? (
-
0 ? 12 : 20 }}>
-
{TEXT.tags}
-
- {tags.map((item) => (
-
- {item}
-
- ))}
-
-
- ) : null}
+
+
+
diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts
index 994ea4c..9b95026 100644
--- a/frontend/vite.config.ts
+++ b/frontend/vite.config.ts
@@ -14,11 +14,11 @@ export default defineConfig({
server: {
port: 5174,
proxy: {
- "/auth": "http://10.100.52.13:8081",
- "/sys": "http://10.100.52.13:8081",
- "/api": "http://10.100.52.13:8081",
+ "/auth": "http://10.100.51.199:8080",
+ "/sys": "http://10.100.51.199:8080",
+ "/api": "http://10.100.51.199:8080",
"/ws": {
- target: "ws://10.100.52.13:8081",
+ target: "ws://10.100.51.199:8080",
ws: true
}
}