Browse Source

增加大屏请求地址,乌当,普定

13027838432 1 year ago
parent
commit
be06fdb121

+ 2 - 1
.env.development

@@ -6,4 +6,5 @@ NODE_ENV = development
 VUE_APP_BASE_API = '/dev-api'
 
 # 开发环境  网关URL
-VUE_APP_REQUEST_URL = 'http://parking.hw.hongweisoft.com/pudprod-api'
+VUE_APP_REQUEST_URL = 'http://admin.pdzhtc.com/pudprod-api'
+#  VUE_APP_REQUEST_URL = 'http://admin.wud.qfzhtc.com/pudprod-api'

+ 2 - 1
.env.production

@@ -6,4 +6,5 @@ NODE_ENV = production
 VUE_APP_BASE_API = '/prod-api'
 
 # 生产环境 网关URL
-VUE_APP_REQUEST_URL = 'http://parking.hw.hongweisoft.com/pudprod-api'
+VUE_APP_REQUEST_URL = 'http://admin.pdzhtc.com/pudprod-api'
+# VUE_APP_REQUEST_URL = 'http://admin.wud.qfzhtc.com/pudprod-api'

+ 2 - 2
src/components/ParkingRate/index.vue

@@ -3,7 +3,7 @@
  * @Author: wangcc
  * @Date: 2023-01-09 11:22:53
  * @LastEditors: wangcc
- * @LastEditTime: 2023-02-17 16:00:13
+ * @LastEditTime: 2023-06-14 10:42:59
  * @FilePath: \parking_LargeScreen\src\components\ParkingRate\index.vue
  * @Copyright: Copyright (c) 2016~2023 by wangcc, All Rights Reserved. 
 -->
