瀏覽代碼

h5 index、search、log

lyn7568 6 年之前
父節點
當前提交
cf76378dac

+ 2 - 1
config/dev.env.js

@ -6,5 +6,6 @@ module.exports = merge(prodEnv, {
6 6
  NODE_ENV: '"development"',
7 7
  ENV_CONFIG:'"dev"',
8 8
  BASE_API: '""',
9
  KX_API: '"http://192.168.3.233:81"'
9
  KX_API: '"http://192.168.3.233:81"',
10
  HT_API: '"http://192.168.3.233:83"',
10 11
})

+ 4 - 2
config/prod.env.js

@ -3,6 +3,8 @@ module.exports = {
3 3
  NODE_ENV: '"production"',
4 4
  ENV_CONFIG:'"prod"',
5 5
  BASE_API: '""',
6
  // KX_API: '"http://www.ekexiu.com"'
7
  KX_API: '"http://192.168.3.233:81"'
6
  // KX_API: '"http://www.ekexiu.com"',
7
  // HT_API: '"http://www.xttjpt.cn:88"'
8
  KX_API: '"http://192.168.3.233:81"',
9
  HT_API: '"http://192.168.3.233:83"',
8 10
}

+ 5 - 1
src/components/subTemplate/BaseCompany.vue

@ -1,5 +1,5 @@
1 1
<template>
2
  <a class="list-item" :href="'company.html?id='+companyInfo.id" target="_blank">
2
  <a class="list-item" :href="'company.html?id='+companyInfo.id" :target="noBlank ? '' : '_blank'">
3 3
    <div class="list-head">
4 4
      <div class="item-pic-org">
5 5
        <img :src="companyInfo.logo">
@ -18,6 +18,10 @@
18 18
    props: {
19 19
      itemSingle: {
20 20
        type: Object
21
      },
22
      noBlank: {
23
        type: Boolean,
24
        default: false
21 25
      }
22 26
    },
