Browse Source

增加企业机构h5浏览页面

lipengtao 6 years ago
parent
commit
e4d953cc15

+ 2 - 2
config/prod.env.js

@ -3,6 +3,6 @@ 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
  KX_API: '"http://192.168.3.233:81"'
8 8
}

BIN
src/pages/h5/image/company-bg.png


+ 21 - 9
src/pages/h5/router/index.js

@ -1,13 +1,25 @@
1
2 1
const constantRouterMap = [
3
  { 
4
        path: '/content',
5
        alwaysShow: true,
6
        component: (resolve) => require(['../views/content/content.vue'], resolve),
7
        name: 'content',
8
        meta: { title: '修改资料' }
9
     
10
    }   
2
  {
3
    path: '/content',
4
    alwaysShow: true,
5
    component: (resolve) => require(['../views/content/content.vue'], resolve),
6
    name: 'content',
7
    meta: { title: '内容' }
8
  },
9
  {
10
    path: '/company',
11
    alwaysShow: true,
12
    component: (resolve) => require(['../views/company/company.vue'], resolve),
13
    name: 'company',
14
    meta: { title: '企业' }
15
  },
16
  {
17
    path: '/org',
18
    alwaysShow: true,
19
    component: (resolve) => require(['../views/org/org.vue'], resolve),
20
    name: 'org',
21
    meta: { title: '机构' }
22
  }
11 23
];
12 24
13 25
// 实例化vue的时候只挂载constantRouter

+ 78 - 1
src/pages/h5/style/index.scss

@ -2,7 +2,6 @@
2 2
  width: 90px;
3 3
  height: 60px;
4 4
}
5
6 5
.list-item {
7 6
  .list-head {
8 7
    @include center-block;
@ -49,4 +48,82 @@
49 48
    right: -15px;
50 49
    left: -15px;
51 50
  }
51
}
52
.content .moretype {
53
  text-align: center;
54
  margin-top: 10px;
55
}
56
.header-box {
57
  background: url('../../image/company-bg.png') center 0 no-repeat;
58
  background-size: 100% 130px;
59
  overflow: hidden;
60
61
  .header_content {
62
    position: relative;
63
    text-align: center;
64
    min-height: 140px;
65
    margin: 15px 15px 6px;
66
    padding: 40px 40px 20px;
67
    background: rgba(256, 256, 256, .6);
68
    background: linear-gradient(rgba(256, 256, 256, .6), rgba(256, 256, 256, .9));
69
    border-radius: 6px;
70
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, .1);
71
72
    .header_content_top {
73
      border-radius: 4px;
74
      width: 120px;
75
      margin-left: -60px;
76
      background: none;
77
      position: absolute;
78
      margin-top: -15px;
79
      left: 50%;
80
      height: 80px;
81
      overflow: hidden;
82
83
      .cmy_logo_box {
84
        width: 120px;
85
        height: 80px;
86
        display: table-cell;
87
        vertical-align: middle;
88
        text-align: center;
89
        overflow: hidden;
90
91
        img {
92
          max-width: 100%;
93
          max-height: 100%;
94
          vertical-align: middle;
95
          height: auto !important;
96
          overflow-y: auto;
97
          color: transparent;
98
          font-size: 0;
99
        }
100
      }
101
    }
102
103
    .header_content-footer {
104
      margin-top: 82px;
105
106
      p {
107
        margin-bottom: 5px;
108
109
        .cmpName {
110
          font-size: 16px;
111
        }
112
      }
113
114
      .industry {
115
        font-size: 14px;
116
        color: #666;
117
        overflow: hidden;
118
        white-space: nowrap;
119
        text-overflow: ellipsis;
120
      }
121
122
      .addressbox {
123
        font-size: 13px;
124
        line-height: 16px;
125
        color: #666;
126
      }
127
    }
128
  }
52 129
}

+ 222 - 0
src/pages/h5/views/company/company.vue

