Explorar o código

修改公司名称为窍笔软件技术(深圳)有限公司

zhuliu hai 3 semanas
pai
achega
53dc81230b

+ 4 - 1
src/views/backStageManage/login/component/register.vue

@@ -115,7 +115,10 @@
         </div>
       </div>
       <div class="copyright">
-        copyright©灵智信息服务(深圳)有限公司
+        copyright©窍笔软件技术(深圳)有限公司
+        <div style="padding:5px 0;">
+          <a href="https://beian.miit.gov.cn/" target="_blank" style="color:white;text-decoration:none">粤ICP备2025429440号</a> 
+        </div>
       </div>
     </div>
 </template>

+ 1 - 1
src/views/backStageManage/login/index.vue

@@ -63,7 +63,7 @@
       </div>
     </div>
     <div class="copyright">
-      copyright©灵智信息服务(深圳)有限公司
+      copyright©窍笔软件技术(深圳)有限公司
       <div style="padding:5px 0;">
         <a href="https://beian.miit.gov.cn/" target="_blank" style="color:white;text-decoration:none">粤ICP备2025429440号</a>
       </div>

+ 16 - 1
src/views/home/components/downLoad/downLoad.vue

@@ -13,6 +13,7 @@
     <div class="tool">
       <div class="version">{{ version.versionNum }}</div>
       <div class="fun" @click="getIntroduction">功能介绍</div>
+      <!-- <div class="more" @click="more">了解更多</div> -->
     </div>
 
   </div>
@@ -63,6 +64,14 @@ export default {
       )
       window.open(router.href,'_blank')
     },
+    more(){
+      const router = this.$router.resolve(
+        {
+          path:'moreMessage'
+        }
+      )
+      window.open(router.href,'_blank')
+    },
   },
 };
 </script>
@@ -109,8 +118,14 @@ export default {
       padding: 0 20px;
       display: flex;
       align-items: center;
-      justify-content: space-between;
+      // justify-content: space-between;
+      justify-content: center;
       font-weight: bolder;
+      .more{
+        color: #234ce6;
+        font-size: 14px;
+        cursor: pointer;
+      }
       .version{
         padding: 2px;
         color: black;

+ 0 - 21
src/views/home/components/functionIntroduction/functionIntroduction.vue

@@ -1,21 +0,0 @@
-<template>
-  <div>功能介绍</div>
-</template>
-
-<script>
-export default {
-  components: {},
-  props: {},
-  data() {
-    return {
-    };
-  },
-  watch: {},
-  computed: {},
-  created() {},
-  mounted() {},
-  methods: {},
-};
-</script>
-<style lang="scss" scoped>
-</style>

+ 0 - 0
src/views/home/components/functionIntroduction/index.vue


+ 0 - 21
src/views/home/components/videoDemo/index.vue

@@ -1,21 +0,0 @@
-<template>
-  <div></div>
-</template>
-
-<script>
-export default {
-  components: {},
-  props: {},
-  data() {
-    return {
-    };
-  },
-  watch: {},
-  computed: {},
-  created() {},
-  mounted() {},
-  methods: {},
-};
-</script>
-<style lang="scss" scoped>
-</style>

+ 0 - 73
src/views/home/components/videoDemo/videoDemo.vue

@@ -1,73 +0,0 @@
-<template>
-    <div class="videoDemo" :style="`background-image:url(${require('@/assets/image/background.png')})`">
-        <video v-if="isPlay" ref="videoDom" width="100%" height="100%" controls muted preload="auto" crossorigin="anonymous">
-            <source :src="videoSrc" type="video/mp4">
-            您的浏览器不支持视频标签。
-        </video>
-        <div class="playVideo" v-if="!isPlay" >
-            <div class="button">
-                <el-button class="btn" @click="play">播放视频</el-button>
-            </div>
-        </div>
-    </div>
-</template>
-
-<script>
-export default {
-  components: {
-  },
-  props: {},
-  data() {
-    return {
-        // videoSrc: require('@/assets/media/yanshi.mp4'),
-        videoSrc: '',
-        isPlay:false,
-    };
-  },
-  watch: {},
-  computed: {},
-  created() {},
-  mounted() {
-    
-  },
-  methods: {
-    play(){
-        this.$message.warning('敬请期待')
-        return
-        this.isPlay = true
-        this.$nextTick(()=>{
-            console.log(this.$refs.videoDom.play)
-            this.$refs.videoDom.play() 
-        })
-    }
-  },
-};
-</script>
-<style lang="scss" scoped>
-.videoDemo{
-    width: 100%;
-    height: 100%;
-    background-size: cover;
-    background-position: center;
-    position: relative;
-}
-.playVideo{
-    width: 100%;
-    height: 100%;
-    position: absolute;
-    inset: 0;
-    background-color:rgba(238, 228, 228, 0.2);
-}
-.button{
-    width: 80px;
-    height: 50px;
-    position: absolute;
-    inset: 0;
-    margin: auto; 
-    .btn{
-        background-color:rgba(238, 228, 228, 0.2);
-        color: black;
-        font-weight: bold;
-    }
-}
-</style>

+ 2 - 12
src/views/home/index.vue

@@ -24,7 +24,7 @@
         </el-tooltip>
         
       </div>
-      copyright©灵智信息服务(深圳)有限公司
+      copyright©窍笔软件技术(深圳)有限公司
       <div style="padding:5px 0;">
         <a href="https://beian.miit.gov.cn/" target="_blank" style="color:white;text-decoration:none">粤ICP备2025429440号</a> 
       </div>
@@ -34,28 +34,18 @@
 </template>
 
 <script>
-import videoDemo from './components/videoDemo/videoDemo.vue';
-import softwareSupport from './components/softwareSupport/softwareSupport.vue';
 import downLoad from './components/downLoad/downLoad.vue'
 export default {
-  components: {
-    videoDemo,
-    softwareSupport,
+  components:{
     downLoad
   },
   props: {},
   data() {
     return {
         components:[
-            // {
-            //     component:'videoDemo'
-            // },
             {
                 component:'downLoad'
             },
-            // {
-            //     component:'softwareSupport'
-            // },
         ]
     };
   },

+ 1 - 1
src/views/login/index.vue

@@ -30,7 +30,7 @@
       </div>
     </div>
     <div class="copyright">
-      copyright©灵智信息服务(深圳)有限公司
+      copyright©窍笔软件技术(深圳)有限公司
     </div>
   </div>
 </template>

+ 4 - 1
src/views/register/index.vue

@@ -55,7 +55,10 @@
         </div>
     </div>
     <div class="copyright">
-      copyright©灵智信息服务(深圳)有限公司
+      copyright©窍笔软件技术(深圳)有限公司
+      <div style="padding:5px 0;">
+        <a href="https://beian.miit.gov.cn/" target="_blank" style="color:white;text-decoration:none">粤ICP备2025429440号</a> 
+      </div>
     </div>
   </div>
 </template>