23 27
    data() {

+ 5 - 1
src/components/subTemplate/BaseContent.vue

@ -1,5 +1,5 @@
1 1
<template>
2
  <a class="list-item" :class="isShowImg(itemSingle.catalog)" :href="'content.html?id='+itemSingle.id" target="_blank">
2
  <a class="list-item" :class="isShowImg(itemSingle.catalog)" :href="'content.html?id='+itemSingle.id" :target="noBlank ? '' : '_blank'">
3 3
    <div class="list-head" :style="{backgroundImage: 'url(' + imgUrl + ')'}"></div>
4 4
    <div class="list-info">
5 5
      <div class="list-tit">{{itemSingle.title}}</div>
@ -16,6 +16,10 @@
16 16
    props: {
17 17
      itemSingle: {
18 18
        type: Object
19
      },
20
      noBlank: {
21
        type: Boolean,
22
        default: false
19 23
      }
20 24
    },
21 25
    data() {

+ 5 - 1
src/components/subTemplate/BaseExpert.vue

@ -1,5 +1,5 @@
1 1
<template>
2
  <a class="list-item" :href="'expert.html?id='+itemSingle.id" target="_blank">
2
  <a class="list-item" :href="'expert.html?id='+itemSingle.id" :target="noBlank ? '' : '_blank'">
3 3
    <div class="list-head list-circular-head" :style="{backgroundImage: 'url(' + imgUrl + ')'}"></div>
4 4
    <div class="list-info">
5 5
      <div class="list-tit list-topic">{{itemSingle.name}}</div>
@ -15,6 +15,10 @@
15 15
    props: {
16 16
      itemSingle: {
17 17
        type: Object
18
      },
19
      noBlank: {
20
        type: Boolean,
21
        default: false
18 22
      }
19 23
    },
20 24
    data() {

+ 5 - 1
src/components/subTemplate/BaseOrg.vue

@ -1,5 +1,5 @@
1 1
<template>
2
  <a class="list-item" :href="'org.html?id='+orgInfo.id" target="_blank">
2
  <a class="list-item" :href="'org.html?id='+orgInfo.id" :target="noBlank ? '' : '_blank'">
3 3
    <div class="list-head">
4 4
      <div class="item-pic-org">
5 5
        <img :src="orgInfo.logo">
@ -18,6 +18,10 @@
18 18
    props: {
19 19
      itemSingle: {
20 20
        type: Object
21
      },
22
      noBlank: {
23
        type: Boolean,
24
        default: false
21 25
      }
22 26
    },
23 27
    data() {

+ 5 - 1
src/components/subTemplate/BaseProduct.vue

@ -1,5 +1,5 @@
1 1
<template>
2
  <a class="list-item" :href="'product.html?id='+itemSingle.id" target="_blank">
2
  <a class="list-item" :href="'product.html?id='+itemSingle.id" :target="noBlank ? '' : '_blank'">
3 3
    <div class="list-head" :style="{backgroundImage: 'url(' + imgUrl + ')'}"></div>
4 4
    <div class="list-info">
5 5
      <div class="list-tit list-topic">{{itemSingle.name}}</div>
@ -19,6 +19,10 @@
19 19
      },
20 20
      showTime: {
21 21
        type: Boolean
22
      },
23
      noBlank: {
24
        type: Boolean,
25
        default: false
22 26
      }
23 27
    },
24 28
    data() {

+ 5 - 1
src/components/subTemplate/BaseResource.vue

@ -1,5 +1,5 @@
1 1
<template>
2
  <a class="list-item" :href="'resource.html?id='+resourceInfo.id" target="_blank">
2
  <a class="list-item" :href="'resource.html?id='+resourceInfo.id" :target="noBlank ? '' : '_blank'">
3 3
    <div class="list-head" :style="{backgroundImage: 'url(' + resourceInfo.firstImg + ')'}"></div>
4 4
    <div class="list-info">
5 5
      <div class="list-tit list-topic">{{resourceInfo.name}}</div>
@ -17,6 +17,10 @@
17 17
    props: {
18 18
      itemSingle: {
19 19
        type: Object
20
      },
21
      noBlank: {
22
        type: Boolean,
23
        default: false
20 24
      }
21 25
    },
22 26
    data() {

+ 5 - 1
src/components/subTemplate/BaseResult.vue

@ -1,5 +1,5 @@
1 1
<template>
2
  <a class="list-item" :href="'result.html?id='+itemSingle.id" target="_blank">
2
  <a class="list-item" :href="'result.html?id='+itemSingle.id" :target="noBlank ? '' : '_blank'">
3 3
    <div class="list-head" :style="{backgroundImage: 'url(' + imgUrl + ')'}"></div>
4 4
    <div class="list-info">
5 5
      <div class="list-tit list-topic">{{itemSingle.name}}</div>
@ -16,6 +16,10 @@
16 16
    props: {
17 17
      itemSingle: {
18 18
        type: Object
19
      },
20
      noBlank: {
21
        type: Boolean,
22
        default: false
19 23
      }
20 24
    },
21 25
    data() {

+ 5 - 1
src/components/subTemplate/BaseService.vue

@ -1,5 +1,5 @@
1 1
<template>
2
  <a class="list-item" :href="'serve.html?id='+serveInfo.id" target="_blank">
2
  <a class="list-item" :href="'serve.html?id='+serveInfo.id" :target="noBlank ? '' : '_blank'">
3 3
    <div class="list-head" :style="{backgroundImage: 'url(' + serveInfo.firstImg + ')'}"></div>
4 4
    <div class="list-info">
5 5
      <div class="list-tit list-topic">{{serveInfo.name}}</div>
@ -17,6 +17,10 @@
17 17
    props: {
18 18
      itemSingle: {
19 19
        type: Object
20
      },
21
      noBlank: {
22
        type: Boolean,
23
        default: false
20 24
      }
21 25
    },
22 26
    data() {

+ 19 - 0
src/libs/common.js

@ -17,3 +17,22 @@ Vue.use(Loading);
17 17
Vue.use(BackTop);
18 18
// Vue.component('BackTop', BackTop);
19 19
Vue.use(defaultPage);
20
21
22
function hashChange () {
23
  location.reload();
24
}
25
//url变化监听器
26
if( ('onhashchange' in window) && ((typeof document.documentMode==='undefined') || document.documentMode==8)) {
27
// 浏览器支持onhashchange事件
28
    window.onhashchange = hashChange;  // TODO,对应新的hash执行的操作函数
29
} else {
30
  // 不支持则用定时器检测的办法
31
  setInterval(function() {
32
    // 检测hash值或其中某一段是否更改的函数, 在低版本的iE浏览器中通过window.location.hash取出的指和其它的浏览器不同,要注意
33
    var ischanged = isHashChanged();
34
    if (ischanged) {
35
        hashChange();  // TODO,对应新的hash执行的操作函数
36
    }
37
  }, 150);
38
}

+ 0 - 77
src/pages/center/views/common/Sidebar/SidebarItem.vue

@ -1,77 +0,0 @@
1
<template>
2
  <div v-if="!item.hidden&&item.children" class="menu-wrapper">
3
4
      <router-link v-if="hasOneShowingChild(item.children) && !onlyOneChild.children&&!item.alwaysShow" :to="resolvePath(onlyOneChild.path)">
5
        <el-menu-item :index="resolvePath(onlyOneChild.path)" :class="{'submenu-title-noDropdown':!isNest}">
6
          <svg-icon v-if="onlyOneChild.meta&&onlyOneChild.meta.icon" :icon-class="onlyOneChild.meta.icon"></svg-icon>
7
          <span v-if="onlyOneChild.meta&&onlyOneChild.meta.title" slot="title">{{onlyOneChild.meta.title}}</span>
8
        </el-menu-item>
9
      </router-link>
10
11
      <el-submenu v-else :index="item.name||item.path">
12
        <template slot="title">
13
          <svg-icon v-if="item.meta&&item.meta.icon" :icon-class="item.meta.icon"></svg-icon>
14
          <span v-if="item.meta&&item.meta.title" slot="title">{{item.meta.title}}</span>
15
        </template>
16
        <template v-for="child in item.children" v-if="!child.hidden">
17
          <sidebar-item :is-nest="true" class="nest-menu" v-if="child.children&&child.children.length>0" :item="child" :key="child.path" :base-path="resolvePath(child.path)"></sidebar-item>
18
19
          <router-link v-else :to="resolvePath(child.path)" :key="child.name" replace>
20
            <el-menu-item :index="resolvePath(child.path)">
21
              <svg-icon v-if="child.meta&&child.meta.icon" :icon-class="child.meta.icon"></svg-icon>
22
              <span v-if="child.meta&&child.meta.title" slot="title">{{child.meta.title}}</span>
23
            </el-menu-item>
24
          </router-link>
25
        </template>
26
      </el-submenu>
27
28
  </div>
29
</template>
30
31
<script>
32
import path from 'path'
33
34
export default {
35
  name: 'SidebarItem',
36
  props: {
37
    // route配置json
38
    item: {
39
      type: Object,
40
      required: true
41
    },
42
    isNest: {
43
      type: Boolean,
44
      default: false
45
    },
46
    basePath: {
47
      type: String,
48
      default: ''
49
    }
50
  },
51
  data() {
52
    return {
53
      onlyOneChild: null
54
    }
55
  },
56
  methods: {
57
    hasOneShowingChild(children) {
58
      const showingChildren = children.filter(item => {
59
        if (item.hidden) {
60
          return false
61
        } else {
62
          // temp set(will be used if only has one showing child )
63
          this.onlyOneChild = item
64
          return true
65
        }
66
      })
67
      if (showingChildren.length === 1) {
68
        return true
69
      }
70
      return false
71
    },
72
    resolvePath(...paths) {
73
      return path.resolve(this.basePath, ...paths)
74
    }
75
  }
76
}
77
</script>

+ 0 - 34
src/pages/center/views/common/Sidebar/index.vue

@ -1,34 +0,0 @@
1
<template>
2
  <el-menu
3
    mode="vertical"
4
    :default-openeds="['personalCenter', 'myBusiness', 'modifyPassword']"
5
    :show-timeout="200"
6
    :default-active="$route.path">
7
    <sidebar-item v-for="route in routes" :key="route.name" :item="route" :base-path="route.path"></sidebar-item>
8
  </el-menu>
9
</template>
10
11
<script>
12
import SidebarItem from './SidebarItem'
13
14
export default {
15
  components: { SidebarItem },
16
  watch: {
17
    bindCompany(val) {
18
      this.bindCompany = val
19
    }
20
  },
21
  computed: {
22
    ...Vuex.mapGetters([
23
      'bindCompany'
24
    ]),
25
    routes() {
26
      var aRouter = this.$router.options.routes
27
      if (!this.bindCompany) {
28
        aRouter[0].children.splice(2, 1)
29
      }
30
      return aRouter
31
    }
32
  }
33
}
34
</script>

+ 0 - 102
src/pages/center/views/common/index.vue

@ -1,102 +0,0 @@
1
<template>
2
  <div class="main-content">
3
    <div class="boxLeft">
4
      <div class="headPhoto">
5
        <div class="userInfo">
6
          <div class="img-div" :style="{backgroundImage: 'url(' + headPhoto + ')'}"></div>
7
          <p>{{account}}</p>
8
        </div>
9
      </div>
10
      <sidebar></sidebar>
11
      <div class="exit-menu-item" @click="logout">退出登录</div>
12
    </div>
13
    <div class="boxRight">
14
      <transition name="fade" mode="out-in">
15
        <router-view></router-view>
16
      </transition>
17
    </div>
18
  </div>
19
</template>
20
21
<script>
22
  import Sidebar from './Sidebar';
23
  export default {
24
    computed: {
25
      ...Vuex.mapGetters([
26
        'bindCompany',
27
        'headPhoto',
28
        'account'
29
      ])
30
    },
31
    components: {
32
      Sidebar
33
    },
34
    methods: {
35
      logout() {
36
        this.$confirm('您确认要退出登录吗?', '提示', {
37
          type: 'warning',
38
          center: true
39
        }).then(() => {
40
          this.$store.dispatch('LogOut').then(() => {
41
            location.href = '/#/loginPlat'
42
          })
43
        }).catch(() => {})
44
      }
45
    }
46
  };
47
</script>
48
49
<style scoped>
50
.main-content{
51
  margin: 20px 0;
52
  min-height: 500px;
53
}
54
.main-content .boxRight {
55
  padding:10px 20px;
56
  float: left;
57
  width: 880px;
58
  margin-left: 20px;
59
  background: #ffffff;
60
  box-sizing: border-box;
61
}
62
.main-content .boxLeft {
63
    float: left;
64
    overflow: hidden;
65
    width: 200px;
66
}
67
.main-content .boxLeft .headPhoto {
68
  height: 146px;
69
  background: #ffffff;
70
  margin-bottom: 20px;
71
  display: flex;
72
  justify-content: center;
73
  align-items: center;
74
}
75
.main-content .boxLeft .headPhoto .userInfo {
76
  text-align: center;
77
  color: #606266;
78
}
79
.main-content .boxLeft .headPhoto .userInfo p {
80
  margin-top: 10px;
81
}
82
.main-content .boxLeft .headPhoto .userInfo .img-div {
83
  width: 80px;
84
  height: 80px;
85
  border-radius: 50%;
86
  margin: auto;
87
  background-size: cover;
88
}
89
.main-content .boxLeft .el-menu {
90
  border:none;
91
}
92
.main-content .boxLeft .exit-menu-item{
93
  padding-left: 20px;
94
  background: #ffffff;
95
  border-top: 10px solid #f4f6f8;
96
  box-sizing: content-box;
97
  height: 56px;
98
  line-height: 56px;
99
  font-size: 14px;
100
  cursor: pointer;
101
}
102
</style>

+ 1 - 1
src/pages/center/views/layout/index.vue

@ -15,7 +15,7 @@
15 15
16 16
<script>
17 17
  import { TheHeader, TheFooter } from '@/layout';
18
  import com from '../common/index';
18
  import com from './common/index';
19 19
  import Breadcrumb from '@/components/Breadcrumb';
20 20
21 21
  export default {

+ 1 - 0
src/pages/center/views/myBusiness/companyInformation.vue

@ -357,6 +357,7 @@
357 357
            }
358 358
            })
359 359
          } else {
360
            window.scroll(0, 0)
360 361
            return false
361 362
          }
362 363
        })

+ 1 - 0
src/pages/center/views/myBusiness/publishProduct.vue

@ -232,6 +232,7 @@
232 232
              })