@ -0,0 +1,222 @@
1
<template>
2
  <div class="browse-main">
3
    <div class="header-box">
4
      <div class="header_content">
5
        <div class="header_content_top">
6
          <div class="cmy_logo_box">
7
            <img :src="orgInfo.logo" alt="">
8
          </div>
9
        </div>
10
        <div class="header_content-footer">
11
          <p>
12
            <span class="cmpName">{{orgInfo.name}}</span>
13
            <span v-if="orgInfo.type === '2'">{{compType[orgInfo.type]}} </span>
14
          </p>
15
          <p class="industry">{{keywordObj[1] ? keywordObj[1].join(" | ") : ''}}</p>
16
          <p class="addressbox">
17
            <em class="address"></em> {{citys[orgInfo.addr]}}</p>
18
        </div>
19
      </div>
20
    </div>
21
    <div class="block-wrapper">
22
      <div class="left-main">
23
        <div class="content-wrapper" v-if="platProducts && platProducts.length">
24
          <div class="inner-wrapper">
25
            <div class="content-title">
26
              <span>我们的产品</span>
27
            </div>
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>
31
            </div>
32
          </div>
33
        </div>
34
        <div class="content-wrapper" v-if="orgInfo.descp">
35
          <div class="inner-wrapper">
36
            <div class="content-title">
37
              <span>企业简介</span>
38
            </div>
39
            <div class="content">{{orgInfo.descp}}</div>
40
          </div>
41
          <div class="inner-wrapper" v-if="keywordObj && keywordObj[2].length">
42
            <div class="content-title">
43
              <span>专注领域</span>
44
            </div>
45
            <div class="content">
46
              <el-row class="tag-item">
47
                <el-tag v-for="sub in keywordObj[2]" :key="sub.index">{{sub}}</el-tag>
48
              </el-row>
49
            </div>
50
          </div>
51
        </div>
52
        <div class="content-wrapper" v-if="compContents && compContents.length">
53
          <div class="content-title">
54
            <span>相关文章</span>
55
          </div>
56
          <div class="content content-nf" v-if="compContents.length">
57
              <baseContent v-for="item in compContents" :key="item.index" :itemSingle="item"></baseContent>
58
            </div>
59
        </div>
60
      </div>
61
    </div>
62
  </div>
63
</template>
64
<script>
65
  import { urlParse, defaultSet, commenTime } from '@/libs/util';
66
  import queryDict from '@/libs/queryDict';
67
  import baseContent from '@/components/subTemplate/BaseContent';
68
  import shareOut from '@/components/ShareOut';
69
  import baseProduct from '@/components/subTemplate/BaseProduct';
