shaogen1995 3 gadi atpakaļ
vecāks
revīzija
c51d96a54c

+ 23 - 0
mo/.gitignore

@@ -0,0 +1,23 @@
+.DS_Store
+node_modules
+/dist
+
+
+# local env files
+.env.local
+.env.*.local
+
+# Log files
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+
+# Editor directories and files
+.idea
+.vscode
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?

+ 19 - 0
mo/README.md

@@ -0,0 +1,19 @@
+# mo
+
+## Project setup
+```
+npm install
+```
+
+### Compiles and hot-reloads for development
+```
+npm run serve
+```
+
+### Compiles and minifies for production
+```
+npm run build
+```
+
+### Customize configuration
+See [Configuration Reference](https://cli.vuejs.org/config/).

+ 5 - 0
mo/babel.config.js

@@ -0,0 +1,5 @@
+module.exports = {
+  presets: [
+    '@vue/cli-plugin-babel/preset'
+  ]
+}

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 26102 - 0
mo/package-lock.json


+ 27 - 0
mo/package.json

@@ -0,0 +1,27 @@
+{
+  "name": "mo",
+  "version": "0.1.0",
+  "private": true,
+  "scripts": {
+    "serve": "vue-cli-service serve",
+    "build": "vue-cli-service build"
+  },
+  "dependencies": {
+    "core-js": "^3.6.5",
+    "vue": "^2.6.11",
+    "vue-router": "^3.2.0"
+  },
+  "devDependencies": {
+    "@vue/cli-plugin-babel": "~4.5.13",
+    "@vue/cli-plugin-router": "~4.5.13",
+    "@vue/cli-service": "~4.5.13",
+    "less": "^3.0.4",
+    "less-loader": "^5.0.0",
+    "vue-template-compiler": "^2.6.11"
+  },
+  "browserslist": [
+    "> 1%",
+    "last 2 versions",
+    "not dead"
+  ]
+}

BIN
mo/public/favicon.ico


+ 17 - 0
mo/public/index.html

@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html lang="">
+  <head>
+    <meta charset="utf-8">
+    <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><%= htmlWebpackPlugin.options.title %></title>
+  </head>
+  <body>
+    <noscript>
+      <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
+    </noscript>
+    <div id="app"></div>
+    <!-- built files will be auto injected -->
+  </body>
+</html>

+ 32 - 0
mo/src/App.vue

@@ -0,0 +1,32 @@
+<template>
+  <div id="app">
+    <div id="nav">
+      <router-link to="/">Home</router-link> |
+      <router-link to="/about">About</router-link>
+    </div>
+    <router-view/>
+  </div>
+</template>
+
+<style lang="less">
+#app {
+  font-family: Avenir, Helvetica, Arial, sans-serif;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+  text-align: center;
+  color: #2c3e50;
+}
+
+#nav {
+  padding: 30px;
+
+  a {
+    font-weight: bold;
+    color: #2c3e50;
+
+    &.router-link-exact-active {
+      color: #42b983;
+    }
+  }
+}
+</style>

BIN
mo/src/assets/logo.png


+ 58 - 0
mo/src/components/HelloWorld.vue

@@ -0,0 +1,58 @@
+<template>
+  <div class="hello">
+    <h1>{{ msg }}</h1>
+    <p>
+      For a guide and recipes on how to configure / customize this project,<br>
+      check out the
+      <a href="https://cli.vuejs.org" target="_blank" rel="noopener">vue-cli documentation</a>.
+    </p>
+    <h3>Installed CLI Plugins</h3>
+    <ul>
+      <li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-babel" target="_blank" rel="noopener">babel</a></li>
+      <li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-router" target="_blank" rel="noopener">router</a></li>
+    </ul>
+    <h3>Essential Links</h3>
+    <ul>
+      <li><a href="https://vuejs.org" target="_blank" rel="noopener">Core Docs</a></li>
+      <li><a href="https://forum.vuejs.org" target="_blank" rel="noopener">Forum</a></li>
+      <li><a href="https://chat.vuejs.org" target="_blank" rel="noopener">Community Chat</a></li>
+      <li><a href="https://twitter.com/vuejs" target="_blank" rel="noopener">Twitter</a></li>
+      <li><a href="https://news.vuejs.org" target="_blank" rel="noopener">News</a></li>
+    </ul>
+    <h3>Ecosystem</h3>
+    <ul>
+      <li><a href="https://router.vuejs.org" target="_blank" rel="noopener">vue-router</a></li>
+      <li><a href="https://vuex.vuejs.org" target="_blank" rel="noopener">vuex</a></li>
+      <li><a href="https://github.com/vuejs/vue-devtools#vue-devtools" target="_blank" rel="noopener">vue-devtools</a></li>
+      <li><a href="https://vue-loader.vuejs.org" target="_blank" rel="noopener">vue-loader</a></li>
+      <li><a href="https://github.com/vuejs/awesome-vue" target="_blank" rel="noopener">awesome-vue</a></li>
+    </ul>
+  </div>
+</template>
+
+<script>
+export default {
+  name: 'HelloWorld',
+  props: {
+    msg: String
+  }
+}
+</script>
+
+<!-- Add "scoped" attribute to limit CSS to this component only -->
+<style scoped lang="less">
+h3 {
+  margin: 40px 0 0;
+}
+ul {
+  list-style-type: none;
+  padding: 0;
+}
+li {
+  display: inline-block;
+  margin: 0 10px;
+}
+a {
+  color: #42b983;
+}
+</style>

+ 10 - 0
mo/src/main.js

@@ -0,0 +1,10 @@
+import Vue from 'vue'
+import App from './App.vue'
+import router from './router'
+
+Vue.config.productionTip = false
+
+new Vue({
+  router,
+  render: h => h(App)
+}).$mount('#app')

+ 27 - 0
mo/src/router/index.js

@@ -0,0 +1,27 @@
+import Vue from 'vue'
+import VueRouter from 'vue-router'
+import Home from '../views/Home.vue'
+
+Vue.use(VueRouter)
+
+const routes = [
+  {
+    path: '/',
+    name: 'Home',
+    component: Home
+  },
+  {
+    path: '/about',
+    name: 'About',
+    // route level code-splitting
+    // this generates a separate chunk (about.[hash].js) for this route
+    // which is lazy-loaded when the route is visited.
+    component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
+  }
+]
+
+const router = new VueRouter({
+  routes
+})
+
+export default router

+ 5 - 0
mo/src/views/About.vue

@@ -0,0 +1,5 @@
+<template>
+  <div class="about">
+    <h1>This is an about page</h1>
+  </div>
+</template>

+ 18 - 0
mo/src/views/Home.vue

@@ -0,0 +1,18 @@
+<template>
+  <div class="home">
+    <img alt="Vue logo" src="../assets/logo.png">
+    <HelloWorld msg="Welcome to Your Vue.js App"/>
+  </div>
+</template>
+
+<script>
+// @ is an alias to /src
+import HelloWorld from '@/components/HelloWorld.vue'
+
+export default {
+  name: 'Home',
+  components: {
+    HelloWorld
+  }
+}
+</script>