233 233
            }
234 234
          } else {
235
            window.scroll(0, 0)
235 236
            return false
236 237
          }
237 238
        })

+ 1 - 0
src/pages/center/views/myDemands/DemandIssue.vue

@ -275,6 +275,7 @@
275 275
              })
276 276
            }
277 277
          } else {
278
            window.scroll(0, 0)
278 279
            return false
279 280
          }
280 281
        })

+ 3 - 0
src/pages/content/show.vue

@ -9,6 +9,7 @@
9 9
                <div class="info-tit info-tit-big">{{contentInfo.title}}</div>
10 10
                <div class="info-tag">
11 11
                  <span>{{contentInfo.modifyTime}}</span>
12
                  <pageView v-if="contentId" :pageObj="{ tn: 'article', id: contentId, src: '1'}"></pageView>
12 13
                  <span>作者/来源:{{contentInfo.source}}</span>
13 14
                  <shareOut :tUrl="elurl"></shareOut>
14 15
                </div>
@ -68,6 +69,7 @@
68 69
  import baseOrg from '@/components/subTemplate/BaseOrg';
69 70
  import baseCompany from '@/components/subTemplate/BaseCompany';
70 71
  import shareOut from '@/components/ShareOut';
72
  import pageView from '@/components/pageView';
71 73
  export default {
72 74
    data() {
73 75
      return {
@ -93,6 +95,7 @@
93 95
    },
94 96
    components: {
95 97
      shareOut,
98
      pageView,
96 99
      baseExpert,
97 100
      baseOrg,
98 101
      baseCompany

+ 7 - 1
src/pages/h5/h5.js

@ -7,8 +7,14 @@ new Vue({
7 7
  router: router,
8 8
  render: h => h(App),
9 9
  created () {
10
    router.beforeEach((to, from, next) => {
11
      document.title = PLAT.info.title
12
      if (to.meta.title) {
13
        document.title = to.meta.title + '-' + PLAT.info.title
14
      }
15
    })
10 16
    router.afterEach((to, from, next) => {
11 17
      window.scrollTo(0, 0);
12
    });
18
    })
13 19
  }
14 20
});

+ 46 - 15
src/pages/h5/router/index.js

@ -1,24 +1,55 @@
1
import Layout from '../views/layout';
1 2
const constantRouterMap = [
2 3
  {
3
    path: '/content',
4
    alwaysShow: true,
5
    component: (resolve) => require(['../views/content/content.vue'], resolve),
6
    name: 'content',
7
    meta: { title: '内容' }
4
    path: '/',
5
    redirect: '/index',
6
    component: Layout,
7
    children: [{
8
      component: (resolve) => require(['../views/index/index.vue'], resolve),
9
      path: '/index',
10
      name: 'index',
11
      meta: { title: '首页' }
12
    }]
8 13
  },
9 14
  {
10
    path: '/company',
11
    alwaysShow: true,
12
    component: (resolve) => require(['../views/company/company.vue'], resolve),
13
    name: 'company',
14
    meta: { title: '企业' }
15
    path: '',
16
    component: Layout,
17
    children: [{
18
      component: (resolve) => require(['../views/search/search.vue'], resolve),
19
      name: 'search',
20
      path: '/search',
21
      meta: { title: '搜索' }
22
    }]
15 23
  },
16 24
  {
17
    path: '/org',
18
    alwaysShow: true,
19
    component: (resolve) => require(['../views/org/org.vue'], resolve),
20
    name: 'org',
21
    meta: { title: '机构' }
25
    path: '',
26
    component: Layout,
27
    children: [{
28
      path: '/content',
29
      component: (resolve) => require(['../views/content/content.vue'], resolve),
30
      name: 'content',
31
      meta: { title: '内容' }
32
    }]
33
  },
34
  {
35
    path: '',
36
    component: Layout,
37
    children: [{
38
      path: '/company',
39
      component: (resolve) => require(['../views/company/company.vue'], resolve),
40
      name: 'company',
41
      meta: { title: '企业' }
42
    }]
43
  },
44
  {
45
    path: '',
46
    component: Layout,
47
    children: [{
48
      path: '/org',
49
      component: (resolve) => require(['../views/org/org.vue'], resolve),
50
      name: 'org',
51
      meta: { title: '机构' }
52
    }]
22 53
  }
23 54
];
24 55

+ 8 - 0
src/pages/h5/style/index.scss

@ -19,9 +19,17 @@
19 19
  }
