Browse Source

微官网

xiaoming_global 4 years ago
parent
commit
a159270633

+ 6 - 1
src/scrm_pages/activity/activity.vue View File

@@ -17,7 +17,6 @@
17 17
               <p>
18 18
                 {{staffCreateTime(it.start_time)}}开始
19 19
                 <br />
20
-                <!-- {{it.address}} -->
21 20
               </p>
22 21
             </div>
23 22
             <div class="people">
@@ -31,6 +30,7 @@
31 30
             </div>
32 31
         </div>
33 32
       </div>
33
+     
34 34
     </div>
35 35
   </div>
36 36
 </template>
@@ -82,6 +82,11 @@ export default {
82 82
 .page_activity {
83 83
   overflow: hidden;
84 84
   height: 100%;
85
+  padding-bottom: 1.25rem;
86
+  overflow-y: auto;
87
+  &::-webkit-scrollbar {
88
+    width: 0;
89
+  }
85 90
 }
86 91
 .contentOne {
87 92
   margin: auto;

+ 4 - 0
src/scrm_pages/doctorIntroduction/doctorIntroduction.vue View File

@@ -106,6 +106,10 @@ export default {
106 106
 .page_doctorIntroduction {
107 107
   overflow: hidden;
108 108
   height: 100%;
109
+  overflow-y: auto;
110
+  &::-webkit-scrollbar {
111
+    width: 0;
112
+  }
109 113
 }
110 114
 .contentOne {
111 115
   margin: auto;

+ 4 - 0
src/scrm_pages/medicalTeam/medicalTeam.vue View File

@@ -79,6 +79,10 @@ export default {
79 79
 .page_medicalTeam {
80 80
   overflow: hidden;
81 81
   height: 100%;
82
+  overflow-y: auto;
83
+  &::-webkit-scrollbar {
84
+    width: 0;
85
+  }
82 86
 }
83 87
 .header {
84 88
   height: 1.25rem;

+ 1 - 6
src/scrm_pages/microHome/microHome.vue View File

@@ -311,6 +311,7 @@ export default {
311 311
       });
312 312
     },
313 313
     articlemore(id, orgid) {
314
+      console.log("orgid", orgid);
314 315
       this.$router.push({
315 316
         path: "/news",
316 317
         query: {
@@ -389,15 +390,9 @@ export default {
389 390
       if (linktype == "4") {
390 391
         // window.location.href = address;
391 392
         this.$router.push({
392
-<<<<<<< .mine
393 393
           path:"/custom",
394 394
           query:{
395 395
             orgid:orgid,
396
-=======
397
-          path: "custom",
398
-          query: {
399
-            orgid: orgid
400
->>>>>>> .theirs
401 396
           }
402 397
         });
403 398
       }

+ 5 - 0
src/scrm_pages/news/news.vue View File

@@ -59,6 +59,11 @@ export default {
59 59
 .page_news {
60 60
   overflow: hidden;
61 61
   height: 100%;
62
+  padding-bottom: 1.25rem;
63
+  overflow-y: auto;
64
+  &::-webkit-scrollbar {
65
+    width: 0;
66
+  }
62 67
 }
63 68
 .content {
64 69
   padding: 1;

+ 68 - 36
src/scrm_pages/newsDetail/newsDetail.vue View File

@@ -1,7 +1,8 @@
1 1
 <template>
2
-  <div>
3
-    <div class="newsTitle"> {{articles.title}}</div>
2
+  <div class="page_newsDetail">
3
+    <div class="newsTitle">{{articles.title}}</div>
4 4
     <div class="msg" v-html="articles.content" v-show="articleshow"></div>
5
+<<<<<<< .mine
5 6
      <div class="video" v-show="videoshow">            
6 7
           <video id="example_video_1" class="video-js vjs-default-skin"
7 8
                  controls preload="auto" width="100%" height="100%"
@@ -10,47 +11,78 @@
10 11
                <source :src="articles.video_url" type='video/mp4' />
11 12
         </video>            
12 13
         </div>
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+=======
22
+    <div class="video" v-show="videoshow">
23
+      <video
24
+        id="example_video_1"
25
+        class="video-js vjs-default-skin"
26
+        controls
27
+        preload="auto"
28
+        width="640"
29
+        height="300"
30
+        poster="http://video-js.zencoder.com/oceans-clip.png"
31
+        data-setup="{"example_option":true}"
32
+        ref="video"
33
+      >
34
+        <source :src="articles.video_url" type="video/mp4" />
35
+      </video>
36
+    </div>
37
+>>>>>>> .theirs
13 38
   </div>
14 39
 </template>
15 40
   <script>
16
-      import { singleArticleInfo } from "@/api/micro/micro"
17
-     export default{
18
-       data(){
19
-         return{
20
-            articles:[],
21
-            videoshow:false,
22
-            articleshow:true,
23
-         }
24
-       },
25
-       methods:{
26
-         singleArticleInfo(id,orgid){
27
-             singleArticleInfo(id,orgid).then(response=>{
28
-                 if(response.data.state == 1){
29
-                   var articles =  response.data.data.articles;
30
-                   console.log("articles是什么",articles)
31
-                   this.articles = articles;
32
-                   if(articles.video_url != ""){
33
-                     this.articleshow = false;
34
-                      this.videoshow = true;
35
-                      this.$refs.video.src = articles.video_url;  
36
-                   }
37
-                        
38
-                } 
39
-             })
41
+import { singleArticleInfo } from "@/api/micro/micro";
42
+export default {
43
+  data() {
44
+    return {
45
+      articles: [],
46
+      videoshow: false,
47
+      articleshow: true
48
+    };
49
+  },
50
+  methods: {
51
+    singleArticleInfo(id, orgid) {
52
+      singleArticleInfo(id, orgid).then(response => {
53
+        if (response.data.state == 1) {
54
+          var articles = response.data.data.articles;
55
+          console.log("articles是什么", articles);
56
+          this.articles = articles;
57
+          if (articles.video_url != "") {
58
+            this.articleshow = false;
59
+            this.videoshow = true;
60
+            this.$refs.video.src = articles.video_url;
40 61
           }
41
-       },
42
-       created(){
43
-           const id = this.$route.query.id;
44
-           const orgid = this.$route.query.orgid;
45
-           console.log("id是多少",id)
46
-           console.log("orgid是多少",orgid)
47
-           this.singleArticleInfo(id,orgid)  
48
-       },
49
-     }
50
-  </script>
62
+        }
63
+      });
64
+    }
65
+  },
66
+  created() {
67
+    const id = this.$route.query.id;
68
+    const orgid = this.$route.query.orgid;
69
+    console.log("id是多少", id);
70
+    console.log("orgid是多少", orgid);
71
+    this.singleArticleInfo(id, orgid);
72
+  }
73
+};
74
+</script>
51 75
 
52 76
 
53 77
 <style lang="scss" scoped>
78
+.page_newsDetail {
79
+  overflow: hidden;
80
+  height: 100%;
81
+  overflow-y: auto;
82
+  &::-webkit-scrollbar {
83
+    width: 0;
84
+  }
85
+}
54 86
 .newsTitle {
55 87
   width: 19.9375rem;
56 88
   height: 3.75rem;

BIN
static/images/none1.png View File