Browse Source

内容添加分享功能

lyn7568 6 years ago
parent
commit
96266142ba
2 changed files with 10 additions and 4 deletions
  1. 1 0
      src/components/ShareOut/index.vue
  2. 9 4
      src/pages/content/show.vue

+ 1 - 0
src/components/ShareOut/index.vue

@ -52,6 +52,7 @@
52 52
</script>
53 53
<style scoped>
54 54
.share-block{
55
  display: inline-block;
55 56
  margin-right:15px;
56 57
}
57 58
.share-block .share-icon{

+ 9 - 4
src/pages/content/show.vue

@ -10,6 +10,7 @@
10 10
                <div class="info-tag">
11 11
                  <span>{{contentInfo.modifyTime}}</span>
12 12
                  <span>作者/来源:{{contentInfo.source}}</span>
13
                  <shareOut :tUrl="elurl"></shareOut>
13 14
                </div>
14 15
              </div>
15 16
            </div>
@ -66,11 +67,13 @@
66 67
  import baseExpert from '@/components/subTemplate/BaseExpert';
67 68
  import baseOrg from '@/components/subTemplate/BaseOrg';
68 69
  import baseCompany from '@/components/subTemplate/BaseCompany';
70
  import shareOut from '@/components/ShareOut';
69 71
  export default {
70 72
    data() {
71 73
      return {
72 74
        /* eslint-disable no-undef */
73 75
        adinfo: PLAT.info.adinfo.mainAd,
76
        elurl: '',
74 77
        contentInfo: '',
75 78
        platExperts: '',
76 79
        platOrgs: '',
@ -79,15 +82,17 @@
79 82
    },
80 83
    created() {
81 84
      this.contentId = urlParse('id');
82
      if(navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)){
83
        location.href="http://" + window.location.host + "/h5.html#/content?id="+this.contentId;
84
      }
85
      // if(navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)){
86
      //   location.href="http://" + window.location.host + "/h5.html#/content?id="+this.contentId;
87
      // }
88
      this.elurl = window.location.href;
85 89
      this.getContentInfo();
86 90
      this.getPlatExperts();
87 91
      this.getPlatOrgs();
88 92
      this.getPlatCompanys();
89 93
    },
90 94
    components: {
95
      shareOut,
91 96
      baseExpert,
92 97
      baseOrg,
93 98
      baseCompany
@ -184,7 +189,7 @@
184 189
</script>
185 190
186 191
<style scoped>
187
  .info-tag span{
192
  .info-tag *{
188 193
    display: inline-block;
189 194
    margin-right:15px;
190 195
    color: #999;