20 20
  .list-info {
21 21
    .list-tit {
22
      display: block;
23
      white-space: nowrap !important;
24
      max-height: none;
25
      -webkit-line-clamp: unset;
22 26
      font-size: 16px;
23 27
    }
24 28
    .list-desc {
29
      display: block;
30
      white-space: nowrap !important;
31
      max-height: none;
32
      -webkit-line-clamp: unset;
25 33
      font-size: 14px;
26 34
    }
27 35
  }

+ 3 - 3
src/pages/h5/views/company/company.vue

@ -26,8 +26,8 @@
26 26
              <span>我们的产品</span>
27 27
            </div>
28 28
            <div class="content content-nf" v-if="platProducts.length">
29
              <baseProduct v-for="item in platProducts" :key="item.index" :itemSingle="item"></baseProduct>
30
              <p class="moretype"@click="moreProduct" v-show="loadingModalShow">查看更多产品</span></p>
29
              <baseProduct v-for="item in platProducts" :key="item.index" :itemSingle="item" :noBlank="true"></baseProduct>
30
              <p class="moretype" @click="moreProduct" v-show="loadingModalShow">查看更多产品</p>
31 31
            </div>
32 32
          </div>
33 33
        </div>
@ -54,7 +54,7 @@
54 54
            <span>相关文章</span>
