Explorar o código

Merge branch 'master' of http://47.103.92.60:3003/skyversation/sky_proxy_ui.git

# Conflicts:
#	public/config.js
wandequan hai 1 ano
pai
achega
fa2c5cfae7
Modificáronse 5 ficheiros con 18 adicións e 6 borrados
  1. 9 1
      README.md
  2. 4 1
      public/config.js
  3. 1 1
      public/index.html
  4. 2 2
      src/components/home/HomeIndex.vue
  5. 2 1
      src/components/main/Header.vue

+ 9 - 1
README.md

@@ -35,9 +35,14 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
 }
 ```
 
+### 20231102
+- 禁用cookie
+- 删除内置账号密码
+
 
 ### 20231025
 - 修改二三维数据预览展示方式,使用嵌入页面的形式展示,单页面url后缀拼接参数如下:
+
    | 参数          | 类型    | 是否必填  | 含义                 |
    | -----         | ------ | -------- | -------------------- |
    | dataType      | String | 是       | 数据类型,twoD为二维数据,threeD为三维数据  |
@@ -45,4 +50,7 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
    | mapserverType | String | 是       | 数据服务类型,arcgis为arcgis类型瓦片服务,xyz为xyz格式数据服务  |
    | url           | String | 是       | 数据代理服务地址  |
 
- 注:mapType、mapserverType两个参数, 仅在dataType参数值为twoD时生效
+- 注:mapType、mapserverType两个参数, 仅在dataType参数值为twoD时生效
+
+### 20231206
+- 修改系统名称 由 数据共享服务系统 修改为 二三维服务接引系统

+ 4 - 1
public/config.js

@@ -7,7 +7,10 @@ var systemConfig = {
     single_map: "http://121.43.55.7:2107/"
 }
 
-// // SkyScenery插件配置
+// var system_name = "数据共享服务系统";
+var system_name = "二三维服务接引系统";
+
+// SkyScenery插件配置
 // var SkySceneryConfig = {
 //     userName: "user001",
 //     password: "1234567890",

+ 1 - 1
public/index.html

@@ -5,7 +5,7 @@
     <meta http-equiv="X-UA-Compatible" content="IE=edge">
     <meta name="viewport" content="width=device-width,initial-scale=1.0">
     <link rel="icon" href="<%= BASE_URL %>favicon.ico">
-    <title>数据共享服务系统</title>
+    <title>二三维服务接引系统</title>
     <script src="<%= BASE_URL %>config.js" type="text/javascript"></script>
     <link rel="stylesheet" href="<%= BASE_URL %>pluginFiles/Cesium/Widgets/widgets.css">
     <script src="<%= BASE_URL %>pluginFiles/Cesium/Cesium.js"></script>

+ 2 - 2
src/components/home/HomeIndex.vue

@@ -1,6 +1,6 @@
 <template>
   <div id="homeIndex">
-    <div>欢迎使用数据共享服务系统</div>
+    <div>{{systemName}}</div>
   </div>
 </template>
 
@@ -8,7 +8,7 @@
 export default {
   data() {
     return {
-
+      systemName: system_name,
     }
   },
   created() {

+ 2 - 1
src/components/main/Header.vue

@@ -14,7 +14,7 @@
           <el-icon style="vertical-align: top;width: 30px;height: 30px;margin-top: 15px">
             <el-image :src="logo" size="small" ></el-image>
           </el-icon>
-          数据共享服务系统
+          {{systemName}}
         </span>
       </el-menu-item>
       <div class="flex-grow" />
@@ -30,6 +30,7 @@ import logo from '@/assets/logo.png'
 export default {
   data() {
     return {
+      systemName: system_name,
       logo,
       activeIndex: '-1'
     }