@@ -286,7 +286,7 @@ export default {
   align-items: center;
   justify-content: flex-start;
   &-item {
-    width: 230px;
+    min-width: 230px;
     margin-right: 80px;
     &-title {
       width: 70px;

+ 2 - 2
src/components/map.vue

@@ -3,7 +3,7 @@
  * @Author: wangcc
  * @Date: 2023-01-09 11:19:36
  * @LastEditors: wangcc
- * @LastEditTime: 2023-02-17 15:59:36
+ * @LastEditTime: 2023-06-14 10:10:50
  * @FilePath: \parking_LargeScreen\src\components\map.vue
  * @Copyright: Copyright (c) 2016~2023 by wangcc, All Rights Reserved. 
 -->
@@ -17,7 +17,7 @@
 <script>
 import { rightScrollData, detail } from '@/api/http';
 export default {
-  name: '',
+  name: 'mapView',
   data() {
     return {
       AMap: null,

+ 2 - 2
src/components/topNav.vue

@@ -3,13 +3,13 @@
  * @Author: wangcc
  * @Date: 2023-01-09 11:20:03
  * @LastEditors: wangcc
- * @LastEditTime: 2023-01-30 15:16:51
+ * @LastEditTime: 2023-06-14 10:45:50
  * @FilePath: \parking_LargeScreen\src\components\topNav.vue
  * @Copyright: Copyright (c) 2016~2023 by wangcc, All Rights Reserved. 
 -->
 <template>
   <div class="top-box">
-    <h4 class="top-title">普定智慧停车数据监控大屏</h4>
+    <h4 class="top-title">普定智慧停车数据监控大屏</h4>
     <div class="nav-bar">
       <div class="nav-box">
         <div

+ 1 - 1
src/utils/request.js

@@ -5,7 +5,7 @@ const service = axios.create({
   // baseURL: 'http://chenyp.top:8008', // url = base url + request url
   baseURL: process.env.NODE_ENV === 'production' ? process.env.VUE_APP_REQUEST_URL : process.env.VUE_APP_BASE_API, // url = base url + request url
   // withCredentials: true, // send cookies when cross-domain requests
-  timeout: 5000, // request timeout
+  timeout: 50000, // request timeout
   transformResponse: [
     function (data) {
       data = JSON.parse(data);

+ 52 - 54
vue.config.js

@@ -1,13 +1,13 @@
-'use strict'
-const path = require('path')
+'use strict';
+const path = require('path');
 
 function resolve(dir) {
-  return path.join(__dirname, dir)
+  return path.join(__dirname, dir);
 }
 
-const name = '普定智慧停车大屏' // 标题
+const name = '普定智慧停车大屏'; // 标题
 
-const port = 8080 // 端口
+const port = 8080; // 端口
 
 // vue.config.js 配置说明
 //官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions
@@ -46,19 +46,19 @@ module.exports = {
         '@': resolve('src')
       },
       fallback: {
-        path: false,
+        path: false
       }
     }
   },
   chainWebpack(config) {
-    config.plugins.delete('preload') // TODO: need test
-    config.plugins.delete('prefetch') // TODO: need test
-
+    config.plugins.delete('preload'); // TODO: need test
+    config.plugins.delete('prefetch'); // TODO: need test
+    config.plugin('html').tap((args) => {
+      args[0].title = name;
+      return args;
+    });
     // set svg-sprite-loader
-    config.module
-      .rule('svg')
-      .exclude.add(resolve('src/assets/icons'))
-      .end()
+    config.module.rule('svg').exclude.add(resolve('src/assets/icons')).end();
     config.module
       .rule('icons')
       .test(/\.svg$/)
@@ -69,49 +69,47 @@ module.exports = {
       .options({
         symbolId: 'icon-[name]'
       })
-      .end()
+      .end();
 
-    config
-      .when(process.env.NODE_ENV !== 'development',
-        config => {
-          config
-            .plugin('ScriptExtHtmlWebpackPlugin')
-            .after('html')
-            .use('script-ext-html-webpack-plugin', [{
-            // `runtime` must same as runtimeChunk name. default is `runtime`
-              inline: /runtime\..*\.js$/
-            }])
-            .end()
-          config
-            .optimization.splitChunks({
-              chunks: 'all',
-              cacheGroups: {
-                libs: {
-                  name: 'chunk-libs',
-                  test: /[\\/]node_modules[\\/]/,
-                  priority: 10,
-                  chunks: 'initial' // only package third parties that are initially dependent
-                },
-                elementUI: {
-                  name: 'chunk-elementUI', // split elementUI into a single package
-                  priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
-                  test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
-                },
-                commons: {
-                  name: 'chunk-commons',
-                  test: resolve('src/components'), // can customize your rules
-                  minChunks: 3, //  minimum common number
-                  priority: 5,
-                  reuseExistingChunk: true
-                }
-              }
-            })
-          config.optimization.runtimeChunk('single'),
+    config.when(process.env.NODE_ENV !== 'development', (config) => {
+      config
+        .plugin('ScriptExtHtmlWebpackPlugin')
+        .after('html')
+        .use('script-ext-html-webpack-plugin', [
           {
-             from: path.resolve(__dirname, './public/robots.txt'), //防爬虫文件
-             to: './', //到根目录下
+            // `runtime` must same as runtimeChunk name. default is `runtime`
+            inline: /runtime\..*\.js$/
+          }
+        ])
+        .end();
+      config.optimization.splitChunks({
+        chunks: 'all',
+        cacheGroups: {
+          libs: {
+            name: 'chunk-libs',
+            test: /[\\/]node_modules[\\/]/,
+            priority: 10,
+            chunks: 'initial' // only package third parties that are initially dependent
+          },
+          elementUI: {
+            name: 'chunk-elementUI', // split elementUI into a single package
+            priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
+            test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
+          },
+          commons: {
+            name: 'chunk-commons',
+            test: resolve('src/components'), // can customize your rules
+            minChunks: 3, //  minimum common number
+            priority: 5,
+            reuseExistingChunk: true
           }
         }
-      )
+      });
+      config.optimization.runtimeChunk('single'),
+        {
+          from: path.resolve(__dirname, './public/robots.txt'), //防爬虫文件
+          to: './' //到根目录下
+        };
+    });
   }
-}
+};