55 55
          </div>
56 56
          <div class="content content-nf" v-if="compContents.length">
57
              <baseContent v-for="item in compContents" :key="item.index" :itemSingle="item"></baseContent>
57
              <baseContent v-for="item in compContents" :key="item.index" :itemSingle="item" :noBlank="true"></baseContent>
58 58
            </div>
59 59
        </div>
60 60
      </div>

+ 7 - 4
src/pages/h5/views/content/content.vue

@ -9,6 +9,7 @@
9 9
                <div class="info-tit info-tit-big">{{contentInfo.title}}</div>
10 10
                <div class="info-tag">
11 11
                  <span>{{contentInfo.modifyTime}}</span>
12
                  <pageView v-if="contentId" :pageObj="{ tn: 'article', id: contentId, src: '2'}"></pageView>
12 13
                  <span>作者/来源:{{contentInfo.source}}</span>
13 14
                </div>
14 15
              </div>
@ -29,7 +30,7 @@
29 30
              <span>相关专家</span>
30 31
            </div>
31 32
            <div class="content contentPro">
32
              <baseExpert v-for="item in platExperts" :key="item.index" :itemSingle="item"></baseExpert>
33
              <baseExpert v-for="item in platExperts" :key="item.index" :itemSingle="item" :noBlank="true"></baseExpert>
