Browse Source

微官网

xiaoming_global 4 years ago
parent
commit
a159270633

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

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

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

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

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

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

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

311
       });
311
       });
312
     },
312
     },
313
     articlemore(id, orgid) {
313
     articlemore(id, orgid) {
314
+      console.log("orgid", orgid);
314
       this.$router.push({
315
       this.$router.push({
315
         path: "/news",
316
         path: "/news",
316
         query: {
317
         query: {
389
       if (linktype == "4") {
390
       if (linktype == "4") {
390
         // window.location.href = address;
391
         // window.location.href = address;
391
         this.$router.push({
392
         this.$router.push({
392
-<<<<<<< .mine
393
           path:"/custom",
393
           path:"/custom",
394
           query:{
394
           query:{
395
             orgid:orgid,
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
 .page_news {
59
 .page_news {
60
   overflow: hidden;
60
   overflow: hidden;
61
   height: 100%;
61
   height: 100%;
62
+  padding-bottom: 1.25rem;
63
+  overflow-y: auto;
64
+  &::-webkit-scrollbar {
65
+    width: 0;
66
+  }
62
 }
67
 }
63
 .content {
68
 .content {
64
   padding: 1;
69
   padding: 1;

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

1
 <template>
1
 <template>
2
-  <div>
3
-    <div class="newsTitle"> {{articles.title}}</div>
2
+  <div class="page_newsDetail">
3
+    <div class="newsTitle">{{articles.title}}</div>
4
     <div class="msg" v-html="articles.content" v-show="articleshow"></div>
4
     <div class="msg" v-html="articles.content" v-show="articleshow"></div>
5
+<<<<<<< .mine
5
      <div class="video" v-show="videoshow">            
6
      <div class="video" v-show="videoshow">            
6
           <video id="example_video_1" class="video-js vjs-default-skin"
7
           <video id="example_video_1" class="video-js vjs-default-skin"
7
                  controls preload="auto" width="100%" height="100%"
8
                  controls preload="auto" width="100%" height="100%"
10
                <source :src="articles.video_url" type='video/mp4' />
11
                <source :src="articles.video_url" type='video/mp4' />
11
         </video>            
12
         </video>            
12
         </div>
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
   </div>
38
   </div>
14
 </template>
39
 </template>
15
   <script>
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
 <style lang="scss" scoped>
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
 .newsTitle {
86
 .newsTitle {
55
   width: 19.9375rem;
87
   width: 19.9375rem;
56
   height: 3.75rem;
88
   height: 3.75rem;

BIN
static/images/none1.png View File