Pārlūkot izejas kodu

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

csx 6 gadus atpakaļ
vecāks
revīzija
440ec9e31d

+ 1 - 1
config/dev.env.js Parādīt failu

6
 module.exports = {
6
 module.exports = {
7
   NODE_ENV: '"development"',
7
   NODE_ENV: '"development"',
8
   ENV_CONFIG: '"dev"',
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 Parādīt failu

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

+ 9 - 3
src/views/layout/components/TagsView.vue Parādīt failu

1
 <template>
1
 <template>
2
   <div class="tags-view-container">
2
   <div class="tags-view-container">
3
     <scroll-pane class='tags-view-wrapper' ref='scrollPane'>
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
         {{generateTitle(tag.title)}}
12
         {{generateTitle(tag.title)}}
7
         <span class='el-icon-close' @click.prevent.stop='closeSelectedTag(tag)'></span>
13
         <span class='el-icon-close' @click.prevent.stop='closeSelectedTag(tag)'></span>
8
       </router-link>
14
       </router-link>
18
 <script>
24
 <script>
19
 import ScrollPane from '@/components/ScrollPane'
25
 import ScrollPane from '@/components/ScrollPane'
20
 import { generateTitle } from '@/utils/i18n'
26
 import { generateTitle } from '@/utils/i18n'
21
-
27
+  
22
 export default {
28
 export default {
23
   components: { ScrollPane },
29
   components: { ScrollPane },
24
   data() {
30
   data() {

+ 4 - 4
src/xt_pages/user/components/PatientForm.vue Parādīt failu

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

+ 2 - 2
src/xt_pages/workforce/components/setup_template_dialog.vue Parādīt failu

11
             </el-form-item>
11
             </el-form-item>
12
         </el-form>
12
         </el-form>
13
         <div style="text-align: right; padding-right: 25px; padding-top: 10px; padding-bottom: 10px;">
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
         </div>
16
         </div>
17
     </el-dialog>
17
     </el-dialog>
18
 </template>
18
 </template>