33 34
            </div>
34 35
          </div>
35 36
          <div class="inner-wrapper" v-if="platOrgs && platOrgs.length">
@ -37,7 +38,7 @@
37 38
              <span>相关机构</span>
38 39
            </div>
39 40
            <div class="content">
40
              <baseOrg v-for="item in platOrgs" :key="item.index" :itemSingle="item"></baseOrg>
41
              <baseOrg v-for="item in platOrgs" :key="item.index" :itemSingle="item" :noBlank="true"></baseOrg>
41 42
            </div>
42 43
          </div>
43 44
          <div class="inner-wrapper" v-if="platCompanys && platCompanys.length">
@ -45,7 +46,7 @@
45 46
              <span>相关企业</span>
46 47
            </div>
47 48
            <div class="content">
48
              <baseCompany v-for="item in platCompanys" :key="item.index" :itemSingle="item"></baseCompany>
49
              <baseCompany v-for="item in platCompanys" :key="item.index" :itemSingle="item" :noBlank="true"></baseCompany>
49 50
            </div>
50 51
          </div>
51 52
          <div class="block-wrapper" v-if="adinfo.shareAdCenter.length">
@ -58,7 +59,7 @@
58 59
                <span>最新文章</span>
59 60
              </div>
60 61
              <div class="content content-nf">
61
                  <baseContent v-for="item in paltNews" :key="item.index" :itemSingle="item" :showOwner="false"></baseContent>
62
                  <baseContent v-for="item in paltNews" :key="item.index" :itemSingle="item" :showOwner="false" :noBlank="true"></baseContent>
62 63
              </div>
