Browse Source

Merge branch 'superman' of http://git.shengws.com/zhangbj/xt_vue into superman

csx 6 years ago
parent
commit
440ec9e31d

+ 1 - 1
config/dev.env.js View File

@@ -6,5 +6,5 @@
6 6
 module.exports = {
7 7
   NODE_ENV: '"development"',
8 8
   ENV_CONFIG: '"dev"',
9
-  BASE_API:'"http://localhost:9529"', //'"http://112.74.16.180:9527"', //http://api.xt.test.sgjyun.com http://112.74.16.180:9527
9
+  BASE_API: '"http://112.74.16.180:9527"', // '"http://localhost:9529"'//http://api.xt.test.sgjyun.com http://112.74.16.180:9527
10 10
 }

+ 1 - 1
src/styles/index.scss View File

@@ -458,7 +458,7 @@ code {
458 458
   // z-index: 9999!important;
459 459
 }
460 460
 .el-message{
461
-  z-index: 2004!important;
461
+  z-index: 99999!important;
462 462
 }
463 463
 .el-select-dropdown{
464 464
   // z-index: 2003!important;

+ 9 - 3
src/views/layout/components/TagsView.vue View File

@@ -1,8 +1,14 @@
1 1
 <template>
2 2
   <div class="tags-view-container">
3 3
     <scroll-pane class='tags-view-wrapper' ref='scrollPane'>
4
-      <router-link ref='tag' class="tags-view-item" :class="isActive(tag)?'active':''" v-for="tag in Array.from(visitedViews)"
5
-        :to="tag" :key="tag.path" @contextmenu.prevent.native="openMenu(tag,$event)">
4
+      <router-link 
5
+        ref='tag' 
6
+        class="tags-view-item" 
7
+        :class="isActive(tag)?'active':''" 
8
+        v-for="tag in Array.from(visitedViews)"
9
+        :to="tag" 
10
+        :key="tag.path" 
11
+        @contextmenu.prevent.native="openMenu(tag,$event)">
6 12
         {{generateTitle(tag.title)}}
7 13
         <span class='el-icon-close' @click.prevent.stop='closeSelectedTag(tag)'></span>
8 14
       </router-link>
@@ -18,7 +24,7 @@
18 24
 <script>
19 25
 import ScrollPane from '@/components/ScrollPane'
20 26
 import { generateTitle } from '@/utils/i18n'
21
-
27
+  
22 28
 export default {
23 29
   components: { ScrollPane },
24 30
   data() {

+ 4 - 4
src/xt_pages/user/components/PatientForm.vue View File

@@ -989,9 +989,6 @@ export default {
989 989
 
990 990
 <style rel="stylesheet/scss" lang="scss" scoped>
991 991
 
992
-.uploadHead {
993
-  // margin-top: 25%;
994
-}
995 992
 .uploadHeadBtn {
996 993
   width: 148px;
997 994
   margin-top: 10px;
@@ -1001,7 +998,6 @@ export default {
1001 998
     width: 430px;
1002 999
     }
1003 1000
   .el-form-item {
1004
-    // margin-bottom: 17px !important;
1005 1001
     .el-select {
1006 1002
       width: 100%;
1007 1003
     }
@@ -1016,5 +1012,9 @@ export default {
1016 1012
     }
1017 1013
   }
1018 1014
 }
1015
+.el-select-dropdown,
1016
+.el-popper{
1017
+  z-index: 2000!important;
1018
+}
1019 1019
 </style>
1020 1020
 

+ 2 - 2
src/xt_pages/workforce/components/setup_template_dialog.vue View File

@@ -11,8 +11,8 @@
11 11
             </el-form-item>
12 12
         </el-form>
13 13
         <div style="text-align: right; padding-right: 25px; padding-top: 10px; padding-bottom: 10px;">
14
-            <el-button @click="hide">取消</el-button>
15
-            <el-button :disabled="$store.getters.xt_user.subscibe.state == 3 ? true : false" type="primary" @click="saveAction">确定</el-button>
14
+            <el-button @click="hide">取 消</el-button>
15
+            <el-button :disabled="$store.getters.xt_user.subscibe.state == 3 ? true : false" type="primary" @click="saveAction">保 存</el-button>
16 16
         </div>
17 17
     </el-dialog>
18 18
 </template>