shaogen1995 3 anni fa
parent
commit
ca23a675f5

+ 2 - 2
houtai/src/views/Layout.vue

@@ -28,7 +28,7 @@
 
       <div class="mainL">
         <div class="mainLBox">
-          <div class="tit">内部管理</div>
+          <div class="tit" :class="{tit2:$route.meta.myInd==1||$route.meta.myInd==3}">内部管理</div>
           <div
             class="pathUrl"
             :class="{ active: $route.meta.myInd === 1 }"
@@ -45,7 +45,7 @@
           </div>
         </div>
         <div class="mainLBox">
-          <div class="tit tit2">系统管理</div>
+          <div class="tit" :class="{tit2:$route.meta.myInd==2}">系统管理</div>
           <div
             class="pathUrl"
             :class="{ active: $route.meta.myInd === 2 }"

+ 8 - 0
web/src/assets/base.css

@@ -88,25 +88,33 @@ body {
 }
 input::-webkit-input-placeholder{
     color:#ccc;
+    font-size: 12px;
   }
   input::-moz-placeholder{   /* Mozilla Firefox 19+ */
     color:#ccc;
+    font-size: 12px;
   }
   input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
     color:#ccc;
+    font-size: 12px;
   }
   input:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
     color:#ccc;
+    font-size: 12px;
   }
   .van-dialog__header{
     color: #858B6B;
+    font-size: 12px;
   }
   .van-dialog__message--has-title{
     color: #858B6B;
+    font-size: 12px;
   }
   .van-button--default{
     color: #858B6B;
+    font-size: 12px;
   }
   .van-dialog__confirm, .van-dialog__confirm:active{
     color: black;
+    font-size: 12px;
   }

BIN
web/src/assets/img/index.png


BIN
web/src/assets/img/index2.png


+ 1 - 0
web/src/components/ToIndex.vue

@@ -52,6 +52,7 @@ export default {
   align-items: center;
   color: #fff;
   & > img {
+    margin-top: -2px;
     width: 14px;
     margin-right: 5px;
   }

+ 2 - 2
web/src/utlis/request.js

@@ -1,8 +1,8 @@
 import axios from 'axios'
 const service = axios.create({
   // baseURL: 'http://192.168.20.55:8018', // 本地调试
-  baseURL: 'http://project.4dage.com:8018', // 线上调试
-  // baseURL: '', // build
+  // baseURL: 'http://project.4dage.com:8018', // 线上调试
+  baseURL: '', // build
   timeout: 5000
 })
 // // 请求拦截器

+ 22 - 4
web/src/views/Info.vue

@@ -407,6 +407,8 @@ export default {
     margin-bottom: 30px;
     & > img {
       width: 100%;
+      max-height: 400px;
+      object-fit: cover;
     }
   }
   .nameO {
@@ -574,11 +576,11 @@ export default {
         align-items: center;
       }
       input {
+        width: calc(100% - 100px);
         height: 40px;
         padding: 0 5px;
         border: 1px solid #c7c7c7;
         border-radius: 5px;
-        flex: 1;
       }
       input:disabled {
         background-color: #c9c9c9;
@@ -593,10 +595,10 @@ export default {
     }
   }
   .endFrom {
+    pointer-events: none;
+    .row .numChange .none {
       pointer-events: none;
-      .row .numChange .none{
-        pointer-events: none;
-      }
+    }
   }
   .btn {
     background-color: #858b6b;
@@ -614,4 +616,20 @@ export default {
     pointer-events: none;
   }
 }
+@media screen and (max-width: 330px) {
+  .Info {
+    .from {
+      .row {
+        .name {
+          width: 80px;
+          min-width: 80px;
+          font-size: 14px;
+        }
+        input {
+          width: calc(100% - 80px);
+        }
+      }
+    }
+  }
+}
 </style>

+ 5 - 0
web/src/views/Inquire.vue

@@ -99,4 +99,9 @@ export default {
     }
   }
 }
+@media screen and (max-width: 330px) {
+  .Inquire{
+    padding: 20px 30px;
+  }
+}
 </style>

+ 2 - 0
web/src/views/orderList.vue

@@ -125,6 +125,8 @@ export default {
     cancel(id) {
       this.apiId = id;
       Dialog.confirm({
+        confirmButtonText:'是',
+        cancelButtonText:'否',
         title: "提醒",
         message: "您是否确定取消预约?",
         beforeClose: this.beforeClose,