zhaobao 2 年之前
父节点
当前提交
3e99ffa23a
共有 4 个文件被更改,包括 21 次插入2 次删除
  1. 6 0
      src/router/modules/aqpt.js
  2. 2 2
      src/settings.js
  3. 二进制
      src/views/system/app/download/images/qrcode.png
  4. 13 0
      src/views/system/app/download/index.vue

+ 6 - 0
src/router/modules/aqpt.js

@@ -507,6 +507,12 @@ const aqptRouter = [
         component: () => import('@/views/goaf/sensorCat/index'),
         name: 'aqpt_setting_sensor_cat',
         meta: { title: '传感器类别', noCache: true, permit: 'aqpt_setting_equipment_cat' }
+      },
+      {
+        path: 'APP_download',
+        component: () => import('@/views/system/app/download'),
+        name: 'aqpt_setting_sensor_cat',
+        meta: { title: 'APP升级', noCache: true, permit: 'aqpt_setting_equipment_cat' }
       }
       // {
       //   path: 'checkCat',

+ 2 - 2
src/settings.js

@@ -37,8 +37,8 @@ module.exports = {
   * 服务API地址
   */
   serverUrl: 'http://113.141.93.143:1688', // 正式环境
-  // devServerUrl: 'http://1.15.92.205:8080/', // 开发环境
-  devServerUrl: 'http://192.168.3.5:8080/', // 开发环境 qu
+  devServerUrl: 'http://113.141.93.143:1688', // 开发环境
+  // devServerUrl: 'http://192.168.3.5:8080/', // 开发环境 qu
   // devServerUrl: 'http://192.168.3.201:8080/', // 开发环境  test
   mqttUrl: 'ws://1.15.92.205:8083/mqtt', // mqtt地址
   /**

二进制
src/views/system/app/download/images/qrcode.png


+ 13 - 0
src/views/system/app/download/index.vue

@@ -0,0 +1,13 @@
+<template>
+  <img class="qrcode" src="./images/qrcode.png" alt="">
+</template>
+<style lang="scss" scoped>
+    .qrcode{
+        display: block;
+        width: 300px;
+        position: absolute;
+        left: 50%;
+        top: 50%;
+        transform: translate(-50%,-50%);
+    }
+</style>