|
|
@@ -62,7 +62,7 @@ const props = defineProps({
|
|
|
|
|
|
const user = ref({});
|
|
|
const editVisible = ref(false);
|
|
|
-const editTitle = ref(t('myInfo.modify'));
|
|
|
+const editTitle = ref(t("myInfo.modify"));
|
|
|
const editType = ref("password");
|
|
|
|
|
|
const getUser = async () => {
|
|
|
@@ -76,9 +76,9 @@ const handleEdit = (type: string) => {
|
|
|
editType.value = type;
|
|
|
editVisible.value = true;
|
|
|
if (type == "password") {
|
|
|
- editTitle.value = t('myInfo.password');
|
|
|
+ editTitle.value = t("myInfo.password");
|
|
|
} else {
|
|
|
- editTitle.value = t('reportPop.title');
|
|
|
+ editTitle.value = t("reportPop.title");
|
|
|
}
|
|
|
};
|
|
|
|