Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions web/classic/src/components/settings/PersonalSetting.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -615,14 +615,19 @@ const PersonalSetting = () => {

{/* 偏好设置(语言等) */}
<PreferencesSettings t={t} />

{/* 我的工单(建议及咨询) */}
<FeedbackConsult />
</div>

{/* 右侧:通知设置 + 实名认证 */}
<div className='flex flex-col gap-4 md:gap-6'>
<NotificationSettings
t={t}
notificationSettings={notificationSettings}
handleNotificationSettingChange={handleNotificationSettingChange}
handleNotificationSettingChange={
handleNotificationSettingChange
}
saveNotificationSettings={saveNotificationSettings}
/>
<div
Expand All @@ -636,7 +641,6 @@ const PersonalSetting = () => {
<KYCSetting />
</div>
<EnterpriseSetting />
<FeedbackConsult />
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
Select,
Spin,
Tag,
TextArea,
Typography,
} from '@douyinfe/semi-ui';
import {
Expand Down Expand Up @@ -297,7 +298,7 @@ export default function FeedbackConsult() {
</div>
<div>
<Text>{t('内容')}</Text>
<Input.TextArea
<TextArea
value={form.content}
onChange={(v) => setForm({ ...form, content: v })}
maxCount={5000}
Expand Down