自学内容网 自学内容网

开发指南048-前端模块版本

平台前端框架内置了一个文件version.vue

<template>
   <div>
      <br>
      应用名称: {{name}}
      <br>
      当前版本:{{version}}
      <br>
      服务网关: {{gateway}}
   </div>
</template>
<script>
/***********************************************************************
 *    千里马平台文件
 * 
 *    功能:查看模块版本
 * 
 *    最后修订日期:2023-08-23
 ***********************************************************************/
  export default {
    data() {
      return {
          name: window.QLMConfig.application_name,
          version: window.QLMConfig.application_version,
          gateway: window.QLMConfig.qlm_gateway_url
      }
    },
    mounted(){
    },
    methods:{

    }
  }
</script>

会读取前端配置文件中的内容,并显示出来


原文地址:https://blog.csdn.net/wangbing1125/article/details/140393716

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!