diff --git a/src/lang/en.ts b/src/lang/en.ts
index 5abba6d..a767417 100644
--- a/src/lang/en.ts
+++ b/src/lang/en.ts
@@ -55,8 +55,6 @@ export default {
usernameTip: 'Your public username on Stylish Parade.',
role: 'ROLE',
roleTip: 'Select up to 2 labels that suit you.',
- socialLinks: 'SOCIAL LINKS',
- linkNumber: 'Link {index}'
},
security: {
title: 'Security',
diff --git a/src/lang/zh-cn.ts b/src/lang/zh-cn.ts
index 7c4b8c6..10177c0 100644
--- a/src/lang/zh-cn.ts
+++ b/src/lang/zh-cn.ts
@@ -56,8 +56,6 @@ export default {
usernameTip: '这是你在 Stylish Parade 上公开显示的用户名。',
role: '身份标签',
roleTip: '最多选择 2 个符合你的标签。',
- socialLinks: '社交链接',
- linkNumber: '链接 {index}'
},
security: {
title: '安全',
diff --git a/src/views/setting/index.vue b/src/views/setting/index.vue
index c1d06e6..e7c5f25 100644
--- a/src/views/setting/index.vue
+++ b/src/views/setting/index.vue
@@ -69,33 +69,6 @@
{{ t('Settings.profile.roleTip') }}
-
-
-
{{ t('Settings.profile.socialLinks') }}
-
-
-
- {{ t('Settings.profile.linkNumber', { index: index + 1 }) }}
-
-
{{ item }}
-
-
-
-
-
-
-
@@ -309,7 +282,6 @@ interface SettingsData {
email: string
username: string
role: RoleValue[]
- links: string[]
language: LanguageValue
region: RegionValue
}
@@ -324,7 +296,7 @@ const { t, locale } = useI18n({ useScope: 'global' })
const languageLocaleMap: Record = {
english: 'ENGLISH',
- chinese: 'CHINESE_SIMPLIFIED',
+ chinese: 'CHINESE_SIMPLIFIED'
}
const roleList = computed(() =>
@@ -354,7 +326,6 @@ const createDefaultData = (): SettingsData => ({
email: 'alex.chen@gmail.com',
username: '@alexandra_chen',
role: ['student', 'graphicDesigner'],
- links: ['https://instagram.com/username', 'https://...'],
language: 'english',
region: 'hongKongSar'
})
@@ -365,7 +336,6 @@ const cloneSettingsData = (data: SettingsData): SettingsData => ({
email: data.email,
username: data.username,
role: [...data.role],
- links: [...data.links],
language: data.language,
region: data.region
})
@@ -437,10 +407,6 @@ const handleEdit = () => {
isEditing.value = true
}
-const handleAddLink = () => {
- draftData.value.links.push('')
-}
-
const resetSecurityEmail = () => {
securityDraft.value.newEmail = ''
resetEmailVerificationState()
@@ -512,7 +478,6 @@ const buildNextData = () => {
username: draftData.value.username.trim(),
email: nextEmail,
role: draftData.value.role,
- links: draftData.value.links.map((item) => item.trim()).filter(Boolean),
language: draftData.value.language,
region: draftData.value.region
}
@@ -529,8 +494,7 @@ const handleSave = async () => {
saving.value = true
try {
sourceData.value = cloneSettingsData({
- ...nextData,
- links: nextData.links.length ? nextData.links : ['']
+ ...nextData
})
if (nextData.language !== previousLanguage) {
@@ -785,71 +749,6 @@ watch(
margin-top: 3rem;
}
- .social-links {
- margin-top: 5.8rem;
- font-family: 'KaiseiOpti-Medium';
-
- .title {
- margin-bottom: 2rem;
- font-size: 1.4rem;
- color: #585858;
- }
-
- &.read-social-links {
- margin-top: 4.8rem;
- }
- }
-
- .links-list {
- row-gap: 0.8rem;
- }
-
- .links-item {
- column-gap: 3.4rem;
- }
-
- .link-index {
- font-family: 'KaiseiOpti-Regular';
- font-size: 1.4rem;
- line-height: 2rem;
- color: #979797;
- }
-
- .link-href {
- color: #979797;
-
- &.readonly {
- display: flex;
- align-items: center;
- padding: 0.8rem 2rem;
- font-family: 'KaiseiOpti-Regular';
- font-size: 1.4rem;
- line-height: 2rem;
- color: #9f9f9f;
- }
-
- :deep(.el-input) {
- height: 4rem;
- }
-
- :deep(.el-input__inner) {
- font-family: 'KaiseiOpti-Regular';
- font-size: 1.4rem;
- color: #9f9f9f;
- }
- }
-
- .add-link-btn {
- width: 4rem;
- height: 4rem;
- border: 0.1rem solid #f0ebe5;
- background: #f6f6f6;
- color: #b4aea6;
- font-size: 2rem;
- line-height: 1;
- cursor: pointer;
- }
-
.security-container {
.security-row + .security-row {
margin-top: 2.8rem;