月球大数据地理空间分析展示平台-【中台】
Surpriseplus
2023-07-12 e0390205f97847ae8e050873db51b619b7ebcc55
界面修改
已添加4个文件
已修改9个文件
81 ■■■■ 文件已修改
public/mapscreen/css/style.css 14 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
public/mapscreen/images/3css_globe_diffuse.jpg 补丁 | 查看 | 原始文档 | blame | 历史
public/mapscreen/images/css_1globe_halo.png 补丁 | 查看 | 原始文档 | blame | 历史
public/mapscreen/images/css_globe_diffuse.jpg 补丁 | 查看 | 原始文档 | blame | 历史
public/mapscreen/images/css_globe_halo.png 补丁 | 查看 | 原始文档 | blame | 历史
public/mapscreen/images/css_globe_halo.zip 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/img/moon-bg.png 补丁 | 查看 | 原始文档 | blame | 历史
src/components/login.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/navMenu.vue 15 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/router/index.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/datamanage/bankController.vue 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/datamanage/dataController.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/maintenance/menuSettings.vue 37 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
public/mapscreen/css/style.css
@@ -1,4 +1,5 @@
html, body {
html,
body {
  position: absolute;
  width: 100%;
  height: 100%;
@@ -55,13 +56,20 @@
}
.world-globe-halo {
  position: absolute;
  /* position: absolute;
  left: 50%;
  top: 50%;
  width: 730px;
  height: 715px;
  margin-left: -368px;
  margin-top: -350px;
  margin-top: -350px; */
  position: absolute;
  left: 50%;
  top: 50%;
  width: 730px;
  height: 681px;
  margin-left: -368px;
  margin-top: -324px;
}
.info {
public/mapscreen/images/3css_globe_diffuse.jpg
public/mapscreen/images/css_1globe_halo.png
public/mapscreen/images/css_globe_diffuse.jpg

public/mapscreen/images/css_globe_halo.png

public/mapscreen/images/css_globe_halo.zip
Binary files differ
src/assets/img/moon-bg.png
src/components/login.vue
@@ -221,8 +221,8 @@
                  debugger
                  if (res.result.length != 0) {
                    sessionStorage.setItem("routerName", "/Thematic");
                    sessionStorage.setItem("changeSelectStyle", 1);
                    this.$router.push("/bankController");
                    sessionStorage.setItem("changeSelectStyle", 0);
                    this.$router.push("/projectController");
                  } else {
                    this.$message({
                      message: "请您联系管理员分配角色菜单",
@@ -307,7 +307,7 @@
  right: 0px;
  bottom: 0px;
  background: url("../assets/img/login.jpg") no-repeat center;
  background: url("../assets/img/moon-bg.png") no-repeat center;
  background-size: 100% 100%;
  .MapMenu {
    width: 100%;
src/components/navMenu.vue
@@ -31,6 +31,7 @@
            <div
              class="secondMenuDiv   subpage_Div"
              v-show="index == showFlag ? true :false"
              v-if="item.children && item.children.length>0"
            >
              <div
                v-for="res in item.children"
@@ -221,7 +222,7 @@
    },
    //鼠标移入菜单事件
    setMenuMove(index, item) {
      debugger
      if (item.perms != null && item.perms != "") {
        this.$router.push(item.url);
        if (this.showFlag != null) {
@@ -229,8 +230,8 @@
          this.changeliSelect = '%%';
          this.showFlag = null;
        }
        if (item.url == "Thematic") {
          this.signInsertOpLog("综合展示", item.cnName)
        if (item.url == "/projectController") {
          this.signInsertOpLog("项目管理", item.cnName)
        }
        this.changeSelectStyle = index;
@@ -238,6 +239,12 @@
      } else {
        if (this.showFlag != index) {
          this.showFlag = index;
          this.changeSelectStyle = index;
          if (item.url && item.children && item.children.length == 0) {
            window.open(item.url)
          }
        } else {
          this.showFlag = null;
        }
@@ -333,7 +340,7 @@
        if (res[i].perms == null || res[i].perms == "") {
          const result = await selectMenuRecursive({ id: res[i].id });
          debugger
          if (result.code == 200) {
            res[i].children = result.result.filter((value) => {
src/router/index.js
@@ -96,7 +96,7 @@
    path: '/',
    name: 'Home',
    component: Home,
    redirect: '/Synthesis',
    redirect: '/projectController',
    children: [
      {
        path: '/WareInspection',
src/views/datamanage/bankController.vue
@@ -156,9 +156,11 @@
      const data = await queryMenuTree();
      let menuLists = data.result.filter((value) => {
        return value.url == '/bankController';
      });
      if (menuLists.length <= 0) return
      debugger
      const res = await selectMenuRecursive({ id: menuLists[0].id });
      if (res.code == 200) {
src/views/datamanage/dataController.vue
@@ -96,6 +96,7 @@
  },
  created() { },
  mounted() {
    debugger
    this.getTreeData();
    //左右拖動
    this.dragControllerDiv();
@@ -153,7 +154,7 @@
      let menuLists = data.result.filter((value) => {
        return value.url == '/dataController';
      });
      debugger
      const res = await selectMenuRecursive({ id: menuLists[0].id });
      if (res.code == 200) {
src/views/maintenance/menuSettings.vue
@@ -25,7 +25,10 @@
      </div>
      <div class="right_menu subpage_Div">
        <div style="display:flex;justify-content:right;align-items: center;padding-bottom: 14px">
          <el-breadcrumb separator="/" style="display: none">
          <el-breadcrumb
            separator="/"
            style="display: none"
          >
            <el-breadcrumb-item :to="{ path: '/' }">{{
            $t('dataManage.dictionaryManageObj.particulars')
          }}</el-breadcrumb-item>
@@ -128,8 +131,14 @@
                v-model="itemdetail.isShow"
                :placeholder="$t('operatManage.menuSetObj.show')"
              >
                <el-option :label="$t('operatManage.menuSetObj.hiddeen')" value="0" />
                <el-option :label="$t('operatManage.menuSetObj.isshow')" value="1" />
                <el-option
                  :label="$t('operatManage.menuSetObj.hiddeen')"
                  value="0"
                />
                <el-option
                  :label="$t('operatManage.menuSetObj.isshow')"
                  value="1"
                />
<!--                <el-option-->
<!--                  v-for="item in options1"-->
<!--                  :key="item.value"-->
@@ -170,9 +179,18 @@
                v-model="itemdetail.type"
                :placeholder="$t('operatManage.menuSetObj.typeHolder')"
              >
                <el-option :label="$t('operatManage.menuSetObj.rootpath')" value="0" />
                <el-option :label="$t('operatManage.menuSetObj.menu')" value="1" />
                <el-option :label="$t('operatManage.menuSetObj.button')" value="2" />
                <el-option
                  :label="$t('operatManage.menuSetObj.rootpath')"
                  value="0"
                />
                <el-option
                  :label="$t('operatManage.menuSetObj.menu')"
                  value="1"
                />
                <el-option
                  :label="$t('operatManage.menuSetObj.button')"
                  value="2"
                />
<!--                <el-option-->
<!--                  v-for="item in options2"-->
<!--                  :key="item.value"-->
@@ -372,9 +390,9 @@
  data() {
    return {
      menuStatus: {
        delete: false,
        insert: false,
        update: false,
        delete: true,
        insert: true,
        update: true,
      },
      defaultProps: {
        children: 'children',
@@ -923,7 +941,6 @@
  }
}
.btnBox{
  position: absolute;
  bottom: 0;
  right: 0;