70
71
  export default {
72
    data() {
73
      return {
74
        orgInfo: {},
75
        pageSize: 2,
76
        pageNo: 1,
77
        keywordObj: [],
78
        numRanger: [],
79
        compType: [],
80
        citys: [],
81
        platProducts: [],
82
        loadingModalShow: false,
83
        isLoading: false,
84
        compContents: []
85
      };
86
    },
87
    created() {
88
      this.companyId = urlParse('id');
89
      this.getDictoryData();
90
      this.getorgInfo();
91
      this.getCompanyKeyword();
92
      this.getProductlist();
93
      this.getCompContent();
94
    },
95
    components: {
96
      shareOut,
97
      baseProduct,
98
      baseContent
99
    },
100
    methods: {
101
      moreProduct() {
102
        this.pageNo++
103
        this.getProductlist();
104
      },
105
      getDictoryData() {
106
        const that = this
107
        queryDict.applyDict('QYGM', function (dictData) {
108
          dictData.map(item => {
109
            that.numRanger[item.code] = item.caption
110
          })
111
        }) // 企业规模
112
        queryDict.applyDict('QYLX', function (dictData) {
113
          dictData.map(item => {
114
            that.compType[item.code] = item.caption
115
          })
116
        }) // 企业类型
117
        queryDict.applyDict('XZQH', function (dictData) {
118
          dictData.map(item => {
119
            that.citys[item.code] = item.caption
120
          })
121
        })
122
      },
123
      getorgInfo() {
124
        this.$axios.get('/ajax/company/qo', {
125
          id: this.companyId
126
        }, (res) => {
127
          if (res.success) {
128
            const obj = res.data
129
            if (!obj.logo) {
130
              obj.logo = defaultSet.img.org
131
            }
132
            document.title = obj.name + '-' + PLAT.info.title
133
            this.orgInfo = obj
134
          };
135
        });
136
      },
137
      getCompanyKeyword() {
138
        var that = this
139
        that.$axios.get('/ajax/company/qo/keyword', {
140
          id: that.companyId
141
        }, function (res) {
142
          if (res.success && res.data) {
143
            const str = res.data
144
            var objKey = {}
145
            if (str.length > 0) {
146
              str.map(item => {
147
                if (!objKey[item.type]) {
148
                  objKey[item.type] = []
149
                  objKey[item.type].push(item.value)
150
                } else {
151
                  objKey[item.type].push(item.value)
152
                }
153
              })
154
            }
155
            that.keywordObj = objKey
156
          }
157
        })
158
      },
159
      getProductlist() {
160
        var that = this
161
        this.$axios.get('/ajax/product/pq', {
162
          companyId: that.companyId,
163
          pageSize: that.pageSize,
164
          pageNo: that.pageNo
165
        }, function (res) {
166
          if (res.success) {
167
            const obj = res.data.data
168
            if (obj.length > 0) {
169
              if (res.data.pageNo !== that.pageNo) {
170
                that.loadingModalShow = false;
171
                return;
172
              }
173
              that.platProducts = that.platProducts.concat(obj);
174
              if (obj.length < that.pageSize) {
175
                that.loadingModalShow = false;
176
              } else {
177
                that.loadingModalShow = true;
178
              }
179
            } else {
180
              that.loadingModalShow = false;
181
            }
182
          }
183
        })
184
      },
185
      searchLower() {
186
        if (this.loadingModalShow && !this.isLoading) {
187
          this.pageNo++;
188
          this.getProductlist();
189
        }
190
      },
191
      getCompContent() {
192
        var that = this
193
        this.$axios.get('/ajax/article/lq/with/company', {
194
          cid: this.companyId
195
        }, (res) => {
196
          if (res.success) {
197
            let $info = res.data;
198
            if ($info.length > 0) {
199
              for (let i = 0; i < $info.length; ++i) {
200
                (function (str) {
201
                  that.$axios.get('/ajax/article/qo', {
202
                    id: str.id
203
                  }, (data) => {
204
                    if (data.success) {
205
                      str.title = data.data.title
206
                      str.modifyTime = commenTime(data.data.modifyTime, true)
207
                      that.$forceUpdate()
208
                    };
209
                  });
210
                })($info[i])
211
              }
212
              that.compContents = $info;
213
            }
214
          };
215
        });
216
      }
217
    }
218
  };
219
</script>
220
<style lang="scss" rel="stylesheet/scss">
221
  @import '../../style/index';
222
</style>

+ 1 - 0
src/pages/h5/views/content/content.vue

