|
@@ -20,7 +20,7 @@
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
-<script>
|
|
|
+<script setup>
|
|
|
import { getUserProfile } from "@/api/system/user";
|
|
|
import { updateUserProfile } from "@/api/system/user";
|
|
|
|
|
@@ -88,13 +88,15 @@ const form = ref(null);
|
|
|
|
|
|
function getUser() {
|
|
|
getUserProfile().then((response) => {
|
|
|
- user.value = response.data;
|
|
|
+ console.log(response);
|
|
|
+ user.value = response.data.user;
|
|
|
});
|
|
|
}
|
|
|
function submit(ref) {
|
|
|
form.value.validate().then((res) => {
|
|
|
updateUserProfile(user.value).then((response) => {
|
|
|
- proxy.$modal.msgSuccess("修改成功");
|
|
|
+ proxy.$modal.msgSuccess("修改成功,重新登录后生效!");
|
|
|
+ proxy.$tab.reLaunch("pages/mine/index");
|
|
|
});
|
|
|
});
|
|
|
}
|