吉安感知网项目-前端
34d048b470fa0299e5b81c76ba9ae8e28ddc65df..b30b619e78775397f101380e5f77eecc3c89d418
5 days ago 罗广辉
Merge remote-tracking branch 'origin/master'
b30b61 diff | tree
5 days ago 罗广辉
feat: 去除key
efaf38 diff | tree
5 days ago shuishen
feat:样式兼容处理
e64db6 diff | tree
2 files modified
30 ■■■■■ changed files
applications/drone-command/index.html 4 ●●●● patch | view | raw | blame | history
applications/drone-command/src/page/index/top/index.vue 26 ●●●●● patch | view | raw | blame | history
applications/drone-command/index.html
@@ -23,11 +23,11 @@
    <!-- 高德地图api更新必须配合安全密钥使用 -->
    <script>
        window._AMapSecurityConfig = {
            securityJsCode: '1cd61831ddce188f3129b761f57024fc',
            securityJsCode: 'xxx',
        }
    </script>
    <script type="text/javascript"
                    src='https://webapi.amap.com/maps?v=2.0&key=eb0654440644f710110547d2132b2fbe&plugin=AMap.PlaceSearch,AMap.Geocoder'></script>
                    src='https://webapi.amap.com/maps?v=2.0&key=xxx&plugin=AMap.PlaceSearch,AMap.Geocoder'></script>
    <script src="https://webapi.amap.com/ui/1.1/main.js?v=1.0.11"></script>
    <title>吉安市低空经济服务一体化平台</title>
</head>
applications/drone-command/src/page/index/top/index.vue
@@ -8,8 +8,8 @@
      <div class="header-right">
        <nav class="nav-menu">
          <div v-for="(item, index) in topMenus" :key="index" class="nav-item"
            :class="{ active: item.active }" @click="handleMenuClick(item)">
          <div v-for="(item, index) in topMenus" :key="index" class="nav-item" :class="{ active: item.active }"
            @click="handleMenuClick(item)">
            <span>{{ item.label }}</span>
          </div>
        </nav>
@@ -135,7 +135,7 @@
        confirmButtonClass: 'command-message-box-confirm',
        cancelButtonClass: 'command-message-box-cancel',
      }).then(() => {
                logOutFun()
        logOutFun()
      })
    },
    jumpMH () {
@@ -249,14 +249,22 @@
            background: url('@/assets/images/active-menu-item.png') no-repeat center / 136px 34px;
            span {
              background: linear-gradient(180deg,
                  #fff 22.11%,
                  #ffffff 86.69%);
              background-size: contain;
              background-clip: text;
              -webkit-text-fill-color: transparent;
              /* 降级方案:所有浏览器先显示白色文字 */
              color: #ffffff;
              /* 发光效果 */
              text-shadow: 0px 0px 13px 0px #5da6ef73;
            }
            /* 支持渐变文字的浏览器再启用 */
            @supports (-webkit-background-clip: text) {
              span {
                background: linear-gradient(180deg, #fff 22.11%, #ffffff 86.69%);
                background-size: contain;
                background-clip: text;
                -webkit-text-fill-color: transparent;
              }
            }
          }
        }
      }