@ -118,6 +118,7 @@
118 118
              for (let i = 0; i < $info.length; ++i) {
119 119
                if($info[i].id === this.contentId) {
120 120
                  $info.splice(i,1)
121
                  i--
121 122
                  continue
122 123
                }
123 124
                if ($info[i].modifyTime) {

+ 354 - 0
src/pages/h5/views/org/org.vue

@ -0,0 +1,354 @@
1
<template>
2
  <div class="browse-main">
3
    <div class="header-box">
4
      <div class="header_content">
5
        <div class="header_content_top">
6
          <div class="cmy_logo_box">
7
            <img :src="orgInfo.logo" alt="">
8
          </div>
9
        </div>
10
        <div class="header_content-footer">
11
          <p>
12
            <span class="cmpName">{{orgInfo.forShort ? orgInfo.forShort : orgInfo.name}}</span><em class="authicon" :class="{'icon-com': orgInfo.authStatus==='3'}"></em>
13
            <span v-if="orgInfo.type === '2'">{{compType[orgInfo.type]}} </span>
14
          </p>
15
          <p class="industry">{{orgInfo.industry ? orgInfo.industry.join(" | ") : ''}}</p>
16
          <p class="addressbox">
17
            <em class="address"></em> {{orgInfo.city}}</p>
18
        </div>
19
      </div>
20
    </div>
21
    <div class="content-wrapper split-other" v-if="platServices.length || platResources.length">
22
      <div class="inner-wrapper" v-if="platServices.length">
23
        <div class="content-title">
24
          <span>可提供服务</span>
25
        </div>
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>
29
        </div>
30
      </div>
31
      <div class="inner-wrapper" v-if="platResources.length">
32
        <div class="content-title">
33
          <span>可共享资源</span>
34
        </div>
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>
38
        </div>
39
      </div>
40
    </div>
41
    <div class="content-wrapper" v-if="orgInfo.descp">
42
      <div class="inner-wrapper">
43
        <div class="content-title">
44
          <span>机构简介</span>
45
        </div>
46
        <div class="content">{{orgInfo.descp}}</div>
47
      </div>
48
      <div class="inner-wrapper" v-if="orgInfo.subject && orgInfo.subject.length">
49
        <div class="content-title">
50
          <span>专注领域</span>
51
        </div>
52
        <div class="content">
53
          <el-row class="tag-item">
54
            <el-tag v-for="sub in orgInfo.subject" :key="sub.index">{{sub}}</el-tag>
55
          </el-row>
56
        </div>
57
      </div>
58
    </div>
59
    <div class="content-wrapper" v-if="orgContents && orgContents.length">
60
      <div class="content-title">
61
        <span>相关文章</span>
62
      </div>
63
      <div class="content content-nf" v-if="orgContents.length">
64
        <baseContent v-for="item in orgContents" :key="item.index" :itemSingle="item"></baseContent>
65
      </div>
66
    </div>
67
    <div class="content-wrapper" v-if="likeOrgs && likeOrgs.length">
68
      <div class="content-title">
69
        <span>您可能感兴趣的机构</span>
70
      </div>
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">
73
          <div class="list-head" :style="{backgroundImage: 'url(' + item.logo + ')'}"></div>
74
          <div class="list-info">
75
            <div class="list-owner">{{item.name}}</div>
76
            <div class="list-desc">{{item.compType}}</div>
77
          </div>
78
        </a>
79
      </div>
80
    </div>
81
  </div>
82
  </div>
83
  </div>
84
</template>
85
<script>
86
  import { urlParse, ImageUrl, defaultSet, strToArr, TimeTr, commenTime } from '@/libs/util';
87
  import queryDict from '@/libs/queryDict';
88
  import queryBase from '@/libs/queryBase';
89
90
  import shareOut from '@/components/ShareOut';
91
  import collectCo from '@/components/CollectCo';
92
  import contactChat from '@/components/ContactChat';
93
  import baseService from '@/components/subTemplate/BaseService';
94
  import baseResource from '@/components/subTemplate/BaseResource';
95
  import baseContent from '@/components/subTemplate/BaseContent';
96
97
  export default {
98
    data() {
99
      return {
100
        activeName: 'first',
101
        numRanger: [],
102
        compType: [],
103
        orgInfo: '',
104
        orgId: '',
105
        elurl: '',
106
        platServices: [],
107
        serCount: 0,
108
        loadingModalShow: false, // 是否显示按钮
109
        loadingComplete: false, // 是否全部加载
110
        isFormSearch: false, // 数据加载
111
        isLoading: false, // button style...
112
        ifDefault: false, // 是否缺省
113
        platResources: [],
114
        resCount: 0,
115
        loadingModalShow2: false,
116
        loadingComplete2: false,
117
        isFormSearch2: false,
118
        isLoading2: false,
119
        ifDefault2: false,
120
        dataO: {
121
          serModifyTime: '',
122
          resPublishTime: '',
123
          resShareId: ''
124
        },
125
        rows: 2,
126
        orgContents: '',
127
        likeOrgs: ''
128
      };
129
    },
130
    created() {
131
      this.orgId = urlParse('id');
132
      this.elurl = window.location.href;
133
      this.getDictoryData();
134
      this.getorgInfo();
135
      this.getOrgWave();
136
      this.getOrgResource();
137
      this.queryPubCount();
138
      this.getOrgContent();
139
      this.getLikeOrgs();
140
    },
141
    components: {
142
      shareOut,
143
      collectCo,
144
      contactChat,
145
      baseService,
146
      baseResource,
147
      baseContent
148
    },
149
    methods: {
150
      moreService() {
151
        this.getOrgWave()
152
      },
153
      moreProduct() {
154
        this.getOrgResource()
155
      },
156
      getDictoryData() {
157
        const that = this
158
        queryDict.applyDict('QYGM', function (dictData) {
159
          dictData.map(item => {
160
            that.numRanger[item.code] = item.caption
161
          })
162
        }) // 企业规模
163
        queryDict.applyDict('QYLX', function (dictData) {
164
          dictData.map(item => {
165
            that.compType[item.code] = item.caption
166
          })
167
        }) // 企业类型
168
      },
169
      getorgInfo() {
170
        this.$axios.getk('/ajax/org/' + this.orgId, {
171
        }, (res) => {
172
          if (res.success) {
173
            var $info = res.data;
174
            if ($info.hasOrgLogo) {
175
              $info.logo = ImageUrl(('org/' + $info.id + '.jpg'), true)
176
            } else {
177
              $info.logo = defaultSet.img.org
178
            }
179
            if ($info.subject) {
180
              $info.subject = strToArr($info.subject);
181
            }
182
            if ($info.industry) {
183
              $info.industry = strToArr($info.industry);
184
            }
185
            if ($info.qualification) {
186
              $info.qualification = strToArr($info.qualification);
187
            }
188
            if ($info.foundTime) {
189
              $info.foundTime = TimeTr($info.foundTime);
190
            }
191
            document.title = ($info.forShort ? $info.forShort : $info.name) + '-' + PLAT.info.title
192
            this.orgInfo = $info;
193
          };
194
        });
195
      },
196
      getOrgWave() {
197
        this.$axios.getk('/ajax/ware/publish', {
198
          category: '2',
199
          owner: this.orgId,
200
          modifyTime: this.dataO.serModifyTime,
201
          rows: this.rows
202
        }, (res) => {
203
          if (res.success && res.data) {
204
            var $info = res.data;
205
            if ($info.length > 0) {
206
              this.dataO.serModifyTime = $info[$info.length - 1].modifyTime;
207
              this.platServices = this.platServices.concat($info);
208
              this.isFormSearch = true;
209
              if ($info.length < this.rows) {
210
                this.loadingModalShow = false;
211
                this.isFormSearch = false;
212
              } else {
213
                this.loadingModalShow = true;
214
              }
215
            } else {
216
              this.loadingModalShow = false;
217
              this.isFormSearch = false;
218
            };
219
            var liLen = this.platServices.length;
220
            if ($info.length === 0 && liLen === 0) {
221
              this.ifDefault = true;
222
            };
223
          };
224
        });
225
      },
226
      searchLower() {
227
        if (this.loadingModalShow && !this.isLoading) {
228
          this.getOrgWave();
229
        }
230
      },
231
      getOrgResource() {
232
        this.$axios.getk('/ajax/resource/publish', {
233
          category: '2',
234
          owner: this.orgId,
235
          publishTime: this.dataO.resPublishTime,
236
          shareId: this.dataO.resShareId,
237
          rows: this.rows
238
        }, (res) => {
239
          if (res.success && res.data) {
240
            var $info = res.data;
241
            if ($info.length > 0) {
242
              this.dataO.resPublishTime = $info[$info.length - 1].publishTime;
243
              this.dataO.resShareId = $info[$info.length - 1].shareId;
244
              this.platResources =  this.platResources.concat($info);
245
              this.isFormSearch2 = true;
246
              if ($info.length < this.rows) {
247
                this.loadingModalShow2 = false;
248
                this.isFormSearch2 = false;
249
              } else {
250
                this.loadingModalShow2 = true;
251
              }
252
            } else {
253
              this.loadingModalShow2 = false;
254
              this.isFormSearch2 = false;
255
            };
256
            var liLen = this.platPatents.length;
257
            if ($info.length === 0 && liLen === 0) {
258
              this.ifDefault2 = true;
259
            };
260
          };
261
        });
262
      },
263
      searchLower2() {
264
        if (this.loadingModalShow2 && !this.isLoading2) {
265
          this.getOrgResource();
266
        }
267
      },
268
      queryPubCount() {
269
        var that = this
270
        this.$axios.getk('/ajax/ware/count/publish', {
271
          owner: that.orgId,
272
          category: '2'
273
        }, function (data) {
274
          if (data.data > 0 && data.data < 99) {
275
            that.serCount = data.data;
276
          }
277
          if (data.data > 99) {
278
            that.serCount = '99+';
279
          }
280
        });
281
        this.$axios.getk('/ajax/resource/count/publish', {
282
          owner: that.orgId,
283
          category: '2'
284
        }, function (data) {
285
          if (data.data > 0 && data.data < 99) {
286
            that.resCount = data.data;
287
          }
288
          if (data.data > 99) {
289
            that.resCount = '99+';
290
          }
291
        });
292
      },
293
      getOrgContent() {
294
        var that = this
295
        this.$axios.get('/ajax/article/lq/with/org', {
296
          oid: this.orgId
297
        }, (res) => {
298
          if (res.success) {
299
            var $info = res.data;
300
            if ($info.length > 0) {
301
              for (let i = 0; i < $info.length; ++i) {
302
                (function (str) {
303
                  that.$axios.get('/ajax/article/qo', {
304
                    id: str.id
305
                  }, (data) => {
306
                    if (data.success) {
307
                      str.title = data.data.title
308
                      str.modifyTime = commenTime(data.data.modifyTime, true)
309
                      that.$forceUpdate()
310
                    };
311
                  });
312
                })($info[i])
313
              }
314
              that.orgContents = $info;
315
            };
316
          };
317
        });
318
      },
319
      getLikeOrgs() {
320
        var that = this
321
        this.$axios.getk('/ajax/org/ralateOrgs', {
322
          orgId: this.orgId
323
        }, (res) => {
324
          if (res.success) {
325
            var $info = res.data;
326
            if ($info.length > 0) {
327
              for (let i = 0; i < $info.length; ++i) {
328
                (function (str) {
329
                  queryBase.getOrganization(str.id, function (sc, value) {
330
                    if (sc) {
331
                      str.name = value.name
332
                      str.orgType = that.compType[value.orgType]
333
                      if (str.hasOrgLogo) {
334
                        str.logo = ImageUrl(('org/' + value.id + '.jpg'), true)
335
                      } else {
336
                        str.logo = defaultSet.img.org
337
                      }
338
                      that.$forceUpdate()
339
                    }
340
                  })
341
                })($info[i])
342
              }
343
              that.likeOrgs = $info;
344
            }
345
          };
346
        });
347
      }
348
    }
349
  };
350
</script>
351
352
<style lang="scss" rel="stylesheet/scss">
353
  @import '../../style/index';
354
</style>