63 64
            </div>
64 65
            <div class="block-wrapper" v-if="adinfo.shareAdBottom.length">
@ -79,6 +80,7 @@
79 80
  import baseOrg from '@/components/subTemplate/BaseOrg';
80 81
  import baseCompany from '@/components/subTemplate/BaseCompany';
81 82
  import baseContent from '@/components/subTemplate/BaseContent';
83
  import pageView from '@/components/pageView';
82 84
  export default {
83 85
    data() {
84 86
      return {
@ -100,6 +102,7 @@
100 102
      this.queryPaltNews();
101 103
    },
102 104
    components: {
105
      pageView,
103 106
      baseExpert,
104 107
      baseOrg,
105 108
      baseCompany,

+ 6 - 8
src/pages/h5/views/org/org.vue

@ -24,8 +24,8 @@
24 24
          <span>可提供服务</span>
25 25
        </div>
26 26
        <div class="content content-nf" v-if="platServices.length">
27
          <baseService v-for="item in platServices" :key="item.index" :itemSingle="item"></baseService>
28
          <p class="moretype" @click="moreService" v-show="loadingModalShow">查看更多服务</span></p>
27
          <baseService v-for="item in platServices" :key="item.index" :itemSingle="item" :noBlank="true"></baseService>
28
          <p class="moretype" @click="moreService" v-show="loadingModalShow">查看更多服务</p>
29 29
        </div>
30 30
      </div>
31 31
      <div class="inner-wrapper" v-if="platResources.length">
@ -33,8 +33,8 @@
33 33
          <span>可共享资源</span>
34 34
        </div>
35 35
        <div class="content content-nf" v-if="platResources.length">
36
          <baseResource v-for="item in platResources" :key="item.index" :itemSingle="item"></baseResource>
37
          <p class="moretype"@click="moreProduct" v-show="loadingModalShow2">查看更多资源</span></p>
36
          <baseResource v-for="item in platResources" :key="item.index" :itemSingle="item" :noBlank="true"></baseResource>
37
          <p class="moretype" @click="moreProduct" v-show="loadingModalShow2">查看更多资源</p>
38 38
        </div>
39 39
      </div>
40 40
    </div>
@ -61,7 +61,7 @@
61 61
        <span>相关文章</span>
62 62
      </div>
63 63
      <div class="content content-nf" v-if="orgContents.length">
64
        <baseContent v-for="item in orgContents" :key="item.index" :itemSingle="item"></baseContent>
64
        <baseContent v-for="item in orgContents" :key="item.index" :itemSingle="item" :noBlank="true"></baseContent>
65 65
      </div>
66 66
    </div>
67 67
    <div class="content-wrapper" v-if="likeOrgs && likeOrgs.length">
@ -69,7 +69,7 @@
69 69
        <span>您可能感兴趣的机构</span>
70 70
      </div>
71 71
      <div class="content">
72
        <a v-for="item in likeOrgs" :key="item.index" class="list-item" :href="'org.html?id='+item.id" target="_blank">
72
        <a v-for="item in likeOrgs" :key="item.index" class="list-item" :href="'org.html?id='+item.id">
73 73
          <div class="list-head" :style="{backgroundImage: 'url(' + item.logo + ')'}"></div>
74 74
          <div class="list-info">
75 75
            <div class="list-owner">{{item.name}}</div>
@ -79,8 +79,6 @@
79 79
      </div>
80 80
    </div>
81 81
  </div>
82
  </div>
83
  </div>
84 82
</template>
85 83
<script>
86 84
  import { urlParse, ImageUrl, defaultSet, strToArr, TimeTr, commenTime } from '@/libs/util';

+ 2 - 1
src/styles/listitem.scss

@ -103,6 +103,7 @@
103 103
  .list-info{
104 104
    flex: 1 1 170px;
105 105
    padding-left:15px;
106
    width: 170px;
106 107
    .list-tit{
107 108
      color:$mainFont;
108 109
      font-size:18px;
@ -123,7 +124,7 @@
123 124
    }
124 125
    .list-owner{
125 126
      color:$commonFont;
126
      line-height:30px;
127
      @include text-ellipsis();
127 128
    }
128 129
    .list-desc{
129 130
      @include text-ellipsis-n(2,20px);