소스 검색

细节修改、样式修改、描述文本修改

yangxiao 3 년 전
부모
커밋
403e09773f
4개의 변경된 파일10개의 추가작업 그리고 18개의 파일을 삭제
  1. 2 3
      public/static/config/modeConfig.js
  2. 2 2
      src/components/other/healthReport/index.vue
  3. 1 1
      src/views/Home/components/map.vue
  4. 5 12
      src/views/Home/components/map/MHS_FDC.vue

+ 2 - 3
public/static/config/modeConfig.js

@@ -10,14 +10,13 @@ let websocketUrl = null;
 
 if (localTest) {
   // baseURL = "http://192.168.10.23:8082/" // 联机调试 - 石林
-  // baseURL = "http://192.168.10.18:8082/" // 联机调试 - 石林
   baseURL = "http://10.155.32.33:9001/" // 联机调试 - 谢生杰
-  websocketUrl = (baseURL.replace(/http:\/\//g, "")) + "gyee-websocket";
 } else {
   baseURL = "http://10.155.32.4:8082/" // 正式环境
-  websocketUrl = (baseURL.replace(/http:\/\//g, "")) + "gyee-websocket";
 }
 
+websocketUrl = (baseURL.replace(/http:\/\/|https:\/\//g, "")) + "gyee-websocket";
+
 window.__MODE__ = {
   baseURL,
   websocketUrl

+ 2 - 2
src/components/other/healthReport/index.vue

@@ -539,7 +539,7 @@ export default {
   position: relative;
 
   .pdfDom {
-    padding: 30px 20px;
+    padding: 30px 50px;
   }
 
   .title {
@@ -597,7 +597,7 @@ export default {
   }
 
   .el-dialog__body {
-    max-height: 700px;
+    max-height: 850px;
     overflow-y: scroll;
     padding: 0;
   }

+ 1 - 1
src/views/Home/components/map.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="map">
     <div class="back"></div>
-    <div class="security-days" v-if="fcId === '0'">
+    <div class="security-days">
       <div class="text">安全天数:</div>
       <div class="num">
         <span class="font-num">{{safeDay}}</span>

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 5 - 12
src/views/Home/components/map/MHS_FDC.vue