+ 21 - 15
pc/public/index.html

@@ -1,17 +1,23 @@
 <!DOCTYPE html>
 <html lang="">
-  <head>
-    <meta charset="utf-8">
-    <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><%= htmlWebpackPlugin.options.title %></title>
-  </head>
-  <body>
-    <noscript>
-      <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
-    </noscript>
-    <div id="app"></div>
-    <!-- built files will be auto injected -->
-  </body>
-</html>
+
+<head>
+  <meta charset="utf-8">
+  <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><%= htmlWebpackPlugin.options.title %></title>
+</head>
+
+<body>
+  <noscript>
+    <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
+      Please enable it to continue.</strong>
+  </noscript>
+  <div id="app"></div>
+  <script src="//4dkk.4dage.com/v4/sdk/4.2.0/kankan-sdk-deps.js"></script>
+  <script src="//4dkk.4dage.com/v4/sdk/4.2.0/kankan-sdk.js"></script>
+  <!-- built files will be auto injected -->
+</body>
+
+</html>

+ 3 - 0
pc/src/views/Bottom2.vue

@@ -90,6 +90,9 @@ export default {
   methods: {
     // 点击底部的切换分区
     botChange(item) {
+      // console.log('--------',item.id);
+      // this.$emit('changeMap',)
+
       this.towAc = "1";
       this.towAc = item.id;
       if (this.box3Ac === 3) this.data = [...exArr3];

+ 23 - 0
pc/src/views/Home.vue

@@ -1,5 +1,8 @@
 <template>
   <div class="Home" @click.once="topBox2Show = true">
+    <!-- 全景页面 -->
+    <div class="iframeBox"></div>
+
     <!-- 在第一展厅和第二展厅出来的背景模板 -->
     <div class="tedingBac" v-show="oneSid > 2 && zhanShow"></div>
 
@@ -101,6 +104,8 @@ export default {
   components: { Bottom, Bottom2, Onezhan, Towzhan },
   data() {
     return {
+      iframeSrc: "http://localhost:8082/show.html?id=WK1554379240886071296",
+
       // 选择了航拍还是展厅
       oneSid: 1,
       zhanShow: true,
@@ -125,6 +130,16 @@ export default {
     },
   },
   methods: {
+    //生成四维看看
+    getSWKK(code) {
+      document.querySelector('.iframeBox').innerHTML=''
+      var kankan = new KanKan({
+        dom: ".iframeBox",
+        num:code,
+      });
+      kankan.render();
+    },
+
     // 点击左上角的返回
     backSta() {
       //回到博博会之前的开发页面
@@ -149,6 +164,7 @@ export default {
       this.zhanShow = false;
 
       // this.bttomIsShow = false;
+      this.getSWKK(code)
       console.log("VR改变了", code);
     },
     //点击复制链接
@@ -199,6 +215,13 @@ export default {
   position: relative;
   background-image: url("../assets/img/homeBg.jpg");
   background-size: 100% 100%;
+  .iframeBox {
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 100%;
+    height: 100%;
+  }
   .tedingBac {
     position: absolute;
     top: 0;

+ 3 - 1
pc/src/views/Onezhan.vue

@@ -173,7 +173,9 @@ export default {
     },
   },
   //生命周期 - 创建完成(可以访问当前this实例)
-  created() {},
+  created() {
+    // this.oneShow='1'
+  },
   //生命周期 - 挂载完成(可以访问DOM元素)
   mounted() {},
   beforeCreate() {}, //生命周期 - 创建之前

+ 283 - 292
pc/src/views/zhan.js

@@ -385,114 +385,119 @@ export const exArr3 = [
 
 export const exArr4 = [
   {
-    id: '1', name: '分区一', son: [{ id: '1_1', name: '广东博容照明科技有限公司', code: '2' },
-    { id: '1_2', name: '郑州杰林计算机科技有限公司', code: '2' },
-    { id: '1_3', name: '北京天马辉电子技术有限责任公司', code: '2' },
-    { id: '1_4', name: '广州市满天星礼品有限公司', code: '2' },
-    { id: '1_5', name: '深圳光子晶体科技有限公司', code: '2' },
-    { id: '1_6', name: '白城市嘉隆生物标本有限公司', code: '2' },
-    { id: '1_7', name: '上海云视科技股份有限公司', code: '2' },
-    { id: '1_8', name: '爱因极致科技(杭州)有限公司', code: '2' },
-    { id: '1_9', name: '润平投资有限公司', code: '2' },
-    { id: '1_10', name: '四川智能小子科技有限公司', code: '2' },
-    { id: '1_11', name: '江西源金科技集团有限公司', code: '2' },
-    { id: '1_12', name: '山东金东数字创意股份有限公司', code: '2' },
-    { id: '1_13', name: '北京雅昌艺术数据有限公司', code: '2' },
-    { id: '1_14', name: '杭州淘艺数据技术有限公司', code: '2' },
-    { id: '1_15', name: '天津玻昊玻璃科技有限公司', code: '2' },
-    { id: '1_16', name: '天津顺德文博科技有限公司', code: '2' },
-    { id: '1_17', name: '华格照明科技(上海)有限公司', code: '2' },
-    { id: '1_18', name: '中古文物保护集团有限公司', code: '2' },
-    { id: '1_19', name: '北京中古云博文化科技有限公司', code: '2' },
-    { id: '1_20', name: '福建先行网络服务有限公司', code: '2' },
-    { id: '1_21', name: '广州欧科信息技术股份有限公司', code: '2' },
-    { id: '1_22', name: '广州凡拓数字创意科技股份有限公司', code: '2' },
-    { id: '1_23', name: '北京美大文博科技有限公司', code: '2' },
-    { id: '1_24', name: '精锐文化创意产业有限公司', code: '2' },]
+    id: '1', name: '分区一', son: [
+      { id: '1_1', name: '广东博容照明科技有限公司', code: '2' },
+      { id: '1_2', name: '郑州杰林计算机科技有限公司', code: '2' },
+      { id: '1_3', name: '北京天马辉电子技术有限责任公司', code: '2' },
+      { id: '1_4', name: '广州市满天星礼品有限公司', code: '2' },
+      { id: '1_5', name: '深圳光子晶体科技有限公司', code: '2' },
+      { id: '1_6', name: '白城市嘉隆生物标本有限公司', code: '2' },
+      { id: '1_7', name: '上海云视科技股份有限公司', code: '2' },
+      { id: '1_8', name: '爱因极致科技(杭州)有限公司', code: '2' },
+      { id: '1_9', name: '润平投资有限公司', code: '2' },
+      { id: '1_10', name: '四川智能小子科技有限公司', code: '2' },
+      { id: '1_11', name: '江西源金科技集团有限公司', code: '2' },
+      { id: '1_12', name: '山东金东数字创意股份有限公司', code: '2' },
+      { id: '1_13', name: '北京雅昌艺术数据有限公司', code: '2' },
+      { id: '1_14', name: '杭州淘艺数据技术有限公司', code: '2' },
+      { id: '1_15', name: '天津玻昊玻璃科技有限公司', code: '2' },
+      { id: '1_16', name: '天津顺德文博科技有限公司', code: '2' },
+      { id: '1_17', name: '华格照明科技(上海)有限公司', code: '2' },
+      { id: '1_18', name: '中古文物保护集团有限公司', code: '2' },
+      { id: '1_19', name: '北京中古云博文化科技有限公司', code: '2' },
+      { id: '1_20', name: '福建先行网络服务有限公司', code: '2' },
+      { id: '1_21', name: '广州欧科信息技术股份有限公司', code: '2' },
+      { id: '1_22', name: '广州凡拓数字创意科技股份有限公司', code: '2' },
+      { id: '1_23', name: '北京美大文博科技有限公司', code: '2' },
+      { id: '1_24', name: '精锐文化创意产业有限公司', code: '2' },]
   },
 
   {
-    id: '2', name: '分区二', son: [{ id: '2_1', name: '中国建筑技术集团有限公司', code: '2' },
-    { id: '2_2', name: '北京融通新风洁净技术有限公司', code: '2' },
-    { id: '2_3', name: '湖南银宝科技发展有限公司', code: '2' },
-    { id: '2_4', name: '湖南博颢伟业科技有限公司', code: '2' },
-    { id: '2_5', name: '上海美术设计有限公司', code: '2' },
-    { id: '2_6', name: '北京世纪超星信息技术发展责任有限公司', code: '2' },
-    { id: '2_7', name: '中国建筑设计研究院有限公司', code: '2' },
-    { id: '2_8', name: '山东金晶科技股份有限公司', code: '2' },
-    { id: '2_9', name: '上海麦艺文化艺术设计有限公司', code: '2' },
-    { id: '2_10', name: '西安玧复工贸有限公司', code: '2' },
-    { id: '2_11', name: '广东华瑞照明科技有限公司', code: '2' },
-    { id: '2_12', name: '廊坊市文博展览科技开发有限公司', code: '2' },
-    { id: '2_13', name: '河南华要文博实业有限公司', code: '2' },
-    { id: '2_14', name: '广州力天文化创意产业集团有限公司', code: '2' },
-    { id: '2_15', name: '上海风语筑文化科技股份有限公司', code: '2' }]
+    id: '2', name: '分区二', son: [
+      { id: '2_1', name: '中国建筑技术集团有限公司', code: '2' },
+      { id: '2_2', name: '北京融通新风洁净技术有限公司', code: '2' },
+      { id: '2_3', name: '湖南银宝科技发展有限公司', code: '2' },
+      { id: '2_4', name: '湖南博颢伟业科技有限公司', code: '2' },
+      { id: '2_5', name: '上海美术设计有限公司', code: '2' },
+      { id: '2_6', name: '北京世纪超星信息技术发展责任有限公司', code: '2' },
+      { id: '2_7', name: '中国建筑设计研究院有限公司', code: '2' },
+      { id: '2_8', name: '山东金晶科技股份有限公司', code: '2' },
+      { id: '2_9', name: '上海麦艺文化艺术设计有限公司', code: '2' },
+      { id: '2_10', name: '西安玧复工贸有限公司', code: '2' },
+      { id: '2_11', name: '广东华瑞照明科技有限公司', code: '2' },
+      { id: '2_12', name: '廊坊市文博展览科技开发有限公司', code: '2' },
+      { id: '2_13', name: '河南华要文博实业有限公司', code: '2' },
+      { id: '2_14', name: '广州力天文化创意产业集团有限公司', code: '2' },
+      { id: '2_15', name: '上海风语筑文化科技股份有限公司', code: '2' }]
   },
 
   {
-    id: '3', name: '分区三', son: [{ id: '3-1', name: '上海妙文会展服务有限公司', code: '2' },
-    { id: '3-2', name: '深圳市冠标科技发展有限公司', code: '2' },
-    { id: '3-3', name: '惠州市西顿工业发展有限公司(Mayalit·玛雅照明)', code: '2' },
-    { id: '3-4', name: '深蓝文化发展有限公司', code: '2' },
-    { id: '3-5', name: '深圳积木易搭科技技术有限公司', code: '2' },
-    { id: '3-6', name: '河南显易文化科技有限公司', code: '2' },
-    { id: '3-7', name: '河南文博信息科技有限公司', code: '2' },
-    { id: '3-8', name: '绥芬河星光量子科技有限公司', code: '2' },
-    { id: '3-9', name: '上海宽创国际文化科技股份有限公司', code: '2' },
-    { id: '3-10', name: '陕西十月文物保护有限公司', code: '2' },
-    { id: '3-11', name: '苏州金螳螂文化发展股份有限公司', code: '2' },]
+    id: '3', name: '分区三', son: [
+      { id: '3-1', name: '上海妙文会展服务有限公司', code: '2' },
+      { id: '3-2', name: '深圳市冠标科技发展有限公司', code: '2' },
+      { id: '3-3', name: '惠州市西顿工业发展有限公司(Mayalit·玛雅照明)', code: '2' },
+      { id: '3-4', name: '深蓝文化发展有限公司', code: '2' },
+      { id: '3-5', name: '深圳积木易搭科技技术有限公司', code: '2' },
+      { id: '3-6', name: '河南显易文化科技有限公司', code: '2' },
+      { id: '3-7', name: '河南文博信息科技有限公司', code: '2' },
+      { id: '3-8', name: '绥芬河星光量子科技有限公司', code: '2' },
+      { id: '3-9', name: '上海宽创国际文化科技股份有限公司', code: '2' },
+      { id: '3-10', name: '陕西十月文物保护有限公司', code: '2' },
+      { id: '3-11', name: '苏州金螳螂文化发展股份有限公司', code: '2' },]
   },
 
   {
-    id: '4', name: '分区四', son: [{ id: '4_1', name: '天津旺达文博展具有限公司', code: '2' },
-    { id: '4_2', name: '重庆声光电智联电子有限公司', code: '2' },
-    { id: '4_3', name: '天津森罗科技股份有限公司', code: '2' },
-    { id: '4_4', name: '航天康达(北京)科技发展有限公司', code: '2' },
-    { id: '4_5', name: '安徽文保技术有限公司', code: '2' },
-    { id: '4_6', name: '北京华荣宏远包装箱有限公司', code: '2' },
-    { id: '4_7', name: '河北蓝器科技有限公司', code: '2' },
-    { id: '4_8', name: '武汉安保通科技有限公司', code: '2' },
-    { id: '4_9', name: '北京鑫致城文博科技有限公司', code: '2' },
-    { id: '4_10', name: '中航规划设计研究总院有限公司', code: '2' },
-    { id: '4_11', name: '机械工业仪器仪表综合技术经济研究所', code: '2' },
-    { id: '4_12', name: '西安元智系统技术有限责任公司', code: '2' },
-    { id: '4_13', name: '杭州众材科技股份有限公司', code: '2' },
-    { id: '4_14', name: '青岛盛瀚色谱技术有限公司', code: '2' },
-    { id: '4_15', name: '北京四信数字技术有限公司', code: '2' },
-    { id: '4_16', name: '上海衡元高分子材料有限公司', code: '2' },
-    { id: '4_17', name: '武汉旗云高科工程技术有限公司', code: '2' },
-    { id: '4_18', name: '天津文博', code: '2' },
-    { id: '4_19', name: '郑州枫华实业股份有限公司', code: '2' },
-    { id: '4_20', name: '北京亿鸿文博文化产业有限公司', code: '2' },
-    { id: '4_21', name: '凯迈(洛阳)航空防护装备有限公司', code: '2' },
-    { id: '4_22', name: '北京东方大地虫害防治有限公司', code: '2' },
-    { id: '4_23', name: '青岛清源峰达太赫兹科技有限公司', code: '2' },]
+    id: '4', name: '分区四', son: [
+      { id: '4_1', name: '天津旺达文博展具有限公司', code: '2' },
+      { id: '4_2', name: '重庆声光电智联电子有限公司', code: '2' },
+      { id: '4_3', name: '天津森罗科技股份有限公司', code: '2' },
+      { id: '4_4', name: '航天康达(北京)科技发展有限公司', code: '2' },
+      { id: '4_5', name: '安徽文保技术有限公司', code: '2' },
+      { id: '4_6', name: '北京华荣宏远包装箱有限公司', code: '2' },
+      { id: '4_7', name: '河北蓝器科技有限公司', code: '2' },
+      { id: '4_8', name: '武汉安保通科技有限公司', code: '2' },
+      { id: '4_9', name: '北京鑫致城文博科技有限公司', code: '2' },
+      { id: '4_10', name: '中航规划设计研究总院有限公司', code: '2' },
+      { id: '4_11', name: '机械工业仪器仪表综合技术经济研究所', code: '2' },
+      { id: '4_12', name: '西安元智系统技术有限责任公司', code: '2' },
+      { id: '4_13', name: '杭州众材科技股份有限公司', code: '2' },
+      { id: '4_14', name: '青岛盛瀚色谱技术有限公司', code: '2' },
+      { id: '4_15', name: '北京四信数字技术有限公司', code: '2' },
+      { id: '4_16', name: '上海衡元高分子材料有限公司', code: '2' },
+      { id: '4_17', name: '武汉旗云高科工程技术有限公司', code: '2' },
+      { id: '4_18', name: '天津文博', code: '2' },
+      { id: '4_19', name: '郑州枫华实业股份有限公司', code: '2' },
+      { id: '4_20', name: '北京亿鸿文博文化产业有限公司', code: '2' },
+      { id: '4_21', name: '凯迈(洛阳)航空防护装备有限公司', code: '2' },
+      { id: '4_22', name: '北京东方大地虫害防治有限公司', code: '2' },
+      { id: '4_23', name: '青岛清源峰达太赫兹科技有限公司', code: '2' },]
   },
 
   {
-    id: '5', name: '分区五', son: [{ id: '5_1', name: '贵州省博物馆', code: '2' },
-    { id: '5_2', name: '天津博物馆', code: '2' },
-    { id: '5_3', name: '首都博物馆', code: '2' },
-    { id: '5_4', name: '青海省博物馆', code: '2' },
-    { id: '5_5', name: '西宁市博物馆', code: '2' },
-    { id: '5_6', name: '海西州民族博物馆', code: '2' },
-    { id: '5_7', name: '海南藏族自治州民族博物馆', code: '2' },
-    { id: '5_8', name: '黄南州民族博物馆', code: '2' },
-    { id: '5_9', name: '青海藏医药文化博物馆', code: '2' },
-    { id: '5_10', name: '青海原子城纪念馆', code: '2' },
-    { id: '5_11', name: '青藏高原自然博物馆', code: '2' },
-    { id: '5_12', name: '青海省马佳肴民族文化博物馆', code: '2' },
-    { id: '5_13', name: '新疆维吾尔自治区博物馆', code: '2' },
-    { id: '5_14', name: '乌鲁木齐市博物馆(八路军驻新疆办事处纪念馆)', code: '2' },
-    { id: '5_15', name: '克拉玛依市博物馆', code: '2' },
-    { id: '5_16', name: '和田地区博物馆', code: '2' },
-    { id: '5_17', name: '塔城市手风琴博物馆', code: '2' },
-    { id: '5_18', name: '第三师图木舒克市历史文物陈列馆', code: '2' },
-    { id: '5_19', name: '上海大学博物馆', code: '2' },
-    { id: '5_20', name: '故宫学校', code: '2' },
-    { id: '5_21', name: '新华社', code: '2' },
-    { id: '5_22', name: '博物馆进校园', code: '2' },
-    { id: '5_23', name: '全国博物馆志愿者工作现状展示', code: '2' },]
+    id: '5', name: '分区五', son: [
+      { id: '5_1', name: '贵州省博物馆', code: '2' },
+      { id: '5_2', name: '天津博物馆', code: '2' },
+      { id: '5_3', name: '首都博物馆', code: '2' },
+      { id: '5_4', name: '青海省博物馆', code: '2' },
+      { id: '5_5', name: '西宁市博物馆', code: '2' },
+      { id: '5_6', name: '海西州民族博物馆', code: '2' },
+      { id: '5_7', name: '海南藏族自治州民族博物馆', code: '2' },
+      { id: '5_8', name: '黄南州民族博物馆', code: '2' },
+      { id: '5_9', name: '青海藏医药文化博物馆', code: '2' },
+      { id: '5_10', name: '青海原子城纪念馆', code: '2' },
+      { id: '5_11', name: '青藏高原自然博物馆', code: '2' },
+      { id: '5_12', name: '青海省马佳肴民族文化博物馆', code: '2' },
+      { id: '5_13', name: '新疆维吾尔自治区博物馆', code: '2' },
+      { id: '5_14', name: '乌鲁木齐市博物馆(八路军驻新疆办事处纪念馆)', code: '2' },
+      { id: '5_15', name: '克拉玛依市博物馆', code: '2' },
+      { id: '5_16', name: '和田地区博物馆', code: '2' },
+      { id: '5_17', name: '塔城市手风琴博物馆', code: '2' },
+      { id: '5_18', name: '第三师图木舒克市历史文物陈列馆', code: '2' },
+      { id: '5_19', name: '上海大学博物馆', code: '2' },
+      { id: '5_20', name: '故宫学校', code: '2' },
+      { id: '5_21', name: '新华社', code: '2' },
+      { id: '5_22', name: '博物馆进校园', code: '2' },
+      { id: '5_23', name: '全国博物馆志愿者工作现状展示', code: '2' },]
   },
 
   {
@@ -603,217 +608,203 @@ export const exArr4 = [
   },
 
   {
-    id: '7', name: '分区七', son: [{ id: '7_1', name: '四川博物院', code: '2' },
-    { id: '7_2', name: '成都市文物信息中心', code: '2' },
-    { id: '7_3', name: '成都博物馆', code: '2' },
-    { id: '7_4', name: '武侯祠博物馆', code: '2' },
-    { id: '7_5', name: '成都永陵博物馆', code: '2' },
-    { id: '7_6', name: '泸州市博物馆', code: '2' },
-    { id: '7_7', name: '邓小平故居陈列馆', code: '2' },
-    { id: '7_8', name: '宜宾市博物院', code: '2' },
-    { id: '7_9', name: '广汉三星堆博物馆', code: '2' },
-    { id: '7_10', name: '成都金沙遗址博物馆', code: '2' },
-    { id: '7_11', name: '重庆中国三峡博物馆', code: '2' },
-    { id: '7_12', name: '重庆自然博物馆', code: '2' },
-    { id: '7_13', name: '大足石刻博物馆', code: '2' },
-    { id: '7_14', name: '重庆三峡移民纪念馆(万州区博物馆)、重庆三峡文化创意集团', code: '2' },
-    { id: '7_15', name: '涪陵博物馆', code: '2' },
-    { id: '7_16', name: '重庆市大渡口区博物馆', code: '2' },
-    { id: '7_17', name: '重庆市北碚区博物馆', code: '2' },
-    { id: '7_18', name: '重庆市巴南区博物馆', code: '2' },
-    { id: '7_19', name: '重庆市开州博物馆', code: '2' },
-    { id: '7_20', name: '夔州博物馆', code: '2' },
-    { id: '7_21', name: '巫山县文物管理所(巫山博物馆)', code: '2' },
-    { id: '7_22', name: '云阳县博物馆', code: '2' },
-    { id: '7_23', name: '忠州博物馆', code: '2' },
-    { id: '7_24', name: '重庆工业博物馆', code: '2' },
-    { id: '7_25', name: '重庆历史名人馆', code: '2' },
-    { id: '7_26', name: '重庆巴渝民俗博物馆', code: '2' },
-    { id: '7_27', name: '重庆市梁平区博物馆', code: '2' },
-    { id: '7_28', name: '吴文化博物馆(吴中博物馆)', code: '2' },
-    { id: '7_29', name: '陕西历史博物馆', code: '2' },]
+    id: '7', name: '分区七', son: [
+      { id: '7_1', name: '四川博物院', code: '2' },
+      { id: '7_2', name: '成都市文物信息中心', code: '2' },
+      { id: '7_3', name: '成都博物馆', code: '2' },
+      { id: '7_4', name: '武侯祠博物馆', code: '2' },
+      { id: '7_5', name: '成都永陵博物馆', code: '2' },
+      { id: '7_6', name: '泸州市博物馆', code: '2' },
+      { id: '7_7', name: '邓小平故居陈列馆', code: '2' },
+      { id: '7_8', name: '宜宾市博物院', code: '2' },
+      { id: '7_9', name: '广汉三星堆博物馆', code: '2' },
+      { id: '7_10', name: '成都金沙遗址博物馆', code: '2' },
+      { id: '7_11', name: '重庆中国三峡博物馆', code: '2' },
+      { id: '7_12', name: '重庆自然博物馆', code: '2' },
+      { id: '7_13', name: '大足石刻博物馆', code: '2' },
+      { id: '7_14', name: '重庆三峡移民纪念馆(万州区博物馆)、重庆三峡文化创意集团', code: '2' },
+      { id: '7_15', name: '涪陵博物馆', code: '2' },
+      { id: '7_16', name: '重庆市大渡口区博物馆', code: '2' },
+      { id: '7_17', name: '重庆市北碚区博物馆', code: '2' },
+      { id: '7_18', name: '重庆市巴南区博物馆', code: '2' },
+      { id: '7_19', name: '重庆市开州博物馆', code: '2' },
+      { id: '7_20', name: '夔州博物馆', code: '2' },
+      { id: '7_21', name: '巫山县文物管理所(巫山博物馆)', code: '2' },
+      { id: '7_22', name: '云阳县博物馆', code: '2' },
+      { id: '7_23', name: '忠州博物馆', code: '2' },
+      { id: '7_24', name: '重庆工业博物馆', code: '2' },
+      { id: '7_25', name: '重庆历史名人馆', code: '2' },
+      { id: '7_26', name: '重庆巴渝民俗博物馆', code: '2' },
+      { id: '7_27', name: '重庆市梁平区博物馆', code: '2' },
+      { id: '7_28', name: '吴文化博物馆(吴中博物馆)', code: '2' },
+      { id: '7_29', name: '陕西历史博物馆', code: '2' },]
   },
 
   {
-    id: '8', name: '分区八', son: [{ id: '8_1', name: '福建省昙石山遗址博物馆', code: '2' },
-    { id: '8_2', name: '福建博物院', code: '2' },
-    { id: '8_3', name: '福州市博物馆', code: '2' },
-    { id: '8_4', name: '福建民俗博物馆', code: '2' },
-    { id: '8_5', name: '天天筷子博物馆', code: '2' },
-    { id: '8_6', name: '沈绍安漆器博物馆', code: '2' },
-    { id: '8_7', name: '福州市严复翰墨馆', code: '2' },
-    { id: '8_8', name: '福州市林则徐纪念馆', code: '2' },
-    { id: '8_9', name: '中央苏区(闽西)历史博物馆', code: '2' },
-    { id: '8_10', name: '邵武市博物馆', code: '2' },
-    { id: '8_11', name: '闽越王城博物馆', code: '2' },
-    { id: '8_12', name: '南平市博物馆', code: '2' },
-    { id: '8_13', name: '莆田市博物馆', code: '2' },
-    { id: '8_14', name: '德化县顺美海丝陶瓷历史博物馆', code: '2' },
-    { id: '8_15', name: '泉州市博物馆', code: '2' },
-    { id: '8_16', name: '世茂海丝馆', code: '2' },
-    { id: '8_17', name: '三明市博物馆', code: '2' },
-    { id: '8_18', name: '故宫鼓浪屿外国文物馆', code: '2' },
-    { id: '8_19', name: '福建省海丝钟表博物馆', code: '2' },
-    { id: '8_20', name: '漳州市博物馆', code: '2' },
-    { id: '8_21', name: '万寿岩国家考古遗址公园', code: '2' },
-    { id: '8_22', name: '苏州博物馆', code: '2' },
-    { id: '8_23', name: '湖南博物院', code: '2' },
-    { id: '8_24', name: '上海博物馆', code: '2' },
-    { id: '8_25', name: '上海中国航海博物馆', code: '2' },
-    { id: '8_26', name: '甘肃省博物馆', code: '2' },
-    { id: '8_27', name: '武威市博物馆', code: '2' },
-    { id: '8_28', name: '金昌市博物馆', code: '2' },
-    { id: '8_29', name: '永昌县博物馆', code: '2' },
-    { id: '8_30', name: '金昌市金川区博物馆', code: '2' },
-    { id: '8_31', name: '南梁革命纪念馆', code: '2' },
-    { id: '8_32', name: '平凉市博物馆', code: '2' },
-    { id: '8_33', name: '渭源县博物馆', code: '2' },
-    { id: '8_34', name: '定西市博物馆', code: '2' },
-    { id: '8_35', name: '甘肃省陇西县博物馆', code: '2' },
-    { id: '8_36', name: '临洮县博物馆', code: '2' },
-    { id: '8_37', name: '定西市安定区博物馆', code: '2' },
-    { id: '8_38', name: '通渭县博物馆', code: '2' },
-    { id: '8_39', name: '岷县博物馆', code: '2' },
-    { id: '8_40', name: '漳县博物馆', code: '2' },
-    { id: '8_41', name: '白银市博物馆', code: '2' },
-    { id: '8_42', name: '靖远县博物馆', code: '2' },
-    { id: '8_43', name: '广河县齐家文化博物馆', code: '2' },
-    { id: '8_44', name: '山西博物院', code: '2' },
-    { id: '8_45', name: '山西地质博物馆', code: '2' },
-    { id: '8_46', name: '阳泉市博物馆', code: '2' },
-    { id: '8_47', name: '运城博物馆', code: '2' },
-    { id: '8_48', name: '太原市博物馆', code: '2' },
-    { id: '8_49', name: '大同市博物馆', code: '2' },
-    { id: '8_50', name: '山西考古博物馆', code: '2' },
-    { id: '8_51', name: '吕梁市博物馆', code: '2' },
-    { id: '8_52', name: '临汾市博物馆', code: '2' },]
+    id: '8', name: '分区八', son: [
+      { id: '8_1', name: '福建省昙石山遗址博物馆', code: '2' },
+      { id: '8_2', name: '福建博物院', code: '2' },
+      { id: '8_3', name: '福州市博物馆', code: '2' },
+      { id: '8_4', name: '福建民俗博物馆', code: '2' },
+      { id: '8_5', name: '天天筷子博物馆', code: '2' },
+      { id: '8_6', name: '沈绍安漆器博物馆', code: '2' },
+      { id: '8_7', name: '福州市严复翰墨馆', code: '2' },
+      { id: '8_8', name: '福州市林则徐纪念馆', code: '2' },
+      { id: '8_9', name: '中央苏区(闽西)历史博物馆', code: '2' },
+      { id: '8_10', name: '邵武市博物馆', code: '2' },
+      { id: '8_11', name: '闽越王城博物馆', code: '2' },
+      { id: '8_12', name: '南平市博物馆', code: '2' },
+      { id: '8_13', name: '莆田市博物馆', code: '2' },
+      { id: '8_14', name: '德化县顺美海丝陶瓷历史博物馆', code: '2' },
+      { id: '8_15', name: '泉州市博物馆', code: '2' },
+      { id: '8_16', name: '世茂海丝馆', code: '2' },
+      { id: '8_17', name: '三明市博物馆', code: '2' },
+      { id: '8_18', name: '故宫鼓浪屿外国文物馆', code: '2' },
+      { id: '8_19', name: '福建省海丝钟表博物馆', code: '2' },
+      { id: '8_20', name: '漳州市博物馆', code: '2' },
+      { id: '8_21', name: '万寿岩国家考古遗址公园', code: '2' },
+      { id: '8_22', name: '苏州博物馆', code: '2' },
+      { id: '8_23', name: '湖南博物院', code: '2' },
+      { id: '8_24', name: '上海博物馆', code: '2' },
+      { id: '8_25', name: '上海中国航海博物馆', code: '2' },
+      { id: '8_26', name: '甘肃省博物馆', code: '2' },
+      { id: '8_27', name: '武威市博物馆', code: '2' },
+      { id: '8_28', name: '金昌市博物馆', code: '2' },
+      { id: '8_29', name: '永昌县博物馆', code: '2' },
+      { id: '8_30', name: '金昌市金川区博物馆', code: '2' },
+      { id: '8_31', name: '南梁革命纪念馆', code: '2' },
+      { id: '8_32', name: '平凉市博物馆', code: '2' },
+      { id: '8_33', name: '渭源县博物馆', code: '2' },
+      { id: '8_34', name: '定西市博物馆', code: '2' },
+      { id: '8_35', name: '甘肃省陇西县博物馆', code: '2' },
+      { id: '8_36', name: '临洮县博物馆', code: '2' },
+      { id: '8_37', name: '定西市安定区博物馆', code: '2' },
+      { id: '8_38', name: '通渭县博物馆', code: '2' },
+      { id: '8_39', name: '岷县博物馆', code: '2' },
+      { id: '8_40', name: '漳县博物馆', code: '2' },
+      { id: '8_41', name: '白银市博物馆', code: '2' },
+      { id: '8_42', name: '靖远县博物馆', code: '2' },
+      { id: '8_43', name: '广河县齐家文化博物馆', code: '2' },
+      { id: '8_44', name: '山西博物院', code: '2' },
+      { id: '8_45', name: '山西地质博物馆', code: '2' },
+      { id: '8_46', name: '阳泉市博物馆', code: '2' },
+      { id: '8_47', name: '运城博物馆', code: '2' },
+      { id: '8_48', name: '太原市博物馆', code: '2' },
+      { id: '8_49', name: '大同市博物馆', code: '2' },
+      { id: '8_50', name: '山西考古博物馆', code: '2' },
+      { id: '8_51', name: '吕梁市博物馆', code: '2' },
+      { id: '8_52', name: '临汾市博物馆', code: '2' },]
   },
 
   {
-    id: '9', name: '分区九', son: [{ id: '9_1', name: '湖北省博物馆', code: '2' },
-    { id: '9_2', name: '广东省文化旅游厅', code: '2' },
-    { id: '9_3', name: '广东省博物馆', code: '2' },
-    { id: '9_4', name: '广东民间工艺博物馆', code: '2' },
-    { id: '9_5', name: '广州市文物考古研究院(南汉二陵博物馆)', code: '2' },
-    { id: '9_6', name: '西汉南越王博物馆', code: '2' },
-    { id: '9_7', name: '广州博物馆', code: '2' },
-    { id: '9_8', name: '广州艺术博物馆', code: '2' },
-    { id: '9_9', name: '孙中山大元帅府纪念馆', code: '2' },
-    { id: '9_10', name: '广州市天河区正佳自然科学博物馆', code: '2' },
-    { id: '9_11', name: '深圳博物馆', code: '2' },
-    { id: '9_12', name: '南山博物馆', code: '2' },
-    { id: '9_13', name: '江门市博物馆', code: '2' },
-    { id: '9_14', name: '茂名市博物馆', code: '2' },
-    { id: '9_15', name: '清远市博物馆', code: '2' },
-    { id: '9_16', name: '佛山祖庙博物馆', code: '2' },
-    { id: '9_17', name: '韶关市博物馆', code: '2' },
-    { id: '9_18', name: '红军长征粤北纪念馆', code: '2' },
-    { id: '9_19', name: '广东海上丝绸之路博物馆', code: '2' },
-    { id: '9_20', name: '东莞市袁崇焕纪念园', code: '2' },
-    { id: '9_21', name: '东莞市可园博物馆', code: '2' },
-    { id: '9_22', name: '东莞唯美陶瓷博物馆', code: '2' },
-    { id: '9_23', name: '惠州博物馆', code: '2' },
-    { id: '9_24', name: '中华慈善博物馆', code: '2' },
-    { id: '9_25', name: '无锡博物院', code: '2' },
-    { id: '9_26', name: '安徽博物院', code: '2' },
-    { id: '9_27', name: '安徽省地质博物馆', code: '2' },
-    { id: '9_28', name: '渡江战役纪念馆(安徽名人馆)', code: '2' },
-    { id: '9_29', name: '马鞍山市博物馆', code: '2' },
-    { id: '9_30', name: '池州市博物馆', code: '2' },
-    { id: '9_31', name: '安庆博物馆', code: '2' },
-    { id: '9_32', name: '蚌埠市博物馆', code: '2' },
-    { id: '9_33', name: '亳州市博物馆', code: '2' },
-    { id: '9_34', name: '芜湖市博物馆', code: '2' },
-    { id: '9_35', name: '淮北市博物馆', code: '2' },
-    { id: '9_36', name: '宿州市博物馆', code: '2' },
-    { id: '9_37', name: '界首博物馆', code: '2' },
-    { id: '9_38', name: '铜陵市博物馆', code: '2' },
-    { id: '9_39', name: '禹会村遗址博物馆', code: '2' },
-    { id: '9_40', name: '广西博物馆协会', code: '2' },
-    { id: '9_41', name: '广西壮族自治区博物馆', code: '2' },
-    { id: '9_42', name: '广西民族博物馆', code: '2' },
-    { id: '9_43', name: '广西壮族自治区自然博物馆', code: '2' },
-    { id: '9_44', name: '桂林博物馆', code: '2' },
-    { id: '9_45', name: '柳州市博物馆', code: '2' },
-    { id: '9_46', name: '玉林市博物馆', code: '2' },
-    { id: '9_47', name: '杭州博物文化传播有限公司', code: '2' },
-    { id: '9_48', name: '文博圈', code: '2' },
-    { id: '9_49', name: '国机工业互联网研究院(河南)有限公司', code: '2' },
-    { id: '9_50', name: '辽宁美术出版社有限责任公司', code: '2' },
-    { id: '9_51', name: '三潮元老文化创意(广州)有限公司', code: '2' },
-    { id: '9_52', name: '雷尼绍(上海)贸易有限公司', code: '2' },
-    { id: '9_53', name: '天津三英精密仪器股份有限公司', code: '2' },
-    { id: '9_54', name: '上海萌色调科技发展有限公司', code: '2' },
-    { id: '9_55', name: '广西灵山县嘉篮工艺品有限公司', code: '2' },
-    { id: '9_56', name: '苏州三套车展览展示有限公司', code: '2' },
-    { id: '9_57', name: '佛山环球标本装备有限公司', code: '2' },
-    { id: '9_58', name: '广州荣海科技发展有限公司', code: '2' },
-    { id: '9_59', name: '南京博思麦电子科技有限公司', code: '2' },
-    { id: '9_60', name: '江苏魔法工坊网络科技有限公司', code: '2' },
-    { id: '9_61', name: '江苏印象乾图文化科技有限公司', code: '2' },
-    { id: '9_62', name: '海南来者实业有限公司', code: '2' },
-    { id: '9_63', name: '杭州盼打科技有限公司', code: '2' },
-    { id: '9_64', name: '山西辰涵数字科技股份有限公司', code: '2' },
-    { id: '9_65', name: '北京智合润联科技发展有限公司', code: '2' },
-    { id: '9_66', name: '弘博网', code: '2' },
-    { id: '9_67', name: '天津立达电子设备有限公司', code: '2' },]
+    id: '9', name: '分区九', son: [
+      { id: '9_1', name: '湖北省博物馆', code: '2' },
+      { id: '9_2', name: '广东省文化旅游厅', code: '2' },
+      { id: '9_3', name: '广东省博物馆', code: '2' },
+      { id: '9_4', name: '广东民间工艺博物馆', code: '2' },
+      { id: '9_5', name: '广州市文物考古研究院(南汉二陵博物馆)', code: '2' },
+      { id: '9_6', name: '西汉南越王博物馆', code: '2' },
+      { id: '9_7', name: '广州博物馆', code: '2' },
+      { id: '9_8', name: '广州艺术博物馆', code: '2' },
+      { id: '9_9', name: '孙中山大元帅府纪念馆', code: '2' },
+      { id: '9_10', name: '广州市天河区正佳自然科学博物馆', code: '2' },
+      { id: '9_11', name: '深圳博物馆', code: '2' },
+      { id: '9_12', name: '南山博物馆', code: '2' },
+      { id: '9_13', name: '江门市博物馆', code: '2' },
+      { id: '9_14', name: '茂名市博物馆', code: '2' },
+      { id: '9_15', name: '清远市博物馆', code: '2' },
+      { id: '9_16', name: '佛山祖庙博物馆', code: '2' },
+      { id: '9_17', name: '韶关市博物馆', code: '2' },
+      { id: '9_18', name: '红军长征粤北纪念馆', code: '2' },
+      { id: '9_19', name: '广东海上丝绸之路博物馆', code: '2' },
+      { id: '9_20', name: '东莞市袁崇焕纪念园', code: '2' },
+      { id: '9_21', name: '东莞市可园博物馆', code: '2' },
+      { id: '9_22', name: '东莞唯美陶瓷博物馆', code: '2' },
+      { id: '9_23', name: '惠州博物馆', code: '2' },
+      { id: '9_24', name: '中华慈善博物馆', code: '2' },
+      { id: '9_25', name: '无锡博物院', code: '2' },
+      { id: '9_26', name: '安徽博物院', code: '2' },
+      { id: '9_27', name: '安徽省地质博物馆', code: '2' },
+      { id: '9_28', name: '渡江战役纪念馆(安徽名人馆)', code: '2' },
+      { id: '9_29', name: '马鞍山市博物馆', code: '2' },
+      { id: '9_30', name: '池州市博物馆', code: '2' },
+      { id: '9_31', name: '安庆博物馆', code: '2' },
+      { id: '9_32', name: '蚌埠市博物馆', code: '2' },
+      { id: '9_33', name: '亳州市博物馆', code: '2' },
+      { id: '9_34', name: '芜湖市博物馆', code: '2' },
+      { id: '9_35', name: '淮北市博物馆', code: '2' },
+      { id: '9_36', name: '宿州市博物馆', code: '2' },
+      { id: '9_37', name: '界首博物馆', code: '2' },
+      { id: '9_38', name: '铜陵市博物馆', code: '2' },
+      { id: '9_39', name: '禹会村遗址博物馆', code: '2' },
+      { id: '9_40', name: '广西博物馆协会', code: '2' },
+      { id: '9_41', name: '广西壮族自治区博物馆', code: '2' },
+      { id: '9_42', name: '广西民族博物馆', code: '2' },
+      { id: '9_43', name: '广西壮族自治区自然博物馆', code: '2' },
+      { id: '9_44', name: '桂林博物馆', code: '2' },
+      { id: '9_45', name: '柳州市博物馆', code: '2' },
+      { id: '9_46', name: '玉林市博物馆', code: '2' },
+      { id: '9_47', name: '杭州博物文化传播有限公司', code: '2' },
+      { id: '9_48', name: '文博圈', code: '2' },
+      { id: '9_49', name: '国机工业互联网研究院(河南)有限公司', code: '2' },
+      { id: '9_50', name: '辽宁美术出版社有限责任公司', code: '2' },
+      { id: '9_51', name: '三潮元老文化创意(广州)有限公司', code: '2' },
+      { id: '9_52', name: '雷尼绍(上海)贸易有限公司', code: '2' },
+      { id: '9_53', name: '天津三英精密仪器股份有限公司', code: '2' },
+      { id: '9_54', name: '上海萌色调科技发展有限公司', code: '2' },
+      { id: '9_55', name: '广西灵山县嘉篮工艺品有限公司', code: '2' },
+      { id: '9_56', name: '苏州三套车展览展示有限公司', code: '2' },
+      { id: '9_57', name: '佛山环球标本装备有限公司', code: '2' },
+      { id: '9_58', name: '广州荣海科技发展有限公司', code: '2' },
+      { id: '9_59', name: '南京博思麦电子科技有限公司', code: '2' },
+      { id: '9_60', name: '江苏魔法工坊网络科技有限公司', code: '2' },
+      { id: '9_61', name: '江苏印象乾图文化科技有限公司', code: '2' },
+      { id: '9_62', name: '海南来者实业有限公司', code: '2' },
+      { id: '9_63', name: '杭州盼打科技有限公司', code: '2' },
+      { id: '9_64', name: '山西辰涵数字科技股份有限公司', code: '2' },
+      { id: '9_65', name: '北京智合润联科技发展有限公司', code: '2' },
+      { id: '9_66', name: '弘博网', code: '2' },
+      { id: '9_67', name: '天津立达电子设备有限公司', code: '2' },]
   },
 ]
 
 export const exArr1 = [
   {
-    id: '1', name: '分区一', son: [{ id: '1_1', name: '航拍1', code: '3' },
-    { id: '1_2', name: '航拍1', code: '3' },
-    { id: '1_3', name: '航拍1', code: '3' },
-    { id: '1_4', name: '航拍1', code: '3' },
-    { id: '1_5', name: '航拍1', code: '3' },
-    { id: '1_6', name: '航拍1', code: '3' },
-    { id: '1_7', name: '航拍1', code: '3' },
-    { id: '1_8', name: '航拍1', code: '3' },
-    { id: '1_9', name: '航拍1', code: '3' },
-    { id: '1_10', name: '航拍1', code: '3' },
-    { id: '1_11', name: '航拍1', code: '3' },
-    { id: '1_12', name: '航拍1', code: '3' },
-    { id: '1_13', name: '航拍1', code: '3' },
-    { id: '1_14', name: '航拍1', code: '3' },
-    { id: '1_15', name: '航拍1', code: '3' },
-    { id: '1_16', name: '航拍1', code: '3' },
-    { id: '1_17', name: '航拍1', code: '3' },
-    { id: '1_18', name: '航拍1', code: '3' },
-    { id: '1_19', name: '航拍1', code: '3' },
-    { id: '1_20', name: '航拍1', code: '3' },
-    { id: '1_21', name: '航拍1', code: '3' },
-    { id: '1_22', name: '航拍1', code: '3' },
-    { id: '1_23', name: '航拍1', code: '3' },
-    { id: '1_24', name: '航拍1', code: '3' },]
+    id: '1', name: '分区一', son: [
+      { id: '1_1', name: '航拍1', code: 'KJ-JYo2ZZyKKJ' },
+      { id: '1_2', name: '航拍1', code: 'JkX8PRjdK&lang=zh' },
+      { id: '1_3', name: '航拍1', code: 'zhPdq268Z&lang=zh' },
+    ]
   },
 ]
 
 export const exArr2 = [
   {
-    id: '1', name: '分区一', son: [{ id: '1_1', name: '地面1', code: '4' },
-    { id: '1_2', name: '地面1', code: '4' },
-    { id: '1_3', name: '地面1', code: '4' },
-    { id: '1_4', name: '地面1', code: '4' },
-    { id: '1_5', name: '地面1', code: '4' },
-    { id: '1_6', name: '地面1', code: '4' },
-    { id: '1_7', name: '地面1', code: '4' },
-    { id: '1_8', name: '地面1', code: '4' },
-    { id: '1_9', name: '地面1', code: '4' },
-    { id: '1_10', name: '地面1', code: '4' },
-    { id: '1_11', name: '地面1', code: '4' },
-    { id: '1_12', name: '地面1', code: '4' },
-    { id: '1_13', name: '地面1', code: '4' },
-    { id: '1_14', name: '地面1', code: '4' },
-    { id: '1_15', name: '地面1', code: '4' },
-    { id: '1_16', name: '地面1', code: '4' },
-    { id: '1_17', name: '地面1', code: '4' },
-    { id: '1_18', name: '地面1', code: '4' },
-    { id: '1_19', name: '地面1', code: '4' },
-    { id: '1_20', name: '地面1', code: '4' },
-    { id: '1_21', name: '地面1', code: '4' },
-    { id: '1_22', name: '地面1', code: '4' },
-    { id: '1_23', name: '地面1', code: '4' },
-    { id: '1_24', name: '地面1', code: '4' },]
+    id: '1', name: '分区一', son: [
+      { id: '1_1', name: '地面1', code: '4' },
+      { id: '1_2', name: '地面1', code: '4' },
+      { id: '1_3', name: '地面1', code: '4' },
+      { id: '1_4', name: '地面1', code: '4' },
+      { id: '1_5', name: '地面1', code: '4' },
+      { id: '1_6', name: '地面1', code: '4' },
+      { id: '1_7', name: '地面1', code: '4' },
+      { id: '1_8', name: '地面1', code: '4' },
+      { id: '1_9', name: '地面1', code: '4' },
+      { id: '1_10', name: '地面1', code: '4' },
+      { id: '1_11', name: '地面1', code: '4' },
+      { id: '1_12', name: '地面1', code: '4' },
+      { id: '1_13', name: '地面1', code: '4' },
+      { id: '1_14', name: '地面1', code: '4' },
+      { id: '1_15', name: '地面1', code: '4' },
+      { id: '1_16', name: '地面1', code: '4' },
+      { id: '1_17', name: '地面1', code: '4' },
+      { id: '1_18', name: '地面1', code: '4' },
+      { id: '1_19', name: '地面1', code: '4' },
+      { id: '1_20', name: '地面1', code: '4' },
+      { id: '1_21', name: '地面1', code: '4' },
+      { id: '1_22', name: '地面1', code: '4' },
+      { id: '1_23', name: '地面1', code: '4' },
+      { id: '1_24', name: '地面1', code: '4' },
+    ]
   },
 ]