123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443 |
- <template>
- <div class="body">
- <div class="container">
- <div class="leftBar" style="height: 100%">
- <sidebarL
- @getPer="getPer"
- @AddAppJson="AddAppJson"
- :urlAddress.sync="urlAddress"
- ref="sidebarLRef"
- ></sidebarL>
- </div>
- <div class="table-container">
- <div class="top">
- <div class="topCon">
- <div class="title">
- <span v-if="roleUser.orgName">{{ roleUser.orgName }}</span>
- <span style="color: #0663fe; font-weight: 600">{{
- roleUser.schoolName
- }}</span>
- </div>
- <div class="person">
- <div class="person_name">
- <img
- @click="openData()"
- style="
- width: 40px;
- height: 40px;
- object-fit: cover;
- border-radius: 50%;
- cursor: pointer;
- "
- :src="
- roleUser.headportrait
- ? roleUser.headportrait
- : require('../assets/img/toux2.png')
- "
- alt=""
- />
- <div class="personInfo">
- <div class="personInfoTit">
- {{ roleUser.username }}
- </div>
- <div class="personInfoBri">
- {{ userSuffix() }}
- </div>
- </div>
- </div>
- <el-button
- type="text"
- @click="handleLogout"
- style="margin-left: 20px"
- >退出</el-button
- >
- </div>
- </div>
- </div>
- <!-- <router-view></router-view> -->
- <!-- 首页 -->
- <homepageL
- @AddAppJson="AddAppJson"
- :urlAddress.sync="urlAddress"
- v-show="!appSign"
- ref="homepageLRef"
- ></homepageL>
- <!-- 循环数组展示iframe -->
- <div v-for="(item, index) in AppJSon" :key="index">
- <!-- {{ item }} -->
- <div style="height: calc(100vh - 60px)" v-show="item.stateL">
- <iframe
- allow="camera *; microphone *;display-capture;midi;encrypted-media;"
- frameborder="no"
- style="border: 0; width: 100%; height: calc(100vh - 60px)"
- :src="item.json"
- :ref="item.toolId"
- >
- </iframe>
- </div>
- </div>
- <div
- v-if="loading"
- style="
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- "
- >
- <div
- style="display: flex; flex-direction: column; align-items: center"
- >
- <img
- style="height: 75px; transform: scale(2)"
- src="../assets/img/cocoloading.gif"
- alt=""
- />
- <div style="color: #0354d7">拼命加载中...</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { mapGetters, mapActions } from "vuex";
- import { loginOut } from "@/api/user";
- import sidebarL from "../components/sidebarL.vue";
- import { API_CONFIG } from "@/common/apiConfig";
- import store from "../store";
- import homepageL from "./homepageL.vue";
- export default {
- name: "HomeView",
- components: {
- sidebarL,
- homepageL,
- },
- data() {
- return {
- urlAddress: "",
- AppJSon: [],
- loading: false,
- };
- },
- computed: {
- ...mapGetters(["userinfo", "appSign", "userinfo2"]),
- userSuffix() {
- let yym = "";
- return function () {
- // this.userinfo.role == 1 && this.userinfo.rrole == 1 && this.userinfo.type == 1 &&
- yym =
- Object.keys(this.userinfo2).length != 0
- ? this.userinfo2
- : this.userinfo;
- let val = yym.accountNumber;
- let userName = JSON.parse(JSON.stringify(val));
- const regEmail = new RegExp(
- "^[A-Za-z0-9_-]+@[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)+$"
- );
- // // 判断用户输入账户带不带后缀
- if (!regEmail.test(userName)) {
- console.log("111");
- } else {
- const parts = userName.split("@");
- userName = parts[0];
- }
- return userName;
- };
- },
- roleUser() {
- // this.userinfo.role == 1 && this.userinfo.rrole == 1 && this.userinfo.type == 1&&
- return Object.keys(this.userinfo2).length != 0
- ? this.userinfo2
- : this.userinfo;
- },
- },
- methods: {
- ...mapActions({
- logout: "user/logout",
- }),
- // 打开个人信息
- openData() {
- window.topU.U.MD.D.I.openApplication("my");
- },
- // 打开平台应用工具
- AddAppJson(val) {
- // console.log('val',val);
- // 判断有没有打开过这个应用
- let data = this.AppJSon.filter((e) => {
- return val.toolId == e.toolId;
- });
- if (data.length == 0) {
- //为0则添加进列表,并将其他的展示状态改为false
- this.loading = true;
- // 打开平台工具加载两秒
- setTimeout(() => {
- this.loading = false;
- }, 2000);
- this.AppJSon.forEach((e) => {
- this.$set(e, "stateL", false); // 使用 Vue.set 确保响应式
- });
- this.AppJSon.push(val);
- } else {
- this.AppJSon.forEach((e) => {
- if (val.toolId == e.toolId) {
- //已经打开过了,将点击的工具展示状态改为false
- this.$set(e, "stateL", true); // 使用 Vue.set 确保响应式
- } else {
- this.$set(e, "stateL", false); // 确保响应式更新
- }
- });
- setTimeout(() => {
-
- console.log('this.$refs.appRef.contentWindow.document.body;',this.$refs[val.toolId][0].contentWindow.document.body);
-
- if (!this.$refs[val.toolId][0].contentWindow.document.body) {
- this.$refs[val.toolId][0].contentWindow.location.reload();
- }
- }, 2000);
- }
- },
- async handleLogout() {
- this.$confirm("确定退出吗", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(async () => {
- loginOut()
- .then(async () => {
- this.$message({
- message: "退出成功",
- type: "success",
- });
- await this.logout();
- this.$router.push("/login");
- })
- .catch((err) => {
- console.error(err);
- });
- })
- .catch(() => {
- // 取消操作
- });
- },
- // 获取学校权限与组织权限,优先使用学校权限,其次使用组织权限
- async getPer() {
- // 查询首页应用
- this.$refs.homepageLRef.getData();
- //查询cocofrow最近使用与收藏
- this.$refs.sidebarLRef.getData();
- let params = [
- {
- functionName: API_CONFIG.ajax_schoolPermission.functionName, // 调用存储过程的名称
- org: this.roleUser.org, //组织id
- oid: this.roleUser.organizeid, //学校id
- },
- ];
- // 获取学校权限与组织权限,优先使用学校权限,其次使用组织权限
- // 第一步
- let res = await this.$ajax.post(API_CONFIG.baseUrl, params);
- let perData = JSON.parse(res.data[0][0].json);
- // console.log('perData',JSON.parse(JSON.stringify(perData)));
- // 第二步
- let params2 = [
- {
- functionName: "select_desktopToolByPage",
- status: "",
- page: 1,
- lim: 9999999,
- },
- ];
- let res2 = await this.$ajax.post(API_CONFIG.baseUrl, params2);
- let toolList = res2.data[0];
- toolList.forEach((i) => {
- i.url = JSON.parse(i.url);
- i.json = JSON.parse(i.json);
- i.argumentList = JSON.parse(i.argumentList);
- });
- // 第三步
- if (perData.admin.cocoFlow) {
- perData.admin.cocoFlow.forEach((i, index) => {
- let _index = toolList.findIndex((i2) => i.id == i2.id);
- if (_index != -1) {
- let _setData = toolList[_index];
- _setData.setIcon = i.setIcon;
- perData.admin.cocoFlow[index] = _setData;
- } else {
- console.log("无应用", i);
- }
- });
- }
- if (perData.admin.cocoFlow2) {
- perData.admin.cocoFlow2.forEach((i, index) => {
- let _index = toolList.findIndex((i2) => i.id == i2.id);
- if (_index != -1) {
- let _setData = toolList[_index];
- _setData.setIcon = i.setIcon;
- perData.admin.cocoFlow2[index] = _setData;
- } else {
- console.log("无应用", i);
- }
- });
- }
- perData.admin.index.list.forEach((i, index) => {
- let _index = toolList.findIndex((i2) => i == i2.id);
- if (_index != -1) {
- perData.admin.index.list[index] = toolList[_index];
- perData.admin.index.list[index].hovered = false;
- } else {
- console.log("无工具", i);
- }
- });
- perData.admin.sidebar.list.forEach((i, index) => {
- if (i.children) {
- i.children.forEach((i2, index2) => {
- let _toolList = JSON.parse(JSON.stringify(toolList));
- let _index = _toolList.findIndex((i3) => i2 == i3.id);
- if (_index != -1) {
- perData.admin.sidebar.list[index].children[index2] =
- _toolList[_index];
- perData.admin.sidebar.list[index].children[index2].typeId =
- perData.admin.sidebar.list[index].typeId +
- "," +
- _toolList[_index].id;
- } else {
- console.log("无工具", i);
- }
- });
- } else {
- let _toolList = JSON.parse(JSON.stringify(toolList));
- let _index = _toolList.findIndex((i2) => i == i2.id);
- if (_index != -1) {
- perData.admin.sidebar.list[index] = _toolList[_index];
- perData.admin.sidebar.list[index].typeId =
- perData.admin.sidebar.list[index].id;
- } else {
- console.log("无工具", i);
- }
- }
- });
- await store.commit("user/SET_FROM", perData);
- // 获取后台管理设置常见应用
- this.$refs.homepageLRef.getadmincocoFlow();
- },
- },
- mounted() {
- console.log("重新获取数据");
- this.getPer();
- },
- };
- </script>
- <style scoped>
- .top {
- width: 100%;
- padding: 0 90px;
- display: flex;
- height: 60px;
- box-sizing: border-box;
- }
- .topCon {
- display: flex;
- width: 100%;
- justify-content: space-between;
- align-items: center;
- }
- .body {
- width: 100%;
- height: 100%;
- overflow: hidden;
- font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
- "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
- }
- .title {
- font-family: PingFang SC;
- font-weight: 400;
- font-size: 14px;
- line-height: 100%;
- letter-spacing: 0%;
- color: #969ba3;
- display: flex;
- gap: 11px;
- }
- .person {
- display: flex;
- align-items: center;
- }
- .person_name {
- display: flex;
- gap: 9px;
- }
- .personInfo {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- padding: 5px 0 2px;
- box-sizing: border-box;
- }
- .personInfoTit {
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 14px;
- line-height: 100%;
- color: #000000;
- }
- .personInfoBri {
- font-family: PingFang SC;
- font-weight: 300;
- font-size: 10px;
- line-height: 100%;
- color: #969ba3;
- }
- .container {
- display: flex;
- width: 100%;
- height: 100vh;
- }
- .container >>> .el-loading-mask {
- z-index: 0;
- }
- .table-container {
- /* display: flex;
- flex: 1;
- justify-content: center; */
- width: 100%;
- background-color: #f9fafb;
- position: relative;
- }
- .leftBar {
- /* box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px 6px rgb(0 0 0 / 0.1); */
- /* overflow: visible; */
- z-index: 999;
- }
- </style>
|