兰宝车间质量管理系统-前端
疯狂的狮子Li
2023-07-02 3fb8f1c2516f8e56ec9406426ccb4764c6c50968
src/views/system/user/profile/index.vue
@@ -55,9 +55,6 @@
            <el-tab-pane label="修改密码" name="resetPwd">
              <resetPwd />
            </el-tab-pane>
            <el-tab-pane label="第三方应用" name="thirdParty">
              <thirdParty :auths="state.auths" />
            </el-tab-pane>
          </el-tabs>
        </el-card>
      </el-col>
@@ -69,16 +66,13 @@
import userAvatar from "./userAvatar.vue";
import userInfo from "./userInfo.vue";
import resetPwd from "./resetPwd.vue";
import thirdParty from "./thirdParty.vue";
import { getAuthList } from "@/api/system/social/auth";
import { getUserProfile } from "@/api/system/user";
const activeTab = ref("userinfo");
const state = ref<{ user: any; roleGroup: string;  postGroup: string; auths:any[]}>({
const state = ref<{ user: any; roleGroup: string;  postGroup: string}>({
    user: {},
    roleGroup: '',
    postGroup: '',
    auths: [],
    postGroup: ''
});
const userForm = ref({});
@@ -91,13 +85,7 @@
    state.value.postGroup = res.data.postGroup;
};
const getAuths = async () => {
    const res = await getAuthList();
    state.value.auths = res.data;
};
onMounted(() => {
    getUser();
    getAuths();
})
</script>