Browse Source

scss common

luyanan 6 years ago
parent
commit
29fa321f56
50 changed files with 2141 additions and 883 deletions
  1. 3 4
      .eslintignore
  2. 1 1
      .eslintrc.js
  3. 3 4
      build/build.js
  4. 35 12
      build/utils.js
  5. 7 37
      build/webpack.dev.conf.js
  6. 3 0
      build/webpack.prod.conf.js
  7. 33 27
      package.json
  8. 6 5
      src/App.vue
  9. 11 9
      src/components/Breadcrumb/index.vue
  10. 206 0
      src/components/DynamicTags/index.vue
  11. 26 23
      src/components/global-component/backtop/BackTop.vue
  12. 43 37
      src/components/global-component/default/default.vue
  13. 7 6
      src/components/global-component/loading/Loading.vue
  14. 8 0
      src/element-variables.scss
  15. 5 45
      src/libs/axios.js
  16. 5 4
      src/libs/http.js
  17. 90 0
      src/libs/queryBase.js
  18. 50 0
      src/libs/queryDict.js
  19. 62 0
      src/libs/request.js
  20. 7 3
      src/main.js
  21. 9 9
      src/router/index.js
  22. 36 0
      src/styles/base.scss
  23. 226 0
      src/styles/browse.scss
  24. 109 0
      src/styles/common.scss
  25. 4 0
      src/styles/index.scss
  26. 122 0
      src/styles/listitem.scss
  27. 105 0
      src/styles/mixin.scss
  28. 307 249
      src/views/frontviews/Dashboard.vue
  29. 28 24
      src/views/frontviews/ViewAboutUs.vue
  30. 39 33
      src/views/frontviews/ViewFindResource/list.vue
  31. 39 33
      src/views/frontviews/ViewFindServe/list.vue
  32. 1 1
      src/views/frontviews/platTrend/ViewPlatTrend.vue
  33. 41 33
      src/views/infoshow/components/BeyondTo/index.vue
  34. 19 15
      src/views/infoshow/components/CollectCo/index.vue
  35. 93 75
      src/views/infoshow/components/PreviewMagnify/index.vue
  36. 43 31
      src/views/infoshow/components/ShareOut/index.vue
  37. 128 12
      src/views/infoshow/expertShow/index.vue
  38. 16 12
      src/views/layout/Layout.vue
  39. 16 12
      src/views/layout/common.vue
  40. 23 19
      src/views/layout/components/Navbar.vue
  41. 42 32
      src/views/layout/components/TheFooter.vue
  42. 64 49
      src/views/layout/components/TheHeader.vue
  43. 3 4
      src/views/sub-component/BaseAgency.vue
  44. 2 3
      src/views/sub-component/BaseArticle.vue
  45. 4 5
      src/views/sub-component/BaseCompany.vue
  46. 4 5
      src/views/sub-component/BaseExpert.vue
  47. 2 3
      src/views/sub-component/BaseResource.vue
  48. 2 3
      src/views/sub-component/BaseResult.vue
  49. 2 3
      src/views/sub-component/BaseService.vue
  50. 1 1
      src/views/sub-component/DynamicTags.vue

+ 3 - 4
.eslintignore

@ -1,4 +1,3 @@
1
/build/
2
/config/
3
/dist/
4
/*.js
1
build/*.js
2
config/*.js
3
src/assets

+ 1 - 1
.eslintrc.js

@ -27,8 +27,8 @@ module.exports = {
27 27
    'generator-star-spacing': 0,
28 28
    // allow debugger during development
29 29
    'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
30
    'semi': ['error', 'always'],
31 30
    'no-tabs': 0,
31
    'semi': 0,
32 32
    'indent': 0,
33 33
    'space-before-function-paren': 0,
34 34
    'eol-last': ['error', 'always'],

+ 3 - 4
build/build.js

@ -1,7 +1,7 @@
1 1
'use strict'
2 2
require('./check-versions')()
3 3
4
// process.env.NODE_ENV = 'production'
4
process.env.NODE_ENV = 'production'
5 5
6 6
const ora = require('ora')
7 7
const rm = require('rimraf')
@ -11,8 +11,7 @@ const webpack = require('webpack')
11 11
const config = require('../config')
12 12
const webpackConfig = require('./webpack.prod.conf')
13 13
14
// const spinner = ora('building for production...')
15
var spinner = ora('building for ' + process.env.NODE_ENV + ' of ' + process.env.env_config+ ' mode...' )
14
const spinner = ora('building for production...')
16 15
spinner.start()
17 16
18 17
rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
@ -23,7 +22,7 @@ rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
23 22
    process.stdout.write(stats.toString({
24 23
      colors: true,
25 24
      modules: false,
26
      children: false, // If you are using ts-loader, setting this to true will make TypeScript errors show up during build.
25
      children: false,
27 26
      chunks: false,
28 27
      chunkModules: false
29 28
    }) + '\n\n')

+ 35 - 12
build/utils.js

@ -54,14 +54,37 @@ exports.cssLoaders = function (options) {
54 54
    }
55 55
  }
56 56
57
  var stylusOptions = {
58
      import: [
59
          path.join(__dirname, "../src/common/stylus/mixin.styl"), // mixin.styl全局变量文件
60
      ],
61
      paths: [
62
          path.join(__dirname, "../src/common/stylus/"),
63
          path.join(__dirname, "../"),
64
      ],
57
  /**
58
  * sass Less 源文件
59
  * @param name classFile
60
  * @returns {string}
61
  */
62
  function resolveResouce(name) {
63
    return path.resolve(__dirname, '../src/styles/' + name);
64
  }
65
   
66
  //导入全局sass mixin function等
67
  function generateSassResourceLoader(){
68
    var loaders = [
69
     cssLoader,
70
     //'postcss-loader',
71
     'sass-loader',
72
     {
73
      loader:'sass-resources-loader',
74
      options: {
75
       //需要一个全局路径
76
       resources: [resolveResouce('mixin.scss')]
77
      }
78
     }
79
    ]
80
    if(options.extract){
81
     return ExtractTextPlugin.extract({
82
      use:loaders,
83
      fallback: 'vue-style-loader'
84
     })
85
    }else{
86
     return ['vue-style-loader'].concat(loaders)
87
    }
65 88
  }
66 89
67 90
  // https://vue-loader.vuejs.org/en/configurations/extract-css.html
@ -69,10 +92,10 @@ exports.cssLoaders = function (options) {
69 92
    css: generateLoaders(),
70 93
    postcss: generateLoaders(),
71 94
    less: generateLoaders('less'),
72
    sass: generateLoaders('sass', { indentedSyntax: true }),
73
    scss: generateLoaders('sass'),
74
    stylus: generateLoaders('stylus', stylusOptions),
75
    styl: generateLoaders('stylus', stylusOptions)
95
    sass: generateSassResourceLoader(),
96
    scss: generateSassResourceLoader(),
97
    stylus: generateLoaders('stylus'),
98
    styl: generateLoaders('stylus')
76 99
  }
77 100
}
78 101

+ 7 - 37
build/webpack.dev.conf.js

@ -1,26 +1,17 @@
1 1
'use strict'
2
const path = require('path')
2 3
const utils = require('./utils')
3 4
const webpack = require('webpack')
4 5
const config = require('../config')
5 6
const merge = require('webpack-merge')
6
const path = require('path')
7 7
const baseWebpackConfig = require('./webpack.base.conf')
8
const CopyWebpackPlugin = require('copy-webpack-plugin')
9 8
const HtmlWebpackPlugin = require('html-webpack-plugin')
10 9
const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
11 10
const portfinder = require('portfinder')
12 11
13
// // 通过express导入路由
14
// const express = require('express')
15
// const app = express()
16
17
// //模拟服务器返回数据--开始
18
// var appData = require('../static/plat-info.json')
19
// var plat = appData.plat
20
// // 编写路由
21
// var apiRoutes = express.Router()
22
23
// app.use('/api', apiRoutes)
12
function resolve (dir) {
13
  return path.join(__dirname, '..', dir)
14
}
24 15
25 16
const HOST = process.env.HOST
26 17
const PORT = process.env.PORT && Number(process.env.PORT)
@ -35,13 +26,8 @@ const devWebpackConfig = merge(baseWebpackConfig, {
35 26
  // these devServer options should be customized in /config/index.js
36 27
  devServer: {
37 28
    clientLogLevel: 'warning',
38
    historyApiFallback: {
39
      rewrites: [
40
        { from: /.*/, to: path.posix.join(config.dev.assetsPublicPath, 'index.html') },
41
      ],
42
    },
29
    historyApiFallback: true,
43 30
    hot: true,
44
    contentBase: false, // since we use CopyWebpackPlugin.
45 31
    compress: true,
46 32
    host: HOST || config.dev.host,
47 33
    port: PORT || config.dev.port,
@ -55,14 +41,6 @@ const devWebpackConfig = merge(baseWebpackConfig, {
55 41
    watchOptions: {
56 42
      poll: config.dev.poll,
57 43
    }
58
    // before(app) {
59
    //   app.get('/api/plat', function (req, res) {
60
    //     res.json({
61
    //       errno: 0,
62
    //       data: plat
63
    //     });
64
    //   });
65
    // }
66 44
  },
67 45
  plugins: [
68 46
    new webpack.DefinePlugin({
@ -76,16 +54,8 @@ const devWebpackConfig = merge(baseWebpackConfig, {
76 54
      filename: 'index.html',
77 55
      template: 'index.html',
78 56
      inject: true,
79
      favicon: path.resolve('favicon.ico')
80
    }),
81
    // copy custom static assets
82
    new CopyWebpackPlugin([
83
      {
84
        from: path.resolve(__dirname, '../static'),
85
        to: config.dev.assetsSubDirectory,
86
        ignore: ['.*']
87
      }
88
    ])
57
      favicon: resolve('favicon.ico')
58
    })
89 59
  ]
90 60
})
91 61

+ 3 - 0
build/webpack.prod.conf.js

@ -11,6 +11,9 @@ const ExtractTextPlugin = require('extract-text-webpack-plugin')
11 11
const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')
12 12
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
13 13
14
function resolve (dir) {
15
  return path.join(__dirname, '..', dir)
16
}
14 17
// const env = require('../config/prod.env')
15 18
const env = config.build[process.env.env_config+'Env']
16 19

+ 33 - 27
package.json

@ -19,6 +19,7 @@
19 19
    "axios": "^0.17.1",
20 20
    "babel-polyfill": "^6.26.0",
21 21
    "element-ui": "^2.3.8",
22
    "js-cookie": "^2.2.0",
22 23
    "qrcodejs2": "0.0.2",
23 24
    "style-loader": "^0.20.3",
24 25
    "stylus": "^0.54.5",
@ -29,57 +30,62 @@
29 30
    "vuex": "^3.0.1"
30 31
  },
31 32
  "devDependencies": {
32
    "autoprefixer": "^7.1.2",
33
    "babel-core": "^6.22.1",
33
    "autoprefixer": "^7.2.3",
34
    "babel-core": "^6.26.0",
34 35
    "babel-eslint": "^8.2.1",
35 36
    "babel-helper-vue-jsx-merge-props": "^2.0.3",
36
    "babel-loader": "^7.1.1",
37
    "babel-loader": "^7.1.2",
37 38
    "babel-plugin-syntax-jsx": "^6.18.0",
38
    "babel-plugin-transform-runtime": "^6.22.0",
39
    "babel-plugin-transform-runtime": "^6.23.0",
39 40
    "babel-plugin-transform-vue-jsx": "^3.5.0",
40
    "babel-preset-env": "^1.3.2",
41
    "babel-preset-stage-2": "^6.22.0",
42
    "chalk": "^2.0.1",
43
    "copy-webpack-plugin": "^4.0.1",
44
    "cross-env": "^5.2.0",
41
    "babel-preset-env": "^1.6.1",
42
    "babel-preset-stage-2": "^6.24.1",
43
    "chalk": "^2.3.0",
44
    "copy-webpack-plugin": "^4.2.3",
45 45
    "css-loader": "^0.28.11",
46
    "eslint": "^4.15.0",
46
    "cross-env": "^5.2.0",
47
    "eslint": "^4.13.1",
47 48
    "eslint-config-standard": "^10.2.1",
48 49
    "eslint-friendly-formatter": "^3.0.0",
49
    "eslint-loader": "^1.7.1",
50
    "eslint-loader": "^1.9.0",
50 51
    "eslint-plugin-import": "^2.7.0",
51 52
    "eslint-plugin-node": "^5.2.0",
52 53
    "eslint-plugin-promise": "^3.4.0",
53 54
    "eslint-plugin-standard": "^3.0.1",
55
    "eslint-plugin-html": "^4.0.1",
54 56
    "eslint-plugin-vue": "^4.0.0",
55
    "extract-text-webpack-plugin": "^3.0.0",
56
    "file-loader": "^1.1.4",
57
    "eventsource-polyfill": "^0.9.6",
58
    "extract-text-webpack-plugin": "^3.0.2",
59
    "file-loader": "^1.1.5",
57 60
    "friendly-errors-webpack-plugin": "^1.6.1",
58 61
    "html-webpack-plugin": "^2.30.1",
59
    "js-cookie": "^2.2.0",
60 62
    "node-notifier": "^5.1.2",
63
    "node-sass": "^4.7.2",
61 64
    "optimize-css-assets-webpack-plugin": "^3.2.0",
62
    "ora": "^1.2.0",
65
    "ora": "^1.3.0",
63 66
    "portfinder": "^1.0.13",
64 67
    "postcss-import": "^11.0.0",
65
    "postcss-loader": "^2.0.8",
66
    "postcss-url": "^7.2.1",
67
    "rimraf": "^2.6.0",
68
    "semver": "^5.3.0",
69
    "shelljs": "^0.7.6",
68
    "postcss-loader": "^2.0.9",
69
    "postcss-url": "^7.3.0",
70
    "rimraf": "^2.6.2",
71
    "sass-loader": "^6.0.6",
72
    "sass-resources-loader": "^1.3.1",
73
    "semver": "^5.4.1",
74
    "shelljs": "^0.7.8",
70 75
    "stylus-loader": "^2.5.1",
71
    "uglifyjs-webpack-plugin": "^1.1.1",
72
    "url-loader": "^0.5.8",
73
    "vue-loader": "^13.3.0",
74
    "vue-style-loader": "^3.1.2",
75
    "vue-template-compiler": "^2.5.2",
76
    "svg-sprite-loader": "^3.5.2",
77
    "uglifyjs-webpack-plugin": "^1.1.3",
78
    "url-loader": "^0.6.2",
79
    "vue-loader": "^13.7.2",
80
    "vue-style-loader": "^3.0.3",
81
    "vue-template-compiler": "^2.5.10",
76 82
    "webpack": "^3.10.0",
77 83
    "webpack-bundle-analyzer": "^2.9.1",
78
    "webpack-dev-server": "^2.6.1",
84
    "webpack-dev-server": "^2.9.7",
79 85
    "webpack-merge": "^4.1.1"
80 86
  },
81 87
  "engines": {
82
    "node": ">= 6.0.0",
88
    "node": ">= 4.0.0",
83 89
    "npm": ">= 3.0.0"
84 90
  },
85 91
  "browserslist": [

+ 6 - 5
src/App.vue

@ -27,10 +27,11 @@
27 27
  };
28 28
</script>
29 29
30
<style lang="stylus" rel="stylesheet/stylus">
31
  @import './common/stylus/index';
30
<style rel="stylesheet/scss" lang="scss" scoped>
31
  @import './styles/index';
32 32
33
  .app-main
34
    width: 100%
35
    height: 100%
33
  .app-main{
34
    width: 100%;
35
    height: 100%;
36
  }
36 37
</style>

+ 11 - 9
src/components/Breadcrumb/index.vue

@ -46,13 +46,15 @@ export default {
46 46
};
47 47
</script>
48 48
49
<style rel="stylesheet/stylus" lang="stylus" scoped>
50
  .app-breadcrumb.el-breadcrumb
51
    display: inline-block
52
    font-size: 14px
53
    line-height: 50px
54
    margin-left: 10px
55
    .no-redirect
56
      color: #97a8be
57
      cursor: text
49
<style rel="stylesheet/scss" lang="scss" scoped>
50
  .app-breadcrumb.el-breadcrumb{
51
    display: inline-block;
52
    font-size: 14px;
53
    line-height: 50px;
54
    margin-left: 10px;
55
    .no-redirect{
56
      color: #97a8be;
57
      cursor: text;
58
    }
59
  }
58 60
</style>

+ 206 - 0
src/components/DynamicTags/index.vue

@ -0,0 +1,206 @@
1
<template>
2
  <div class="tag-box">
3
    <div class="tag-btn" v-if="!isShowAdd">
4
      <el-input
5
        class="input-new-tag"
6
        v-if="inputVisible"
7
        v-model="inputValue"
8
        ref="saveTagInput"
9
        size="medium"
10
        :maxlength="tagInfo.limitCount"
11
        @keyup.enter.native="handleInputConfirm"
12
        @blur="handleInputConfirm"
13
      >
14
      </el-input>
15
      <!-- <el-autocomplete
16
        class="input-new-tag"
17
        v-if="inputVisible"
18
        v-model="inputValue"
19
        ref="saveTagInput"
20
        size="medium"
21
        :placeholder="tagInfo.placeholder"
22
        :trigger-on-focus="false"
23
        @select="handleSelect"
24
        :fetch-suggestions="querySearch"
25
        @keyup.enter.native="handleInputConfirm"
26
        @blur="handleInputConfirm"
27
      >
28
        <template slot-scope="{ item }">
29
          <div class="name">{{ item.caption }}</div>
30
        </template>
31
      </el-autocomplete> -->
32
      <el-button v-else class="button-new-tag" size="medium" @click="showInput">+ {{tagInfo.placeholder}}</el-button>
33
    </div>
34
    <div class="tag-show" :class="tagInfo.tagblock ? 'tag-block' : ''">
35
      <div class="tag-item" :key="tag" v-for="(tag,tagIndex) in dynamicTags">
36
        <el-tag
37
          closable
38
          :disable-transitions="false"
39
          @close="handleClose(tagIndex)">
40
          {{tag}}
41
        </el-tag>
42
      </div>
43
    </div>
44
  </div>
45
46
</template>
47
48
<script>
49
/* 使用说明
50
 *  dyStr: [], // 数据动态回显tag数组
51
 *  tagInfo: {
52
 *  lableTit: '关键词',
53
 *  placeholder: '请填写相关的关键词',
54
 *  limitCount: 10, 每个tag的Word限制
55
 *  tagsNum: 3 //最多可以传输数量
56
 * }
57
*/
58
// import httpUrl from '@/libs/http'
59
import { trimStr } from '@/utils'
60
export default {
61
  props: ['dyStr', 'tagInfo'],
62
  data() {
63
    return {
64
      dynamicTags: this.dyStr || [],
65
      inputVisible: false,
66
      inputValue: ''
67
      // restaurants: [],
68
      // loadAllKeys: []
69
    }
70
  },
71
  watch: {
72
    dyStr(value) {
73
      var that = this
74
      setTimeout(function() {
75
        that.dynamicTags = value
76
      }, 100)
77
    },
78
    dynamicTags(value) {
79
      const list = value
80
      this.$emit('turnTags', list)
81
    },
82
    inputValue(value) {
83
      var reg = new RegExp('[,|,]')
84
      this.inputValue = value.replace(reg, '')
85
    }
86
  },
87
  computed: {
88
    isShowAdd() {
89
      if (this.dynamicTags) {
90
        return this.dynamicTags.length >= this.tagInfo.tagsNum
91
      } else {
92
        return false
93
      }
94
    }
95
  },
96
  methods: {
97
    // add tag
98
    handleClose(index) {
99
      this.dynamicTags.splice(index, 1)
100
    },
101
    showInput() {
102
      this.inputVisible = true
103
      this.$nextTick(_ => {
104
        this.$refs.saveTagInput.$refs.input.focus()
105
      })
106
    },
107
    handleInputConfirm(value) {
108
      const inputValue = trimStr(this.inputValue)
109
      if (inputValue) {
110
        if (inputValue.length > this.tagInfo.limitCount) {
111
          this.$alert(`${this.tagInfo.lableTit}不得超过${this.tagInfo.limitCount}个字,添加失败!`, '提示', {
112
            confirmButtonText: '确定',
113
            type: 'warning',
114
            center: true
115
          })
116
          return false
117
        }
118
        for (var i = 0; i < this.dynamicTags.length; i++) {
119
          if (inputValue === this.dynamicTags[i]) {
120
            this.$alert('添加的内容不能重复', '提示', {
121
              confirmButtonText: '确定',
122
              type: 'warning',
123
              center: true
124
            })
125
            this.inputValue = ''
126
            return false
127
          }
128
        }
129
130
        this.dynamicTags.push(inputValue)
131
      }
132
      this.inputVisible = false
133
      this.inputValue = ''
134
    }
135
    // add tag
136
137
    // select key tag
138
    // querySearch(queryString, cb) {
139
    //   this.$axios.get(httpUrl.kxQurey.qaHotKey, {
140
    //     key: queryString
141
    //   }, (res) => {
142
    //     if (res.success) {
143
    //       var $info = res.data;
144
    //       var oSr = [];
145
    //       for (let i = 0; i < Math.min($info.length, 5); i++) {
146
    //         oSr[i] = $info[i];
147
    //       };
148
    //       this.loadAllKeys = oSr;
149
    //       // if (this.loadAllKeys.length === 0) {
150
    //       //   this.loadAllKeys = [{caption: '暂无数据'}]
151
    //       // };
152
    //       cb(this.loadAllKeys);
153
    //     };
154
    //   });
155
    // },
156
    // handleSelect(item) {
157
    //   this.inputValue = item.caption
158
    // }
159
  }
160
}
161
</script>
162
163
<style rel="stylesheet/scss" lang="scss" scoped>
164
  .tag-show {
165
    overflow: hidden;
166
    padding:5px 0 0;
167
    margin-bottom:-5px;
168
    .tag-item{
169
      float:left;
170
      .el-tag {
171
        margin-right:10px;
172
        margin-bottom:5px;
173
        min-height: 32px;
174
        padding: 6px 10px;
175
        line-height: 20px;
176
        height:auto;
177
      }
178
    }
179
  }
180
  .tag-block{
181
    .tag-item{
182
      float:none;
183
      display: block;
184
      .el-tag {
185
        margin-left: 0;
186
        white-space: normal;
187
      }
188
    }
189
  }
190
  .button-new-tag{
191
    width:100%;
192
    height: 38px;
193
    line-height: 36px;
194
    padding-top: 0;
195
    text-align: left;
196
    padding-bottom: 0;
197
    color: #c0c4cc;
198
    overflow:hidden;
199
  }
200
  .el-input.input-new-tag{
201
    width: 100%;
202
    vertical-align: bottom;
203
    margin-left: 0;
204
    overflow:hidden;
205
  }
206
</style>

+ 26 - 23
src/components/global-component/backtop/BackTop.vue

@ -51,27 +51,30 @@
51 51
    }
52 52
  };
53 53
</script>
54
<style lang="stylus" rel="stylesheet/stylus">
55
  .scroll
56
    position: fixed
57
    right: 10px
58
    bottom: 60px
59
    width: 45px
60
    height: 90px
61
    cursor: pointer
62
    display: none
63
    z-index: 10
64
    div
65
      width: 45px
66
      height: 45px
67
      line-height: 45px
68
      text-align: center
69
      font-size: 35px
70
      background-color: rgba(0,0,0,.2)
71
      color: #fff
72
      &:hover
73
        background-color: rgba(0,0,0,.5)
74
75
  &.showScroll
76
    display: block;
54
<style rel="stylesheet/scss" lang="scss" scoped>
55
  .scroll{
56
    position: fixed;
57
    right: 10px;
58
    bottom: 60px;
59
    width: 45px;
60
    height: 90px;
61
    cursor: pointer;
62
    display: none;
63
    z-index: 10;
64
    div{
65
      width: 45px;
66
      height: 45px;
67
      line-height: 45px;
68
      text-align: center;
69
      font-size: 35px;
70
      background-color: rgba(0,0,0,.2);
71
      color: #fff;
72
      &:hover{
73
        background-color: rgba(0,0,0,.5);
74
      }
75
    }
76
    &.showScroll{
77
      display: block;
78
    }
79
  }
77 80
</style>

+ 43 - 37
src/components/global-component/default/default.vue

@ -37,47 +37,53 @@ export default {
37 37
};
38 38
</script>
39 39
40
<style lang="stylus" type="text/stylus">
41
  .ev_content
42
    width: 100%
43
    height: 42%
44
    z-index: 11
45
    padding:40px
46
    box-sizing: border-box
47
    display: flex
48
    justify-content:center
40
<style rel="stylesheet/scss" lang="scss" scoped>
41
  .ev_content{
42
    width: 100%;
43
    height: 42%;
44
    z-index: 11;
45
    padding:40px;
46
    box-sizing: border-box;
47
    display: flex;
48
    justify-content:center;
49
  }
49 50
50
  .notice_d
51
    width: 100%
52
    height: auto
53
    text-align: center
51
  .notice_d{
52
    width: 100%;
53
    height: auto;
54
    text-align: center;
55
  }
54 56
55
  .notice_d .d_photo
56
    width: 140px
57
    height: 140px
58
    margin: 20px auto 30px
57
  .notice_d .d_photo{
58
    width: 140px;
59
    height: 140px;
60
    margin: 20px auto 30px;
61
  }
59 62
60
  .d_prompt p
61
    margin: 0
62
    font-size: 0
63
  .d_prompt p{
64
    margin: 0;
65
    font-size: 0;
66
  }
63 67
64
  .d_prompt .d_1
65
    width: 40%
66
    margin: 0 auto
67
    height: auto
68
    word-break: break-word
69
    font-size: 16px
70
    color: #666666
71
    text-align: center
68
  .d_prompt .d_1{
69
    width: 40%;
70
    margin: 0 auto;
71
    height: auto;
72
    word-break: break-word;
73
    font-size: 16px;
74
    color: #666666;
75
    text-align: center;
76
  }
72 77
73
  .d_prompt .d_2
74
    width: 60%
75
    height: auto
76
    margin: 0 auto
77
    word-break: break-word
78
    font-size: 13px
79
    color: #999999
80
    text-align: center
81
    margin-top: 10px
78
  .d_prompt .d_2{
79
    width: 60%;
80
    height: auto;
81
    margin: 0 auto;
82
    word-break: break-word;
83
    font-size: 13px;
84
    color: #999999;
85
    text-align: center;
86
    margin-top: 10px;
87
  }
82 88
83 89
</style>

+ 7 - 6
src/components/global-component/loading/Loading.vue

@ -4,7 +4,7 @@
4 4
  </div>
5 5
</template>
6 6
7
<script type="text/ecmascript-6">
7
<script>
8 8
  export default {
9 9
    props: {
10 10
      isLoading: {
@ -39,9 +39,10 @@
39 39
  };
40 40
</script>
41 41
42
<style lang="stylus" rel="stylesheet/stylus">
43
  .loadSty
44
    display:flex
45
    justify-content: center
46
    padding:20px 0
42
<style rel="stylesheet/scss" lang="scss" scoped>
43
  .loadSty{
44
    display:flex;
45
    justify-content: center;
46
    padding:20px 0;
47
  }
47 48
</style>

+ 8 - 0
src/element-variables.scss

@ -0,0 +1,8 @@
1
/* 改变主题色变量 */
2
$--color-primary: #2693ec !default;
3
/*#409EFF*/
4
5
/* 改变 icon 字体路径变量,必需 */
6
$--font-path: '~element-ui/lib/theme-chalk/fonts';
7
8
@import "~element-ui/packages/theme-chalk/src/index";

+ 5 - 45
src/libs/axios.js

@ -1,25 +1,15 @@
1
import Vue from 'vue';
2 1
import axios from 'axios';
3 2
import qs from 'qs';
4
import http from './http';
5 3
6
let axiosUtil = axios.create({
7
    baseURL: http.platUrl,
8
    // timeout: 30000,
9
    paramsSerializer: function(params) {
10
        return qs.stringify(params, {arrayFormat: 'repeat'});
11
    }
12
});
4
let axiosUtil = axios.create();
13 5
14 6
axiosUtil.interceptors.request.use(function (config) {
15 7
    // 配置config
16 8
    config.headers.Accept = 'application/json';
17 9
    if (config.method === 'post') {
18
        // if (config.url !== http.sample.list && config.url !== http.manage.kit.save) {
19
            config.data = qs.stringify(config.data);
20
            // 处理后后台无需添加RequestBody
21
            config.headers['Content-Type'] = 'application/x-www-form-urlencoded; charset=UTF-8';
22
        // };
10
      config.data = qs.stringify(config.data, {arrayFormat: 'repeat'});
11
      // 处理后后台无需添加RequestBody
12
      config.headers['Content-Type'] = 'application/x-www-form-urlencoded; charset=UTF-8';
23 13
    };
24 14
    return config;
25 15
});
@ -50,34 +40,4 @@ axiosUtil.interceptors.response.use(function (response) {
50 40
    return Promise.reject(error);
51 41
});
52 42
53
var ret = {
54
  get: function(url, data, sh, eh) {
55
    axiosUtil({
56
      method: 'get',
57
      url: url,
58
      params: data
59
    }).then(res => {
60
      sh(res);
61
    }).catch(err => {
62
      if (eh) eh(err);
63
    });
64
  },
65
  post: function(url, data, sh, eh) {
66
    axiosUtil({
67
      method: 'post',
68
      url: url,
69
      data: data
70
    }).then(res => {
71
      sh(res);
72
    }).catch(err => {
73
      if (eh) eh(err);
74
    });
75
  }
76
};
77
78
export default {
79
  install () {
80
    Vue.prototype.$axios = ret;
81
    Vue.axios = ret;
82
  }
83
};
43
export default axiosUtil;

+ 5 - 4
src/libs/http.js

@ -7,8 +7,6 @@ const platUrl = process.env.BASE_API; // api/邮箱配置的地址
7 7
http.platUrl = platUrl;
8 8
http.kexiuUrl = kexiuUrl;
9 9
10
http.webbase = '/api/plat';
11
12 10
http.hQuery = {
13 11
    sign: {
14 12
      login: '/ajax/platform/login',
@ -82,14 +80,17 @@ http.kxQurey = {
82 80
    resource: {
83 81
      query: '/ajax/resource/queryOne'
84 82
    },
83
    server: {
84
      query: '/ajax/ware/qo'
85
    },
85 86
    patent: {
86 87
      query: '/ajax/ppatent/qo',
87 88
      author: '/ajax/ppatent/authors'
88 89
    },
89 90
    professor: {
90 91
      query: '/ajax/professor/baseInfo/', // 专家基础信息
91
      query2: '/ajax/professor/info/',
92
      researchArea: '/ajax/researchArea/' // 研究方向
92
      query2: '/ajax/professor/info/'
93
93 94
    },
94 95
    org: {
95 96
      query: '/ajax/org/', // 企业基础信息

+ 90 - 0
src/libs/queryBase.js

@ -0,0 +1,90 @@
1
/**
2
 * Created by luyanan on 18/8/27.
3
 * professer, organization
4
 */
5
/* eslint-disable one-var */
6
import request from './request'
7
var objCache = {
8
  professor: {},
9
  organization: {}
10
}
11
var objHcache = {
12
  professor: {},
13
  organization: {}
14
}
15
var objCacheHandler = {
16
  professor: function(id) {
17
    var hc = objHcache.professor[id]
18
    request.getk('/ajax/professor/baseInfo/' + id, {
19
    }, function(data) {
20
      delete objHcache.professor[id]
21
      if (data.success) {
22
        objCache.professor[id] = data.data
23
        for (let i = 0; i < hc.length; ++i) {
24
          hc[i](true, data.data)
25
        }
26
      } else {
27
        for (let i = 0; i < hc.length; ++i) {
28
          hc[i](false)
29
        }
30
      }
31
    }, function() {
32
      for (let i = 0; i < hc.length; ++i) {
33
        hc[i](false)
34
      }
35
    })
36
  },
37
  organization: function(id) {
38
    var hc = objHcache.organization[id]
39
    request.getk('/ajax/org/' + id, {
40
    }, function(data) {
41
      delete objHcache.organization[id]
42
      if (data.success) {
43
        objCache.organization[id] = data.data
44
        for (let i = 0; i < hc.length; ++i) {
45
          hc[i](true, data.data)
46
        }
47
      } else {
48
        for (let i = 0; i < hc.length; ++i) {
49
          hc[i](false)
50
        }
51
      }
52
    }, function() {
53
      for (let i = 0; i < hc.length; ++i) {
54
        hc[i](false)
55
      }
56
    })
57
  }
58
}
59
var cacheModel = {
60
  getProfessor: function(id, handler) {
61
    var data = objCache.professor[id]
62
    if (data) {
63
      handler(true, data)
64
    } else {
65
      if (objHcache.professor[id]) {
66
        objHcache.professor[id].push(handler)
67
      } else {
68
        objHcache.professor[id] = []
69
        objHcache.professor[id].push(handler)
70
        objCacheHandler.professor(id)
71
      }
72
    }
73
  },
74
  getOrganization: function(id, handler) {
75
    var data = objCache.organization[id]
76
    if (data) {
77
      handler(true, data)
78
    } else {
79
      if (objHcache.organization[id]) {
80
        objHcache.organization[id].push(handler)
81
      } else {
82
        objHcache.organization[id] = []
83
        objHcache.organization[id].push(handler)
84
        objCacheHandler.organization(id)
85
      }
86
    }
87
  }
88
}
89
90
export default cacheModel

+ 50 - 0
src/libs/queryDict.js

@ -0,0 +1,50 @@
1
/**
2
 * Created by luyanan on 18/11/22.
3
 * 'QYGM'----'企业规模'
4
 * 'QYLX'----'企业类型'
5
 * 'XZQH'----'城市级联'
6
 */
7
/* eslint-disable one-var */
8
import request from '@/utils/request'
9
10
var cacheDict = {
11
    bool: [
12
      { code: '0', caption: '否', enabled: true },
13
      { code: '1', caption: '是', enabled: true }
14
    ]
15
  },
16
  handCache = {},
17
  uri = '/ajax/dict/items',
18
  setDict = function(code, items) {
19
    cacheDict[code] = items
20
    var hs = handCache[code]
21
    if (hs && hs.length) {
22
      hs.forEach(h => h(items))
23
      delete handCache[code]
24
    }
25
  },
26
  loadDict = function(code) {
27
    request.get(uri, {
28
      dict: code
29
    }, function(res) {
30
      setDict(code, res.data)
31
    })
32
  },
33
  applyDict = function(code, hander) {
34
    var dict = cacheDict[code]
35
    if (!dict) {
36
      var hs = handCache[code]
37
      if (!hs) {
38
        handCache[code] = hs = []
39
        loadDict(code)
40
      }
41
      hs.push(hander)
42
    } else {
43
      hander(dict)
44
    }
45
  },
46
  ret = {
47
    applyDict: applyDict
48
  }
49
50
export default ret

+ 62 - 0
src/libs/request.js

@ -0,0 +1,62 @@
1
import Vue from 'vue';
2
import axiosUtil from './axios';
3
4
let requestP = axiosUtil
5
let requestK = axiosUtil
6
7
requestP.defaults.baseURL = process.env.BASE_API
8
requestK.defaults.baseURL = process.env.KX_API
9
10
var ret = {
11
  getp: function(url, data, sh, eh) {
12
    requestP({
13
      method: 'get',
14
      url: url,
15
      params: data
16
    }).then(res => {
17
      sh(res);
18
    }).catch(err => {
19
      if (eh) eh(err);
20
    });
21
  },
22
  postp: function(url, data, sh, eh) {
23
    requestP({
24
      method: 'post',
25
      url: url,
26
      data: data
27
    }).then(res => {
28
      sh(res);
29
    }).catch(err => {
30
      if (eh) eh(err);
31
    });
32
  },
33
  getk: function(url, data, sh, eh) {
34
    requestK({
35
      method: 'get',
36
      url: url,
37
      params: data
38
    }).then(res => {
39
      sh(res);
40
    }).catch(err => {
41
      if (eh) eh(err);
42
    });
43
  },
44
  postk: function(url, data, sh, eh) {
45
    requestK({
46
      method: 'post',
47
      url: url,
48
      data: data
49
    }).then(res => {
50
      sh(res);
51
    }).catch(err => {
52
      if (eh) eh(err);
53
    });
54
  }
55
};
56
57
export default {
58
  install () {
59
    Vue.prototype.$axios = ret;
60
    Vue.axios = ret;
61
  }
62
};

+ 7 - 3
src/main.js

@ -1,11 +1,15 @@
1 1
import 'babel-polyfill';
2 2
3 3
import Vue from 'vue';
4
4 5
import ElementUI from 'element-ui';
5
import 'element-ui/lib/theme-chalk/index.css';
6
import './element-variables.scss';
7
6 8
import App from './App.vue';
7 9
import router from './router';
8
import axiosH from './libs/axios';
10
import request from './libs/request';
11
12
import '@/styles/index.scss'; // global css
9 13
10 14
import Loading from './components/global-component/loading';
11 15
import BackTop from './components/global-component/backtop';
@ -19,7 +23,7 @@ import '../static/ueditor/ueditor.parse.js';
19 23
20 24
import Cookies from 'js-cookie';
21 25
22
Vue.use(axiosH);
26
Vue.use(request);
23 27
Vue.use(ElementUI);
24 28
Vue.use(Loading);
25 29
Vue.use(BackTop);

+ 9 - 9
src/router/index.js

@ -32,12 +32,12 @@ const constantRouterMap = [
32 32
    }]
33 33
  },
34 34
  {
35
    path: '',
35
    path: '/findServe',
36 36
    component: Layout,
37 37
    children: [
38 38
      {
39 39
        name: 'findServe',
40
        path: '/findServe',
40
        path: '',
41 41
        redirect: { name: 'serve_list' },
42 42
        component: () => import('@/views/frontviews/ViewFindServe/index'),
43 43
        meta: { title: '找服务' },
@ -182,24 +182,24 @@ const constantRouterMap = [
182 182
        meta: { title: '入驻企业' },
183 183
        children: [
184 184
          {
185
            path: '/comp_list',
185
            path: 'comp_list',
186 186
            name: 'comp_list',
187 187
            component: () => import('@/views/frontviews/ViewRegCompany/list')
188 188
          },
189 189
          {
190
            path: 'comp_home',
191
            name: 'comp_home',
192
            redirect: { name: 'comp_show' },
190
            path: 'comp_show',
191
            name: 'comp_show',
192
            redirect: { name: 'comp_desc' },
193 193
            component: () => import('@/views/infoshow/compShow/index'),
194 194
            meta: { title: '企业名称' },
195 195
            children: [
196 196
              {
197
                path: '/comp_show',
198
                name: 'comp_show',
197
                path: 'comp_desc',
198
                name: 'comp_desc',
199 199
                component: () => import('@/views/infoshow/compShow/comp')
200 200
              },
201 201
              {
202
                path: '/comp_product',
202
                path: 'comp_product',
203 203
                name: 'comp_product',
204 204
                component: () => import('@/views/infoshow/compShow/product'),
205 205
                meta: { title: '产品名称' }

+ 36 - 0
src/styles/base.scss

@ -0,0 +1,36 @@
1
*{
2
  margin: 0;
3
  padding: 0;
4
}
5
6
html,body{
7
  width: 100%;
8
  height: 100%;
9
}
10
11
body *{
12
  font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑","黑体",Arial,sans-serif;
13
}
14
15
ul{
16
  margin: 0;
17
  padding: 0;
18
  list-style: none;
19
}
20
21
22
.clearfix:after{
23
  content: ".";
24
  display: block;
25
  height: 0;
26
  clear: both;
27
  visibility: hidden;
28
}
29
30
a{
31
  text-decoration: none;
32
}
33
34
img{
35
  display:block;
36
}

+ 226 - 0
src/styles/browse.scss

@ -0,0 +1,226 @@
1
  .browse-main{
2
    .block-wrapper{
3
      display: flex;
4
      justify-content: space-between;
5
      color:$commonFont;
6
      .content-wrapper{
7
        width:100%;
8
        box-sizing:border-box;
9
        text-align:justify;
10
        .tag-item{
11
          margin: 10px 0;
12
          .el-tag{
13
            margin:5px;
14
            &.tag-line{
15
              display:inline-block;
16
              width:auto;
17
            }
18
          }
19
        }
20
        .rel-detail{
21
          font-size:15px;
22
          line-height:26px;
23
          .rel-item{
24
            margin-bottom:15px;
25
            &:last-child{
26
              margin-bottom:0;
27
            }
28
            .rel-tit{
29
              font-size: 16px;
30
              line-height:30px;
31
            }
32
          }
33
        }
34
      }
35
      .split-other{
36
        margin-bottom:20px;
37
      }
38
      .headcon-box{
39
        min-height:160px;
40
        background: #fff;
41
        position: relative;
42
        display:flex;
43
        align-items: center;
44
        &.detail-box{
45
          min-height:auto;
46
        }
47
        .headimg-box{
48
          position:absolute;
49
          top:50%;
50
          margin-top:-71px;
51
          width: 140px;
52
          height: 140px;
53
          overflow:hidden;
54
          border:1px solid #E5E5E5;
55
          border-radius:50%;
56
          background-size: cover;
57
        }
58
        .zoom-box{
59
          width: 362px;
60
        }
61
        .show-info{
62
          width:100%;
63
          &.reInfo-box{
64
            padding-left:170px;
65
          }
66
          .info-tit{
67
            font-size: 18px;
68
            color:$commonFont;
69
            margin-bottom:10px;
70
            &.info-tit-big{
71
              font-size: 22px;
72
              line-height: 32px;
73
            }
74
          }
75
          .info-tag{
76
            font-size: 16px;
77
            color:$commonFont;
78
            margin-bottom:10px;
79
          }
80
          .info-operate{
81
            display:flex;
82
            color:$secondaryFont;
83
            .addr{
84
              margin-right: 10px;
85
            }
86
          }
87
        }
88
        .goSpan{
89
          min-width: 180px;
90
        }
91
        &.org-head{
92
          .headimg-box{
93
            @include border-radius(4px);
94
            @include center-items(200px, 140px);
95
          }
96
          .reInfo-box{
97
            padding-left:230px;
98
          }
99
        }
100
        &.hdetail-box{
101
          align-items:flex-start;
102
          .reInfo-box{
103
            padding-left:15px;
104
            position: relative;
105
            min-height: 270px;
106
            padding-bottom: 24px;
107
            .zoom-operate{
108
              position:absolute;
109
              bottom:0;
110
            }
111
          }
112
        }
113
      }
114
      .wrapper-left{
115
        padding: 0;
116
        display: flex;
117
        flex-direction: column;
118
        .el-menu-demo{
119
         margin-bottom:20px;
120
        }
121
      }
122
      .wrapper-right{
123
        width: 280px;
124
        .content-wrapper{
125
          width: 100%;
126
          box-sizing: border-box;
127
          margin-bottom: 20px;
128
          .right-split{
129
            margin-top: 20px;
130
            padding-top: 10px;
131
            position: relative;
132
            &::before{
133
              position: absolute;
134
              right: 0;
135
              left: 0;
136
              top: 0;
137
              content:'';
138
              border-top:1px solid #dadada;
139
            }
140
            &:first-child{
141
              margin-top: 0;
142
              padding-top: 0;
143
              &::before{
144
                content: none;
145
              }
146
            }
147
          }
148
          .info-main{
149
            font-size: 24px;
150
            line-height: 34px;
151
            color:$mainFont;
152
          }
153
          .info-tip{
154
            margin-top:12px;
155
            font-size: 14px;
156
            line-height: 22px;
157
            color:$secondaryFont;
158
          }
159
        }
160
      }
161
      .left-main{
162
        width:800px;
163
        .el-tabs__nav-wrap.is-top{
164
          background-color: #ffffff;
165
          border:none;
166
          padding:10px 20px;
167
          &::after{
168
            content:none;
169
          }
170
        }
171
        .el-tabs__item{
172
          font-size:15px;
173
        }
174
        .el-tabs__header{
175
          margin-bottom:20px;
176
        }
177
        .inner-wrapper{
178
          margin-bottom:20px;
179
          &:last-child{
180
            margin-bottom:0;
181
          }
182
          .content-title{
183
            margin-bottom:2px;
184
          }
185
          .content{
186
            display: flex;
187
            font-size: 15px;
188
            line-height: 30px;
189
            font-weight:normal;
190
            word-break: break-all;
191
            .ulM{
192
              width:100%;
193
              .liM{
194
                padding-left:15px;
195
                margin-bottom:6px;
196
                &:last-child{
197
                  margin-bottom:0;
198
                }
199
                .liM-tit{
200
                  position:relative;
201
                  color:$mainFont;
202
                  small{
203
                    margin-left:10px;
204
                    color:$secondaryFont;
205
                  }
206
                  &::before{
207
                    content:'';
208
                    position: absolute;
209
                    left:-12px;
210
                    top:13px;
211
                    width:6px;
212
                    height:6px;
213
                    background:$mainColor;
214
                    border-radius: 50%;
215
                  }
216
                }
217
                .liM-con{
218
                  color:$commonFont;
219
                }
220
              }
221
            }
222
          }
223
        }
224
      }
225
    }
226
  }

+ 109 - 0
src/styles/common.scss

@ -0,0 +1,109 @@
1
body{
2
  background:#f4f6f8;
3
}
4
5
a{
6
  color: $mainFont;
7
}
8
9
.contain-wrapper{
10
  box-sizing: content-box;
11
  width: 1100px;
12
  padding: 0 10px;
13
  position:relative;
14
  margin:auto;
15
  clear:both;
16
  font-size:15px;
17
}
18
.minw-block{
19
  min-width: 1110px;
20
}
21
22
.block-wrapper{
23
  margin-bottom:20px;
24
}
25
26
.content-wrapper{
27
  box-sizing: border-box;
28
  padding:20px;
29
  background:#fff;
30
}
31
32
/*左右分栏*/
33
.main-content{
34
  display: flex;
35
  justify-content: space-between;
36
  .wrapper-left{
37
    width:800px;
38
  }
39
  .wrapper-right{
40
    width: 280px;
41
  }
42
}
43
.ad-wrapper{
44
  position: relative;
45
  display: block;
46
  margin-bottom: 10px;
47
  &:after{
48
    content:"广告";
49
    font-size:10px;
50
    color:#fff;
51
    background:rgba(0,0,0,0.3);
52
    position:absolute;
53
    padding:0 4px;
54
    right:0;
55
    bottom:0px;
56
  }
57
}
58
/*左右分栏*/
59
60
.content-title{
61
  display:flex;
62
  justify-content: space-between;
63
  font-size:16px;
64
  line-height:30px;
65
  font-weight: bold;
66
  color:$mainFont;
67
  margin-bottom:12px;
68
  position:relative;
69
  /*&.content-title-center
70
    display:block
71
    text-align: center
72
    font-size: 22px
73
    line-height: 40px*/
74
  .content-more{
75
    font-size:13px;
76
    cursor:pointer;
77
    color:$secondaryFont;
78
    position:absolute;
79
    right: 0;
80
    top:0;
81
  }
82
}
83
.el-button--primary{
84
  background-color: $mainColor;
85
  border-color: $mainColor;
86
}
87
88
/*认证标识相关*/
89
.authicon{
90
  display: inline-block;
91
  margin-left:4px;
92
  width:16px;
93
  height:16px;
94
  background-size: cover;
95
  &.icon-pro{
96
    @include bg-image('/static/comimg/porfile_icon_zhuanjia_nor.png');
97
  }
98
  &.icon-com{
99
    @include bg-image('/static/comimg/porfile_icon_qiye_hig.png');
100
  }
101
  &.icon-staff{
102
    @include bg-image('/static/comimg/porfile_icon_yuangong_hig.png');
103
  }
104
  &.icon-real{
105
    width:24px;
106
    @include bg-image('/static/comimg/porfile_icon_shimin_nor.png');
107
  }
108
}
109
  

+ 4 - 0
src/styles/index.scss

@ -0,0 +1,4 @@
1
@import './mixin.scss';
2
@import './base.scss';
3
@import './common.scss';
4
@import './listitem.scss';

+ 122 - 0
src/styles/listitem.scss

@ -0,0 +1,122 @@
1
/*home--cmp、expert*/
2
.block-container{
3
  display: flex;
4
  flex-wrap: wrap;
5
  margin-right:-10px;
6
  margin-bottom:-10px;
7
  .block-item{
8
    display:flex;
9
    width:346px;
10
    height:140px;
11
    box-sizing:border-box;
12
    padding:10px;
13
    margin-right:10px;
14
    margin-bottom:10px;
15
    border:1px solid $borderColor;
16
    .show-head{
17
      width:80px;
18
      height:80px;
19
      border:1px solid $borderColor;
20
      @include border-radius(50%);
21
      background-size:cover;
22
    }
23
    .show-info{
24
      flex:1 0 80px;
25
      padding-left:15px;
26
      .info-tit{
27
        font-size:18px;
28
        line-height:28px;
29
        color:$mainFont;
30
      }
31
      .info-tag{
32
        color:$secondaryFont;
33
        @include text-ellipsis();
34
        line-height:26px;
35
      }
36
      .info-desc{
37
        color:$secondaryFont;
38
        @include text-ellipsis-n(3,20px);
39
      }
40
    }
41
    &.org-item{
42
      height:200px;
43
      justify-content:center;
44
      text-align:center;
45
      .item-block-org{
46
        width:306px;
47
        overflow: hidden;
48
        .item-pic-org{
49
          @include center-items();
50
          background-size:cover;
51
          margin:auto;
52
        }
53
        .item-text-org{
54
          margin-top:6px;
55
          line-height:30px;
56
          .item-tit-org{
57
            display:flex;
58
            justify-content: center;
59
            align-items:center;
60
            span{
61
              display: inline-block;
62
              max-width: 100%;
63
              @include text-ellipsis();
64
            }
65
          }
66
          .item-tag-org{
67
            color:$secondaryFont;
68
            @include text-ellipsis();
69
            line-height:20px;
70
          }
71
        }
72
      }
73
    }
74
  }
75
}
76
/*home--cmp、expert*/
77
78
/*list--图文*/
79
.list-item{
80
  display:flex;
81
  align-items:center;
82
  background:#fff;
83
  padding:20px;
84
  @include border-1px();
85
  &:last-child{
86
    @include border-none();
87
  }
88
  .list-head{
89
    @include center-items(162px,108px);
90
  }
91
  .list-info{
92
    flex: 1 1 170px;
93
    padding-left:15px;
94
    .list-tit{
95
      color:$mainFont;
96
      font-size:18px;
97
      @include text-ellipsis-n(2,26px);
98
      &.list-topic{
99
        @include text-ellipsis();
100
        line-height:26px;
101
      }
102
    }
103
    .list-tag{
104
      margin-top:10px;
105
      color:$secondaryFont;
106
      font-size:14px;
107
      li{
108
        display:inline-block;
109
        margin-right:15px;
110
      }
111
    }
112
    .list-owner{
113
      color:$commonFont;
114
      line-height:30px;
115
    }
116
    .list-desc{
117
      @include text-ellipsis-n(2,20px);
118
      color:$commonFont;
119
    }
120
  }
121
}
122
/*list*/

+ 105 - 0
src/styles/mixin.scss

@ -0,0 +1,105 @@
1
@import '../element-variables';
2
3
$mainColor:$--color-primary;
4
5
/*mian-font*/
6
/*主要文字*/ $mainFont: #303133;
7
/*常规文字*/ $commonFont: #606266;
8
/*次要文字*/ $secondaryFont: #909399;
9
/*占位文字*/ $occupancyFont: #C0C4CC;
10
11
/*boder-color*/ $borderColor: #e4e7ed;
12
13
14
/*bg-about s*/
15
@mixin bg-blue-color() {
16
  background: $mainColor;
17
  color: #fff;
18
}
19
@mixin bg-blue-active-color($bg: #0c84f1){
20
  background: $bg;
21
}
22
23
@mixin bg-grey-color($bg: #373d41, $color: #c4c3c3){
24
  background: $bg;
25
  color: $color;
26
  a{
27
  	color: $color;
28
  }
29
  a:hover{
30
  	color: #fff;
31
  }
32
}
33
34
@mixin bg-image($url){
35
  background-image:url($url);
36
  background-position: center center;
37
  background-repeat: no-repeat;
38
  background-size:cover;
39
}
40
/*bg-about e*/
41
42
/*border-about s*/
43
@mixin border-radius($radius: 6px){
44
  -webkit-border-radius: $radius;
45
  -moz-border-radius: $radius;
46
  border-radius: $radius;
47
}
48
49
@mixin border-1px(){
50
  position:relative;
51
  &:after {
52
    display:block;
53
    position:absolute;
54
    left:0;;;
55
    bottom:0;
56
    width:100%;
57
    border-top:1px solid $borderColor;
58
    content:' ';
59
  }
60
}
61
@mixin border-none(){
62
  &:after{
63
    display:none;
64
  }
65
}
66
/*border-about e*/
67
68
/*text-about s*/
69
@mixin text-ellipsis(){
70
  line-height: 30px;
71
  white-space: nowrap;
72
  text-overflow: ellipsis;
73
  overflow: hidden;
74
}
75
76
@mixin text-ellipsis-n($n: 1,$lineH: 30px){
77
  display: -webkit-box;
78
  line-height: $lineH;
79
  max-height: $lineH*$n;
80
  white-space: normal !important;
81
  text-overflow: ellipsis;
82
  word-wrap: break-word;
83
  -webkit-line-clamp: $n;
84
  -webkit-box-orient: vertical;
85
  overflow: hidden;
86
}
87
/*text-about e*/
88
89
/*justify align-items center*/
90
@mixin center-items($w: 180px,$h: 120px){
91
  display: flex;
92
  align-items: center;
93
  justify-content: center;
94
  border: 1px solid $borderColor;
95
  box-sizing:border-box;
96
  width: $w+2px;
97
  height: $h+2px;
98
  @include border-radius(4px);
99
  background-size:cover;
100
  background-position: center center;
101
  img{
102
    max-width: $w;
103
    max-height: 100%;
104
  }
105
}

+ 307 - 249
src/views/frontviews/Dashboard.vue

@ -241,8 +241,8 @@
241 241
242 242
<script>
243 243
  import Cookies from 'js-cookie';
244
  import httpUrl from '@/libs/http';
245 244
  import util from '@/libs/util';
245
  import queryBase from '@/libs/queryBase';
246 246
247 247
  import Swiper from 'swiper';
248 248
  import 'swiper/dist/css/swiper.min.css';
@ -277,12 +277,12 @@
277 277
    },
278 278
    created() {
279 279
       this.platId = Cookies.get('platId');
280
       this.getAboutUs(this.platId);
281
       this.queryPaltNews(this.platId);
282
       this.queryOrgTrends(this.platId);
283
       this.queryResidentOrgs(this.platId);
284
       this.queryPlatResources(this.platId);
285
       this.queryPlatWares(this.platId);
280
       this.getAboutUs();
281
       this.queryPaltNews();
282
       this.queryOrgTrends();
283
       this.queryResidentOrgs();
284
       this.queryPlatResources();
285
       this.queryPlatWares();
286 286
    },
287 287
    mounted() {
288 288
      this.latestCmpSwiper = new Swiper(this.$refs.latestCmp, {
@ -342,9 +342,9 @@
342 342
      // pubDemand() {
343 343
      //   this.$refs.issueDemand.submitForm('ruleForm');
344 344
      // },
345
      queryPaltNews(id) {
346
        this.$axios.get(httpUrl.hQuery.platNews.nopq, {
347
          ownerId: id,
345
      queryPaltNews() {
346
        this.$axios.getp('/ajax/article/qa', {
347
          ownerId: this.platId,
348 348
          articleType: '3',
349 349
          status: 1,
350 350
          rows: 4
@ -355,9 +355,9 @@
355 355
          };
356 356
        });
357 357
      },
358
      queryOrgTrends(id) {
359
        this.$axios.get(httpUrl.hQuery.orgTrends.nopq, {
360
          pid: id,
358
      queryOrgTrends() {
359
        this.$axios.getp('/ajax/article/publishInPlatform', {
360
          pid: this.platId,
361 361
          rows: 4
362 362
        }, (res) => {
363 363
          if (res.success) {
@ -372,9 +372,9 @@
372 372
          };
373 373
        });
374 374
      },
375
      queryResidentOrgs(id) {
376
        this.$axios.get(httpUrl.hQuery.residentOrgs.nopq, {
377
          pid: id,
375
      queryResidentOrgs() {
376
        this.$axios.getp('/ajax/platform/info/residentOrgs', {
377
          pid: this.platId,
378 378
          rows: this.rows
379 379
        }, (res) => {
380 380
          if (res.success) {
@ -383,9 +383,9 @@
383 383
          };
384 384
        });
385 385
      },
386
      queryPlatResources(id) {
387
        this.$axios.get(httpUrl.hQuery.queryResource, {
388
          pid: id,
386
      queryPlatResources() {
387
        this.$axios.getp('/ajax/platform/info/resources', {
388
          pid: this.platId,
389 389
          rows: this.rows
390 390
        }, (res) => {
391 391
          var _this = this;
@ -400,9 +400,9 @@
400 400
          };
401 401
        });
402 402
      },
403
      queryPlatWares(id) {
404
        this.$axios.get(httpUrl.hQuery.queryWare, {
405
          pid: id,
403
      queryPlatWares() {
404
        this.$axios.getp('/ajax/platform/info/wares', {
405
          pid: this.platId,
406 406
          rows: this.rows
407 407
        }, (res) => {
408 408
          var _this = this;
@ -417,6 +417,17 @@
417 417
          };
418 418
        });
419 419
      },
420
      getAboutUs() {
421
        this.$axios.getp('/ajax/platform/info', {
422
          id: this.platId
423
        }, (res) => {
424
          if (res.data) {
425
            if (res.data.descp) {
426
              this.aboutUs = res.data.descp;
427
            }
428
          }
429
        });
430
      },
420 431
      resourcesUrl(item) {
421 432
        return item.images ? util.ImageUrl('resource/' + item.images.split(',')[0]) : util.defaultSet.img.resource;
422 433
      },
@ -441,17 +452,6 @@
441 452
      linkArticle(item) {
442 453
        return util.pageUrl('a', item);
443 454
      },
444
      getAboutUs(id) {
445
        this.$axios.get(httpUrl.hQuery.baseInfo.query, {
446
          id: id
447
        }, (res) => {
448
          if (res.data) {
449
            if (res.data.descp) {
450
              this.aboutUs = res.data.descp;
451
            }
452
          }
453
        });
454
      },
455 455
      formTime(item) {
456 456
        return util.commenTime(item.publishTime, true);
457 457
      },
@ -486,20 +486,16 @@
486 486
          id = item.oid;
487 487
        };
488 488
        if (type === '1') {
489
          _this.$axios.get(httpUrl.kxQurey.professor.query + id, {
490
            }, (res) => {
491
            if (res.success) {
492
              let $info = res.data;
493
              item.ownerName = $info.name;
489
          queryBase.getProfessor(id, function(sc, value) {
490
            if (sc) {
491
              item.ownerName = value.name;
494 492
              _this.$forceUpdate();
495 493
            }
496 494
          });
497 495
        } else if (type === '2') {
498
          _this.$axios.get(httpUrl.kxQurey.org.query + id, {
499
            }, (res) => {
500
            if (res.success) {
501
              let $info = res.data;
502
              item.ownerName = $info.forShort ? $info.forShort : $info.name;
496
          queryBase.getOrganization(id, function(sc, value) {
497
            if (sc) {
498
              item.ownerName = value.forShort ? value.forShort : value.name;
503 499
              _this.$forceUpdate();
504 500
            }
505 501
          });
@ -515,218 +511,280 @@
515 511
  };
516 512
</script>
517 513
518
<style lang="stylus" rel="stylesheet/stylus">
519
  .home-main
520
    .block-wrapper
521
      display: flex
522
      justify-content: space-between
523
      color:$commonFont
524
      .wrapper-left
525
        padding: 0
526
        display: flex
527
        flex-direction: column
528
        justify-content: space-between
529
      .video-wrapper
530
        position: relative
531
        display: block
532
        .video-mask
533
          display: flex
534
          justify-content: center
535
          align-items: center
536
          width:100%
537
          height:100%
538
          position:absolute
539
          top:0
540
          background:rgba(0,0,0,.3)
541
          cursor:pointer
542
      .wrapper-right
543
        width: 280px
544
        height: 280px
545
        .info-main
546
          font-size: 24px
547
          line-height: 34px
548
          color:$mainFont
549
        .info-tip
550
          margin-top:12px
551
          font-size: 14px
552
          line-height: 22px
553
          color:$secondaryFont
554
      .plat-news
555
        width:800px
556
        height:210px
557
        .content-title
558
          .el-tabs__item
559
            font-size:16px
560
            font-weight:bold
561
          .el-tabs__item.is-active
562
            background:$mainColor
563
            color:#ffffff
564
          .el-tabs--top .el-tabs__item.is-top:nth-child(2)
514
<style rel="stylesheet/scss" lang="scss" scoped>
515
  .home-main{
516
    .block-wrapper{
517
      display: flex;
518
      justify-content: space-between;
519
      color:$commonFont;
520
      .wrapper-left{
521
        padding: 0;
522
        display: flex;
523
        flex-direction: column;
524
        justify-content: space-between;
525
      }
526
      .video-wrapper{
527
        position: relative;
528
        display: block;
529
        .video-mask{
530
          display: flex;
531
          justify-content: center;
532
          align-items: center;
533
          width:100%;
534
          height:100%;
535
          position:absolute;
536
          top:0;
537
          background:rgba(0,0,0,.3);
538
          cursor:pointer;
539
        }
540
      }
541
      .wrapper-right{
542
        width: 280px;
543
        height: 280px;
544
        .info-main{
545
          font-size: 24px;
546
          line-height: 34px;
547
          color:$mainFont;
548
        }
549
        .info-tip{
550
          margin-top:12px;
551
          font-size: 14px;
552
          line-height: 22px;
553
          color:$secondaryFont;
554
        }
555
      }
556
      .plat-news{
557
        width:800px;
558
        height:210px;
559
        .content-title{
560
          .el-tabs__item{
561
            font-size:16px;
562
            font-weight:bold;
563
          }
564
          .el-tabs__item.is-active{
565
            background:$mainColor;
566
            color:#ffffff;
567
          }
568
          .el-tabs--top .el-tabs__item.is-top:nth-child(2){
565 569
            padding-left:20px
566
          .el-tabs--top .el-tabs__item.is-top:last-child
567
            padding-right:20px
568
        .content
569
          display: flex
570
          font-size: 15px
571
          line-height: 30px
572
          font-weight:normal
573
          .pictures
574
            center-items()
575
          .maincon.maincon2
576
            flex:1 0 180px
577
            padding-left:15px
578
            height:120px
579
            overflow:hidden
580
            li>a
581
              display: flex
582
              justify-content: space-between
583
              line-height:30px
584
              .topic
585
                display:inline-block
586
                width:400px
587
                text-ellipsis()
588
              .time
589
                width: 100px
590
                text-align: right
591
                color:$secondaryFont
592
            &.maincon2
593
              width:100%
594
              padding:0
595
              .owner
596
                display:inline-block
597
                width:180px
598
                text-ellipsis()
599
      .about-us
600
        width:280px
601
        height:470px
602
        .content
603
          text-ellipsis-n(14,28px)
604
      .full-wrapper
605
        width:100%
606
        .swiper-container:hover
570
          }
571
          .el-tabs--top .el-tabs__item.is-top:last-child{
572
            padding-right:20px;
573
          }
574
        }
575
        .content{
576
          display: flex;
577
          font-size: 15px;
578
          line-height: 30px;
579
          font-weight:normal;
580
          .pictures{
581
            @include center-items();
582
          }
583
          .maincon.maincon2{
584
            flex:1 0 180px;
585
            padding-left:15px;
586
            height:120px;
587
            overflow:hidden;
588
            li>a{
589
              display: flex;
590
              justify-content: space-between;
591
              line-height:30px;
592
              .topic{
593
                display:inline-block;
594
                width:400px;
595
                @include text-ellipsis();
596
              }
597
              .time{
598
                width: 100px;
599
                text-align: right;
600
                color:$secondaryFont;
601
              }
602
            }
603
            &.maincon2{
604
              width:100%;
605
              padding:0;
606
              .owner{
607
                display:inline-block;
608
                width:180px;
609
                @include text-ellipsis();
610
              }
611
            }
612
          }
613
        }
614
      }
615
      .about-us{
616
        width:280px;
617
        height:470px;
618
        .content{
619
          @include text-ellipsis-n(14,28px);
620
        }
621
      }
622
      .full-wrapper{
623
        width:100%;
624
        .swiper-container:hover{
607 625
          .swiper-button-next,
608
          .swiper-button-prev
609
            display:block
626
          .swiper-button-prev{
627
            display:block;
628
          }
629
        }
610 630
        .swiper-button-next,
611
        .swiper-button-prev
612
          top: 0
613
          width: 50px
614
          height: 100%
615
          margin-top:0
616
          outline:none
617
          color:$mainColor
618
          font-size:40px
619
          line-height:240px
620
          text-align:center
621
          display:none
631
        .swiper-button-prev{
632
          top: 0;
633
          width: 50px;
634
          height: 100%;
635
          margin-top:0;
636
          outline:none;
637
          color:$mainColor;
638
          font-size:40px;
639
          line-height:240px;
640
          text-align:center;
641
          display:none;
642
        }
622 643
        .swiper-button-prev,
623
        .swiper-container-rtl .swiper-button-next
624
          background:linear-gradient(to right,rgba(178, 178, 178,.4) 0,rgba(0,0,0,0.0001) 100%)
625
          left:0
644
        .swiper-container-rtl .swiper-button-next{
645
          background:linear-gradient(to right,rgba(178, 178, 178,.4) 0,rgba(0,0,0,0.0001) 100%);
646
          left:0;
647
        }
626 648
        .swiper-button-next,
627
        .swiper-container-rtl .swiper-button-prev
628
          background:linear-gradient(to left,rgba(178, 178, 178,.4) 0,rgba(0,0,0,0.0001) 100%)
629
          right:0
630
        .content-title
631
          .content-search
632
            display:flex
633
            align-items:center
634
            .search-wrapper
635
              display:flex
636
              margin-left:15px
637
              .el-input__inner
638
                line-height:32px
639
                height:32px
640
                border-top-right-radius:0
641
                border-bottom-right-radius:0
642
              .el-button
643
                padding:8px 10px
644
                border-top-left-radius:0
645
                border-bottom-left-radius:0
649
        .swiper-container-rtl .swiper-button-prev{
650
          background:linear-gradient(to left,rgba(178, 178, 178,.4) 0,rgba(0,0,0,0.0001) 100%);
651
          right:0;
652
        }
653
        .content-title{
654
          .content-search{
655
            display:flex;
656
            align-items:center;
657
            .search-wrapper{
658
              display:flex;
659
              margin-left:15px;
660
              .el-input__inner{
661
                line-height:32px;
662
                height:32px;
663
                border-top-right-radius:0;
664
                border-bottom-right-radius:0;
665
              }
666
              .el-button{
667
                padding:8px 10px;
668
                border-top-left-radius:0;
669
                border-bottom-left-radius:0;
670
              }
671
            }
672
          }
646 673
          .content-more
647
          .item-more
648
            display:inline-block
649
            padding-left:20px
650
            color:$secondaryFont
651
        .item-block
652
          width:182px
653
          overflow:hidden
654
          .item-pic
655
            center-items()
656
          .item-text
657
            margin-top:6px
658
            line-height:30px
659
            &.item-left
660
              text-align:center
661
              text-ellipsis()
662
            .title
663
              color:$mainFont
664
              text-ellipsis()
665
            .desc
666
              margin-top:3px
667
              color:$commonFont
668
              text-ellipsis-n(2,20px)
669
              height:40px
670
            .owner
671
              margin-top:10px
672
              color:$secondaryFont
673
              text-ellipsis()
674
          .item-more{
675
            display:inline-block;
676
            padding-left:20px;
677
            color:$secondaryFont;
678
          }
679
        }
680
        .item-block{
681
          width:182px;
682
          overflow:hidden;
683
          .item-pic{
684
            @include center-items();
685
          }
686
          .item-text{
687
            margin-top:6px;
688
            line-height:30px;
689
            &.item-left{
690
              text-align:center;
691
              @include text-ellipsis();
692
            }
693
            .title{
694
              color:$mainFont;
695
              @include text-ellipsis();
696
            }
697
            .desc{
698
              margin-top:3px;
699
              color:$commonFont;
700
              @include text-ellipsis-n(2,20px);
701
              height:40px;
702
            }
703
            .owner{
704
              margin-top:10px;
705
              color:$secondaryFont;
706
              @include text-ellipsis();
707
            }
708
          }
709
        }
710
      }
711
    }
674 712
675
    .tip-show
676
      background:$mainColor
677
      text-align:center
678
      justify-content: space-between
679
      margin:-30px -20px 10px
680
      padding:20px
681
      color:#fff
682
      .tip-h1
683
        font-size:16px
684
        line-height:40px
685
      .tip-h2
686
        font-size:12px
687
        line-height:30px
688
    .tab-show
689
      margin:20px -20px 0
690
      .el-tabs__nav
691
        width:99.6%
692
        text-align: center
693
        .el-tabs__item
694
          font-size:16px
695
          width:50%
696
    .el-dialog
697
      overflow:hidden
698
      .el-dialog__footer
699
        text-align:center
700
        margin-top:-30px
701
        margin-bottom:20px
702
        .el-button
703
          width:200px
704
          margin-bottom:10px
705
        a
706
          color:$mainColor
707
    .videoShow
708
      .video-box
709
        width:100%
710
        height:530px
711
      .el-dialog
712
        background:rgba(0,0,0,.1)
713
        position:relative
714
        .el-dialog__header
715
          width:100%
716
          position:absolute
717
          box-sizing:border-box
718
          z-index:8
719
          .el-dialog__title
720
            color:#fff
721
          .el-dialog__headerbtn
722
            z-index:10
723
            .el-dialog__headerbtn .el-dialog__close
724
              color:#fff
725
        .el-dialog__body
726
          padding:0
713
    .tip-show{
714
      background:$mainColor;
715
      text-align:center;
716
      justify-content: space-between;
717
      margin:-30px -20px 10px;
718
      padding:20px;
719
      color:#fff;
720
      .tip-h1{
721
        font-size:16px;
722
        line-height:40px;
723
      }
724
      .tip-h2{
725
        font-size:12px;
726
        line-height:30px;
727
      }
728
    }
729
    .tab-show{
730
      margin:20px -20px 0;
731
      .el-tabs__nav{
732
        width:99.6%;
733
        text-align: center;
734
        .el-tabs__item{
735
          font-size:16px;
736
          width:50%;
737
        }
738
      }
739
    }
740
    .el-dialog{
741
      overflow:hidden;
742
      .el-dialog__footer{
743
        text-align:center;
744
        margin-top:-30px;
745
        margin-bottom:20px;
746
        .el-button{
747
          width:200px;
748
          margin-bottom:10px;
749
        }
750
        a{
751
          color:$mainColor;
752
        }
753
      }
754
    }
755
    .videoShow{
756
      .video-box{
757
        width:100%;
758
        height:530px;
759
      }
760
      .el-dialog{
761
        background:rgba(0,0,0,.1);
762
        position:relative;
763
        .el-dialog__header{
764
          width:100%;
765
          position:absolute;
766
          box-sizing:border-box;
767
          z-index:8;
768
          .el-dialog__title{
769
            color:#fff;
770
          }
771
          .el-dialog__headerbtn{
772
            z-index:10;
773
            .el-dialog__headerbtn .el-dialog__close{
774
              color:#fff;
775
            }
776
          }
777
        }
778
        .el-dialog__body{
779
          padding:0;
780
        }
781
      }
782
    }
727 783
728
    .login-box
729
      position:relative
730
      width:400px
731
      margin:auto
784
    .login-box{
785
      position:relative;
786
      width:400px;
787
      margin:auto;
788
    }
789
  }
732 790
</style>

+ 28 - 24
src/views/frontviews/ViewAboutUs.vue

@ -8,7 +8,6 @@
8 8
9 9
<script type="text/javascript">
10 10
  import Cookies from 'js-cookie';
11
  import httpUrl from '@/libs/http';
12 11
  import util from '@/libs/util';
13 12
14 13
  export default {
@ -20,12 +19,12 @@
20 19
    },
21 20
    created() {
22 21
       this.platId = Cookies.get('platId');
23
       this.getAboutUs(this.platId);
22
       this.getAboutUs();
24 23
    },
25 24
    methods: {
26
      getAboutUs(id) {
27
        this.$axios.get(httpUrl.hQuery.baseInfo.query, {
28
          id: id
25
      getAboutUs() {
26
        this.$axios.getp('/ajax/platform/info', {
27
          id: this.platId
29 28
        }, (res) => {
30 29
          this.aboutUs = util.getFormatCode(res.data.descp);
31 30
        });
@ -34,26 +33,31 @@
34 33
  };
35 34
</script>
36 35
37
<style lang="stylus" rel="stylesheet/stylus" scoped>
38
  .aboutUs
39
    margin-bottom:20px
40
    padding:20px
41
    background: #fff
42
    color:$mainFont
43
    .faq-title
44
      font-size:16px
36
<style rel="stylesheet/scss" lang="scss" scoped>
37
  .aboutUs{
38
    margin-bottom:20px;
39
    padding:20px;
40
    background: #fff;
41
    color:$mainFont;
42
    .faq-title{
43
      font-size:16px;
44
    }
45 45
46
    .faq-content
47
      line-height: 26px
48
      margin:20px 10px 20px
49
      text-align: justify
50
      overflow: hidden
51
      .faq-sub-title
52
        margin-top:10px
53
        font-weight:600
46
    .faq-content{
47
      line-height: 26px;
48
      margin:20px 10px 20px;
49
      text-align: justify;
50
      overflow: hidden;
51
      .faq-sub-title{
52
        margin-top:10px;
53
        font-weight:600;
54
      }
54 55
55
      p
56
        margin-bottom: 10px
57
        text-indent: 2em
56
      p{
57
        margin-bottom: 10px;
58
        text-indent: 2em;
59
      }
60
    }
61
  }
58 62
59 63
</style>

+ 39 - 33
src/views/frontviews/ViewFindResource/list.vue

@ -36,7 +36,6 @@
36 36
37 37
<script>
38 38
  import Cookies from 'js-cookie';
39
  import httpUrl from '@/libs/http';
40 39
  import util from '@/libs/util';
41 40
42 41
  import baseResource from '@/views/sub-component/BaseResource';
@ -71,7 +70,7 @@
71 70
    },
72 71
    methods: {
73 72
      searchResource() {
74
        this.$axios.get(httpUrl.hQuery.queryResource, {
73
        this.$axios.getp('/ajax/platform/info/resources', {
75 74
          key: this.keyVal,
76 75
          pid: this.platId,
77 76
          shareId: this.dataO.bShareId,
@ -131,36 +130,43 @@
131 130
  };
132 131
</script>
133 132
134
<style lang="stylus" rel="stylesheet/stylus" scoped>
135
  .tab-wrapper
136
    display:flex
137
    align-items:baseline
138
    padding:15px 20px
139
    color: $commonFont
140
    .tab-lable
141
      width:100px
142
    .tab-sort
143
      display:flex
144
      flex-wrap:wrap
145
      margin-right:-10px
146
      margin-bottom:-10px
147
      li
148
        display:inline-block
149
        margin-right:10px
150
        margin-bottom:10px
151
        padding:2px 10px
152
        border: 1px solid $borderColor
153
        border-radius(10px)
154
        cursor: pointer
155
        &.active
156
          color: $mainColor
133
<style rel="stylesheet/scss" lang="scss" scoped>
134
  .tab-wrapper{
135
    display:flex;
136
    align-items:baseline;
137
    padding:15px 20px;
138
    color: $commonFont;
139
    .tab-lable{
140
      width:100px;
141
    }
142
    .tab-sort{
143
      display:flex;
144
      flex-wrap:wrap;
145
      margin-right:-10px;
146
      margin-bottom:-10px;
147
      li{
148
        display:inline-block;
149
        margin-right:10px;
150
        margin-bottom:10px;
151
        padding:2px 10px;
152
        border: 1px solid $borderColor;
153
        @include border-radius(10px);
154
        cursor: pointer;
155
        &.active{
156
          color: $mainColor;
157
        }
158
      }
159
    }
160
  }
157 161
158
  .tab-contain
159
    margin-top:20px
160
    background:#fff
161
  .el-input-group__append
162
    background:$mainColor
163
    color:#fff
164
    padding:10px 40px
165
    border-color:$mainColor
162
  .tab-contain{
163
    margin-top:20px;
164
    background:#fff;
165
  }
166
  .el-input-group__append{
167
    background:$mainColor;
168
    color:#fff;
169
    padding:10px 40px;
170
    border-color:$mainColor;
171
  }
166 172
</style>

+ 39 - 33
src/views/frontviews/ViewFindServe/list.vue

@ -36,7 +36,6 @@
36 36
37 37
<script>
38 38
  import Cookies from 'js-cookie';
39
  import httpUrl from '@/libs/http';
40 39
  import util from '@/libs/util';
41 40
42 41
  import baseService from '@/views/sub-component/BaseService';
@ -71,7 +70,7 @@
71 70
    },
72 71
    methods: {
73 72
      searchService() {
74
        this.$axios.get(httpUrl.hQuery.queryWare, {
73
        this.$axios.getp('/ajax/platform/info/wares', {
75 74
            key: this.keyVal,
76 75
            pid: this.platId,
77 76
            shareId: this.dataO.bShareId,
@ -128,36 +127,43 @@
128 127
  };
129 128
</script>
130 129
131
<style lang="stylus" rel="stylesheet/stylus" scoped>
132
  .tab-wrapper
133
    display:flex
134
    align-items:baseline
135
    padding:15px 20px
136
    color: $commonFont
137
    .tab-lable
138
      width:100px
139
    .tab-sort
140
      display:flex
141
      flex-wrap:wrap
142
      margin-right:-10px
143
      margin-bottom:-10px
144
      li
145
        display:inline-block
146
        margin-right:10px
147
        margin-bottom:10px
148
        padding:2px 10px
149
        border: 1px solid $borderColor
150
        border-radius(10px)
151
        cursor: pointer
152
        &.active
153
          color: $mainColor
130
<style rel="stylesheet/scss" lang="scss" scoped>
131
  .tab-wrapper{
132
    display:flex;
133
    align-items:baseline;
134
    padding:15px 20px;
135
    color: $commonFont;
136
    .tab-lable{
137
      width:100px;
138
    }
139
    .tab-sort{
140
      display:flex;
141
      flex-wrap:wrap;
142
      margin-right:-10px;
143
      margin-bottom:-10px;
144
      li{
145
        display:inline-block;
146
        margin-right:10px;
147
        margin-bottom:10px;
148
        padding:2px 10px;
149
        border: 1px solid $borderColor;
150
        @include border-radius(10px);
151
        cursor: pointer;
152
        &.active{
153
          color: $mainColor;
154
        }
155
      }
156
    }
157
  }
154 158
155
  .tab-contain
156
    margin-top:20px
157
    background:#fff
158
  .el-input-group__append
159
    background:$mainColor
160
    color:#fff
161
    padding:10px 40px
162
    border-color:$mainColor
159
  .tab-contain{
160
    margin-top:20px;
161
    background:#fff;
162
  }
163
  .el-input-group__append{
164
    background:$mainColor;
165
    color:#fff;
166
    padding:10px 40px;
167
    border-color:$mainColor;
168
  }
163 169
</style>

+ 1 - 1
src/views/frontviews/platTrend/ViewPlatTrend.vue

@ -34,7 +34,7 @@
34 34
  </div>
35 35
</template>
36 36
37
<script type="text/ecmascript-6">
37
<script>
38 38
	import platNews from './ViewPlatTrendNews';
39 39
  import platTrends from './ViewPlatTrendTrends';
40 40

+ 41 - 33
src/views/infoshow/components/BeyondTo/index.vue

@ -71,37 +71,45 @@
71 71
    }
72 72
  };
73 73
</script>
74
<style lang="stylus" rel="stylesheet/stylus" scoded>
75
.beyond-block
76
  text-align:center
77
  .show-head
78
    display: block
79
    width: 120px
80
    height: 120px
81
    border: 1px solid #E5E5E5
82
    margin: 0 auto 10px
83
    background-position: center
84
    background-size: cover
85
    border-radius: 50%
86
    &.orgimg-box
87
      center-items(200px, 120px)
88
  .show-info
89
    width:100%
90
    .info-tit
91
      color:$commonFont
92
      text-ellipsis()
93
      font-size: 18px
94
      line-height: 24px
95
    .info-tag
96
      color:$commonFont
97
      text-ellipsis()
98
      font-size: 16px
99
      line-height: 24px
100
    .info-desc
101
      color:$secondaryFont
102
      text-ellipsis()
103
      font-size: 15px
104
      line-height: 24px
105
  .goSpan
106
    margin-top:15px
74
<style rel="stylesheet/scss" lang="scss" scoped>
75
.beyond-block{
76
  text-align:center;
77
  .show-head{
78
    display: block;
79
    width: 120px;
80
    height: 120px;
81
    border: 1px solid #E5E5E5;
82
    margin: 0 auto 10px;
83
    background-position: center;
84
    background-size: cover;
85
    border-radius: 50%;
86
    &.orgimg-box{
87
      @include center-items(200px, 120px);
88
    }
89
  }
90
  .show-info{
91
    width:100%;
92
    .info-tit{
93
      color:$commonFont;
94
      @include text-ellipsis();
95
      font-size: 18px;
96
      line-height: 24px;
97
    }
98
    .info-tag{
99
      color:$commonFont;
100
      @include text-ellipsis();
101
      font-size: 16px;
102
      line-height: 24px;
103
    }
104
    .info-desc{
105
      color:$secondaryFont;
106
      @include text-ellipsis();
107
      font-size: 15px;
108
      line-height: 24px;
109
    }
110
  }
111
  .goSpan{
112
    margin-top:15px;
113
  }
114
}
107 115
</style>

+ 19 - 15
src/views/infoshow/components/CollectCo/index.vue

@ -20,19 +20,23 @@
20 20
    }
21 21
  };
22 22
</script>
23
<style lang="stylus" rel="stylesheet/stylus" scoded>
24
.collect-block
25
  margin-right:15px
26
  font-size: 15px
27
  line-height: 15px
28
  .icon-font
29
    display: inline-block
30
    width:16px
31
    height:16px
32
    margin-left:6px
33
    background-size: cover
34
    &.icon-shoucang
35
      bg-image('/static/comimg/g_all_icon_shoucang_nor.png')
36
    &.icon-yishoucang
37
      bg-image('/static/comimg/g_all_icon_shoucang_hig.png')
23
<style rel="stylesheet/scss" lang="scss" scoped>
24
.collect-block{
25
  margin-right:15px;
26
  font-size: 15px;
27
  line-height: 15px;
28
  .icon-font{
29
    display: inline-block;
30
    width:16px;
31
    height:16px;
32
    margin-left:6px;
33
    background-size: cover;
34
    &.icon-shoucang{
35
      @include bg-image('/static/comimg/g_all_icon_shoucang_nor.png');
36
    }
37
    &.icon-yishoucang{
38
      @include bg-image('/static/comimg/g_all_icon_shoucang_hig.png');
39
    }
40
  }
41
}
38 42
</style>

+ 93 - 75
src/views/infoshow/components/PreviewMagnify/index.vue

@ -130,79 +130,97 @@ export default {
130 130
};
131 131
</script>
132 132
133
<style rel="stylesheet/stylus" lang="stylus" scoped>
134
  .magnify
135
    position: relative
136
    .product-box
137
      position: relative
138
      .preview-box
139
        width: 360px
140
        height: 270px
141
        border: 1px solid #dededd
142
        position: relative
143
        display:flex
144
        justify-content: center
145
        align-items:center
146
        overflow:hidden
147
        .hover-box
148
          position: absolute
149
          display: none
150
          left: 0
151
          top: 0
152
          bottom:0
153
          width: 60px
154
          height: 60px
155
          background: url('./img/mask.png') repeat 0 0
156
          cursor: move
157
          user-select: none
158
        &:hover
159
          .hover-box
160
            display: block
161
        img
162
          max-width: 360px
163
          max-height: 270px
164
      .tb-thumb
165
        margin:10px 0 0
166
        overflow:hidden
167
        li
168
          background:none repeat scroll 0 0 transparent
169
          float:left
170
          margin:0 6px 0 0
171
          overflow:hidden
172
          .tb-pic
173
            border: 1px solid #E5E5E5
174
            a
175
              display:block
176
              height: 48px
177
              width: 66px
178
              display:flex
179
              justify-content: center
180
              align-items:center
181
            img
182
              max-height: 48px
183
              max-width: 66px
184
          &.tb-selected
185
            border: 3px solid $mainColor
186
            .tb-pic
187
              background-color: #FFFFFF
188
              border: medium none
189
              a
190
                height: 44px
191
                width: 58px
192
              img
193
                max-height: 44px
194
                max-width: 58px
195
    .zoom-box
196
      width: 300px
197
      height: 300px
198
      overflow: hidden
199
      position: absolute
200
      left: 370px
201
      border: 1px solid #dededd
202
      top: 0
203
      z-index: 700
204
      img
205
        position: absolute
206
        top: 0
207
        left: 0
133
<style rel="stylesheet/scss" lang="scss" scoped>
134
  .magnify{
135
    position: relative;
136
    .product-box{
137
      position: relative;
138
      .preview-box{
139
        width: 360px;
140
        height: 270px;
141
        border: 1px solid #dededd;
142
        position: relative;
143
        display:flex;
144
        justify-content: center;
145
        align-items:center;
146
        overflow:hidden;
147
        .hover-box{
148
          position: absolute;
149
          display: none;
150
          left: 0;
151
          top: 0;
152
          bottom:0;
153
          width: 60px;
154
          height: 60px;
155
          background: url('./img/mask.png') repeat 0 0;
156
          cursor: move;
157
          user-select: none;
158
        }
159
        &:hover{
160
          .hover-box{
161
            display: block;
162
          }
163
        }
164
        img{
165
          max-width: 360px;
166
          max-height: 270px;
167
        }
168
      }
169
      .tb-thumb{
170
        margin:10px 0 0;
171
        overflow:hidden;
172
        li{
173
          background:none repeat scroll 0 0 transparent;
174
          float:left;
175
          margin:0 6px 0 0;
176
          overflow:hidden;
177
          .tb-pic{
178
            border: 1px solid #E5E5E5;
179
            a{
180
              display:block;
181
              height: 48px;
182
              width: 66px;
183
              display:flex;
184
              justify-content: center;
185
              align-items:center;
186
            }
187
            img{
188
              max-height: 48px;
189
              max-width: 66px;
190
            }
191
          }
192
          &.tb-selected{
193
            border: 3px solid $mainColor;
194
            .tb-pic{
195
              background-color: #FFFFFF;
196
              border: medium none;
197
              a{
198
                height: 44px;
199
                width: 58px;
200
              }
201
              img{
202
                max-height: 44px;
203
                max-width: 58px;
204
              }
205
            }
206
          }
207
        }
208
      }
209
    }
210
    .zoom-box{
211
      width: 300px;
212
      height: 300px;
213
      overflow: hidden;
214
      position: absolute;
215
      left: 370px;
216
      border: 1px solid #dededd;
217
      top: 0;
218
      z-index: 700;
219
      img{
220
        position: absolute;
221
        top: 0;
222
        left: 0;
223
      }
224
    }
225
  }
208 226
</style>

+ 43 - 31
src/views/infoshow/components/ShareOut/index.vue

@ -45,38 +45,50 @@
45 45
    }
46 46
  };
47 47
</script>
48
<style lang="stylus" rel="stylesheet/stylus" scoded>
49
.share-block
50
  margin-right:15px
51
  .share-icon
52
    display:inline-block
53
    margin-left:6px
54
    &.icon-wechat
55
      width:18px
56
      height:14px
57
      bg-image("./img/icon_weixin_nor.png")
58
      &:hover
59
        bg-image("./img/icon_weixin_hig.png")
60
.popper-class
61
  background: rgba(0,0,0,.6)
62
  color:#ffffff
63
  .shareCode
64
    overflow:hidden
65
    display:flex
66
    align-items:center
67
    justify-content:space-between
68
    .qrcode
69
      float: left
70
      img,canvas
71
        border: 4px solid #ffffff
72
    .qrword
73
      width:180px
74
      font-size:14px
75
      line-height:28px
76
.el-popover
48
<style rel="stylesheet/scss" lang="scss" scoped>
49
.share-block{
50
  margin-right:15px;
51
  .share-icon{
52
    display:inline-block;
53
    margin-left:6px;
54
    &.icon-wechat{
55
      width:18px;
56
      height:14px;
57
      @include bg-image("./img/icon_weixin_nor.png");
58
      &:hover{
59
        @include bg-image("./img/icon_weixin_hig.png");
60
      }
61
    }
62
  }
63
}
64
.popper-class{
65
  background: rgba(0,0,0,.6);
66
  color:#ffffff;
67
  .shareCode{
68
    overflow:hidden;
69
    display:flex;
70
    align-items:center;
71
    justify-content:space-between;
72
    .qrcode{
73
      float: left;
74
      img,canvas{
75
        border: 4px solid #ffffff;
76
      }
77
    }
78
    .qrword{
79
      width:180px;
80
      font-size:14px;
81
      line-height:28px;
82
    }
83
  }
84
}
85
.el-popover{
77 86
  border: none
78
.el-popper[x-placement^=bottom] .popper__arrow::after
87
}
88
.el-popper[x-placement^=bottom] .popper__arrow::after{
79 89
  border-bottom-color: rgba(0,0,0,.6)
80
.el-popper[x-placement^=top] .popper__arrow::after
90
}
91
.el-popper[x-placement^=top] .popper__arrow::after{
81 92
  border-top-color: rgba(0,0,0,.6)
93
}
82 94
</style>

+ 128 - 12
src/views/infoshow/expertShow/index.vue

@ -30,7 +30,7 @@
30 30
                  <span class="content-more" @click="activeName='second'">更多</span>
31 31
                </div>
32 32
                <div class="content">
33
                  <!-- <baseService v-if="platServices.length" v-for="item in platServices" :key="item.index" :itemSingle="item"></baseService> -->
33
                  <baseService v-if="platServices.length" v-for="item in platServices" :key="item.index" :itemSingle="item"></baseService>
34 34
                </div>
35 35
              </div>
36 36
            </div>
@ -79,16 +79,24 @@
79 79
                  <span class="content-more" @click="activeName='third'">更多</span>
80 80
                </div>
81 81
                <div class="content">
82
                  <!-- <baseService v-if="platServices.length" v-for="item in platServices" :key="item.index" :itemSingle="item"></baseService> -->
82
                  <baseResult v-if="platPatents.length" v-for="item in platPatents" :key="item.index" :itemSingle="item"></baseResult>
83 83
                </div>
84 84
              </div>
85 85
            </div>
86 86
          </el-tab-pane>
87
          <el-tab-pane label="服务" name="second">
88
            <!-- <baseService v-if="platServices.length" v-for="item in platServices" :key="item.index" :itemSingle="item"></baseService> -->
87
          <el-tab-pane :label="'服务 ' + (serCount>0 ? serCount : '')" name="second">
88
            <div v-show="!ifDefault">
89
              <baseService v-if="platServices.length" v-for="item in platServices" :key="item.index" :itemSingle="item"></baseService>
90
              <Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="searchLower"></Loading>
91
            </div>
92
            <defaultPage v-show="ifDefault"></defaultPage>
89 93
          </el-tab-pane>
90
          <el-tab-pane label="专利" name="third">
91
            <!-- <baseService v-if="platServices.length" v-for="item in platServices" :key="item.index" :itemSingle="item"></baseService> -->
94
          <el-tab-pane :label="'专利 ' + (patCount>0 ? patCount : '')" name="third">
95
            <div v-show="!ifDefault2">
96
              <baseResult v-if="platPatents.length" v-for="item in platPatents" :key="item.index" :itemSingle="item"></baseResult>
97
              <Loading v-show="loadingModalShow2" :loadingComplete="loadingComplete2" :isLoading="isLoading2" v-on:upup="searchLower2"></Loading>
98
            </div>
99
            <defaultPage v-show="ifDefault2"></defaultPage>
92 100
          </el-tab-pane>
93 101
          <el-tab-pane label="资料" name="fourth">
94 102
            <div class="content-wrapper">
@ -178,13 +186,13 @@
178 186
</template>
179 187
180 188
<script>
181
  import '@/common/stylus/listitem.styl';
182
  import '@/common/stylus/browse.styl';
189
  import '@/styles/listitem.scss';
190
  import '@/styles/browse.scss';
183 191
  import util from '@/libs/util';
184
  import httpUrl from '@/libs/http';
185 192
186 193
  import shareOut from '../components/ShareOut';
187 194
  import baseService from '@/views/sub-component/BaseService';
195
  import baseResult from '@/views/sub-component/baseResult';
188 196
189 197
  export default {
190 198
    data() {
@ -194,21 +202,44 @@
194 202
        expertInfo: '',
195 203
        elurl: '',
196 204
        platServices: [],
197
        platPatents: []
205
        serCount: 0,
206
        loadingModalShow: true, // 是否显示按钮
207
        loadingComplete: false, // 是否全部加载
208
        isFormSearch: false, // 数据加载
209
        isLoading: false, // button style...
210
        ifDefault: false, // 是否缺省
211
        platPatents: [],
212
        patCount: 0,
213
        loadingModalShow2: true,
214
        loadingComplete2: false,
215
        isFormSearch2: false,
216
        isLoading2: false,
217
        ifDefault2: false,
218
        dataO: {
219
          serModifyTime: '',
220
221
          patTime: '',
222
          patId: ''
223
        },
224
        rows: 10
198 225
      };
199 226
    },
200 227
    created() {
201 228
      this.expertId = util.urlParse('id');
202 229
      this.elurl = window.location.href;
203 230
      this.getExpertInfo();
231
      this.getExpertWave();
232
      this.getExpertPatent();
233
      this.queryPubCount();
204 234
    },
205 235
    components: {
206 236
      shareOut,
207
      baseService
237
      baseService,
238
      baseResult
208 239
    },
209 240
    methods: {
210 241
      getExpertInfo() {
211
        this.$axios.get(httpUrl.kxQurey.professor.query2 + this.expertId, {
242
        this.$axios.getk('/ajax/professor/info/' + this.expertId, {
212 243
        }, (res) => {
213 244
          if (res.success) {
214 245
            var $info = res.data;
@ -229,6 +260,91 @@
229 260
          };
230 261
        });
231 262
      },
263
      getExpertWave() {
264
        this.$axios.getk('/ajax/ware/publish', {
265
          category: '1',
266
          owner: this.expertId,
267
          modifyTime: this.dataO.serModifyTime,
268
          rows: this.rows
269
        }, (res) => {
270
          if (res.success) {
271
            var $info = res.data;
272
            if ($info.length > 0) {
273
              this.dataO.modifyTime = $info[$info.length - 1].modifyTime;
274
              this.platServices = this.isFormSearch ? this.platServices.concat($info) : $info;
275
              this.isFormSearch = true;
276
            };
277
            var liLen = this.platServices.length;
278
            if ($info.length === 0 && liLen === 0) {
279
              this.ifDefault = true;
280
            };
281
            if ($info.length < this.rows) {
282
              this.loadingModalShow = false;
283
              this.isFormSearch = false;
284
            };
285
          };
286
        });
287
      },
288
      searchLower() {
289
        if (this.loadingModalShow && !this.isLoading) {
290
          this.getExpertWave();
291
        }
292
      },
293
      getExpertPatent() {
294
        this.$axios.getk('/ajax/ppatent/professor', {
295
          owner: this.expertId,
296
          assTime: this.dataO.patTime,
297
          id: this.dataO.patId,
298
          rows: this.rows
299
        }, (res) => {
300
          if (res.success) {
301
            var $info = res.data;
302
            if ($info.length > 0) {
303
              this.dataO.patTime = $info[$info.length - 1].assTime;
304
              this.dataO.patId = $info[$info.length - 1].id;
305
              this.platPatents = this.isFormSearch2 ? this.platPatents.concat($info) : $info;
306
              this.isFormSearch2 = true;
307
            };
308
            var liLen = this.platPatents.length;
309
            if ($info.length === 0 && liLen === 0) {
310
              this.ifDefault2 = true;
311
            };
312
            if ($info.length < this.rows) {
313
              this.loadingModalShow2 = false;
314
              this.isFormSearch2 = false;
315
            };
316
          };
317
        });
318
      },
319
      searchLower2() {
320
        if (this.loadingModalShow2 && !this.isLoading2) {
321
          this.getExpertPatent();
322
        }
323
      },
324
      queryPubCount() {
325
        var that = this
326
        this.$axios.getk('/ajax/ware/count/publish', {
327
          owner: that.expertId,
328
          category: '1'
329
        }, function(data) {
330
          if (data.data > 0 && data.data < 99) {
331
            that.serCount = data.data;
332
          }
333
          if (data.data > 99) {
334
           that.serCount = '99+';
335
          }
336
        });
337
        this.$axios.getk('/ajax/ppatent/count/publish', {
338
          owner: that.expertId
339
        }, function(data) {
340
          if (data.data > 0 && data.data < 99) {
341
            that.patCount = data.data;
342
          }
343
          if (data.data > 99) {
344
           that.patCount = '99+';
345
          }
346
        });
347
      },
232 348
      headUrl(item) {
233 349
        return item.hasHeadImage ? util.ImageUrl(('head/' + item.id + '_l.jpg'), true) : util.defaultSet.img.expert;
234 350
      },

+ 16 - 12
src/views/layout/Layout.vue

@ -25,20 +25,24 @@
25 25
  };
26 26
</script>
27 27
28
<style lang="stylus" rel="stylesheet/stylus" scoped>
28
<style rel="stylesheet/scss" lang="scss" scoped>
29 29
30
  .Site
31
    display: flex
32
    min-height: 100vh
33
    flex-direction: column
34
    .Site-content
35
      flex: 1
36
      padding-top:20px
30
  .Site{
31
    display: flex;
32
    min-height: 100vh;
33
    flex-direction: column;
34
    .Site-content{
35
      flex: 1;
36
      padding-top:20px;
37 37
      .router-fade-enter-active,
38
      .router-fade-leave-active
39
        transition: opacity 0.2s
38
      .router-fade-leave-active{
39
        transition: opacity 0.2s;
40
      }
40 41
41 42
      .router-fade-enter,
42
      .router-fade-leave-active
43
        opacity: 0
43
      .router-fade-leave-active{
44
        opacity: 0;
45
      }
46
    }
47
  }
44 48
</style>

+ 16 - 12
src/views/layout/common.vue

@ -26,20 +26,24 @@
26 26
  };
27 27
</script>
28 28
29
<style lang="stylus" rel="stylesheet/stylus" scoped>
29
<style rel="stylesheet/scss" lang="scss" scoped>
30 30
31
  .Site
32
    display: flex
33
    min-height: 100vh
34
    flex-direction: column
35
    .Site-content
36
      flex: 1
37
      padding-top:20px
31
  .Site{
32
    display: flex;
33
    min-height: 100vh;
34
    flex-direction: column;
35
    .Site-content{
36
      flex: 1;
37
      padding-top:20px;
38 38
      .router-fade-enter-active,
39
      .router-fade-leave-active
40
        transition: opacity 0.2s
39
      .router-fade-leave-active{
40
        transition: opacity 0.2s;
41
      }
41 42
42 43
      .router-fade-enter,
43
      .router-fade-leave-active
44
        opacity: 0
44
      .router-fade-leave-active{
45
        opacity: 0;
46
      }
47
    }
48
  }
45 49
</style>

+ 23 - 19
src/views/layout/components/Navbar.vue

@ -31,23 +31,27 @@ export default {
31 31
};
32 32
</script>
33 33
34
<style rel="stylesheet/stylus" lang="stylus" scoped>
35
.navbar
36
  height: 50px
37
  line-height: 50px
38
  padding: 0 12px
39
  border-radius: 0px !important
40
  background:none
41
  overflow:hidden
42
  margin-bottom:-20px
43
  .hamburger-container
44
    line-height: 58px
45
    height: 50px
46
    float: left
47
    padding: 0 10px
48
  .tag-breadcrumb
49
    float:left
50
    font-size: 14px
51
    line-height: 50px
52
    margin-left: -10px
34
<style rel="stylesheet/scss" lang="scss" scoped>
35
.navbar{
36
  height: 50px;
37
  line-height: 50px;
38
  padding: 0 12px;
39
  border-radius: 0px !important;
40
  background:none;
41
  overflow:hidden;
42
  margin-bottom:-20px;
43
  border-bottom: none;
44
  .hamburger-container{
45
    line-height: 58px;
46
    height: 50px;
47
    float: left;
48
    padding: 0 10px;
49
  }
50
  .tag-breadcrumb{
51
    float:left;
52
    font-size: 14px;
53
    line-height: 50px;
54
    margin-left: -10px;
55
  }
56
}
53 57
</style>

+ 42 - 32
src/views/layout/components/TheFooter.vue

@ -29,7 +29,7 @@
29 29
  </div>
30 30
</template>
31 31
32
<script type="text/javascript">
32
<script>
33 33
  // import Cookies from 'js-cookie';
34 34
  import util from '@/libs/util';
35 35
@ -60,37 +60,47 @@
60 60
  };
61 61
</script>
62 62
63
<style lang="stylus" rel="stylesheet/stylus">
63
<style rel="stylesheet/scss" lang="scss" scoped>
64 64
65
  .footer
66
    bg-grey-color()
67
    padding:30px 0
68
    .footer-wrapper
69
      display: flex
70
      justify-content: space-between
71
      font-size:14px
72
      color:#888
73
      line-height: 32px
74
      .wrapper-left
75
        .logo-block
76
          margin:10px 0 20px
77
        .listlink
78
          margin-right:25px
79
        a
80
          color:#888
81
          cursor:pointer
82
    .copy-wrapper
83
      margin-top:20px
84
      font-size:12px
85
      color:#666
86
      a
87
        color:#666
88
      .beian
89
        em
90
          display: inline-block
91
          width:14px
92
          height:14px
93
          bg-image('./img/home_icon_beian.png')
94
          background-size: cover
65
  .footer{
66
    @include bg-grey-color();
67
    padding:30px 0;
68
    .footer-wrapper{
69
      display: flex;
70
      justify-content: space-between;
71
      font-size:14px;
72
      color:#888;
73
      line-height: 32px;
74
      .wrapper-left{
75
        .logo-block{
76
          margin:10px 0 20px;
77
        }
78
        .listlink{
79
          margin-right:25px;
80
        }
81
        a{
82
          color:#888;
83
          cursor:pointer;
84
        }
85
      }
86
    }
87
    .copy-wrapper{
88
      margin-top:20px;
89
      font-size:12px;
90
      color:#666;
91
      a{
92
        color:#666;
93
      }
94
      .beian{
95
        em{
96
          display: inline-block;
97
          width:14px;
98
          height:14px;
99
          @include bg-image('./img/home_icon_beian.png');
100
          background-size: cover;
101
        }
102
      }
103
    }
104
  }
95 105
96 106
</style>

+ 64 - 49
src/views/layout/components/TheHeader.vue

@ -53,7 +53,7 @@
53 53
  </div>
54 54
</template>
55 55
56
<script type="text/javascript">
56
<script>
57 57
  import util from '@/libs/util';
58 58
  import Cookies from 'js-cookie';
59 59
@ -73,53 +73,68 @@
73 73
  };
74 74
</script>
75 75
76
<style lang="stylus" rel="stylesheet/stylus">
77
  .el-menu-item,.el-menu--horizontal,.el-menu--horizontal .el-menu-item
78
    border:none
79
  .header
80
    .top-wrapper
81
      width: 100%
82
      height: 30px
83
      line-height: 30px
84
      bg-grey-color()
85
      .contain-wrapper
86
        font-size:14px
87
        overflow:hidden
88
        .marLeft
89
          display:inline-block
90
          margin-left:20px
91
          min-width:62px
92
          &.marLeft_1
93
            min-width:0
94
        .wrapper-left
95
          float:left
96
        .wrapper-right
97
          float:right
98
          .el-dropdown
99
            color:#c4c3c3
100
            margin-left:20px
101
          .el-menu-item,.el-submenu__title
102
            padding:0 10px
103
            margin-left:20px
104
            line-height:30px
105
            height:30px
106
    .banner-wrapper
107
      width:100%
108
      height:200px
109
      background-size:cover
110
      background-position:center
111
    .nav-wrapper
112
      bg-blue-color()
113
      ul
114
        display: flex
115
        li
116
          display: inline-block
117
          padding:0 25px
118
          height:40px
119
          line-height:40px
120
          text-align: center
121
          cursor: pointer
122
        .active
123
          bg-blue-active-color()
76
<style rel="stylesheet/scss" lang="scss" scoped>
77
  .el-menu-item,.el-menu--horizontal,.el-menu--horizontal .el-menu-item{
78
    border:none;
79
  }
80
  .header{
81
    .top-wrapper{
82
      width: 100%;
83
      height: 30px;
84
      line-height: 30px;
85
      @include bg-grey-color();
86
      .contain-wrapper{
87
        font-size:14px;
88
        overflow:hidden;
89
        .marLeft{
90
          display:inline-block;
91
          margin-left:20px;
92
          min-width:62px;
93
          &.marLeft_1{
94
            min-width:0;
95
          }
96
        }
97
        .wrapper-left{
98
          float:left;
99
        }
100
        .wrapper-right{
101
          float:right;
102
          .el-dropdown{
103
            color:#c4c3c3;
104
            margin-left:20px;
105
          }
106
          .el-menu-item,.el-submenu__title{
107
            padding:0 10px;
108
            margin-left:20px;
109
            line-height:30px;
110
            height:30px;
111
          }
112
        }
113
      }
114
    }
115
    .banner-wrapper{
116
      width:100%;
117
      height:200px;
118
      background-size:cover;
119
      background-position:center;
120
    }
121
    .nav-wrapper{
122
      @include bg-blue-color();
123
      ul{
124
        display: flex;
125
        li{
126
          display: inline-block;
127
          padding:0 25px;
128
          height:40px;
129
          line-height:40px;
130
          text-align: center;
131
          cursor: pointer;
132
        }
133
        .active{
134
          @include bg-blue-active-color();
135
        }
136
      }
137
    }
138
  }
124 139
125 140
</style>

+ 3 - 4
src/views/sub-component/BaseAgency.vue

@ -20,7 +20,6 @@
20 20
<script>
21 21
  import Cookies from 'js-cookie';
22 22
  import util from '@/libs/util';
23
  import httpUrl from '@/libs/http';
24 23
25 24
  export default {
26 25
    props: {
@ -45,12 +44,12 @@
45 44
    },
46 45
    created() {
47 46
       this.platId = Cookies.get('platId');
48
       this.ResidentOrgs(this.platId);
47
       this.ResidentOrgs();
49 48
    },
50 49
    methods: {
51 50
      ResidentOrgs(id) {
52
        this.$axios.get(httpUrl.hQuery.buttedOrgs.nopq, {
53
          pid: id,
51
        this.$axios.getp('/ajax/platform/info/buttedOrgs', {
52
          pid: this.platId,
54 53
          oid: this.dataO.bOid,
55 54
          time: this.dataO.bTime,
56 55
          rows: this.num ? this.num : this.rows

+ 2 - 3
src/views/sub-component/BaseArticle.vue

@ -16,7 +16,6 @@
16 16
17 17
<script type="text/ecmascript-6">
18 18
  import util from '@/libs/util';
19
  import httpUrl from '@/libs/http';
20 19
21 20
  export default {
22 21
    props: {
@ -45,7 +44,7 @@
45 44
    methods: {
46 45
      leaveWordTotal(item) {
47 46
        var _this = this;
48
         this.$axios.get(httpUrl.kxQurey.leaveMsg.count, {
47
         this.$axios.getk('/ajax/leavemsg/count', {
49 48
          sid: item.articleId,
50 49
          stype: 1
51 50
        }, (res) => {
@ -58,7 +57,7 @@
58 57
      ownerByond(item) {
59 58
        var _this = this;
60 59
        if (item.articleType) {
61
          this.$axios.get(httpUrl.kxQurey.org.query + item.ownerId, {
60
          this.$axios.getk('/ajax/org/' + item.ownerId, {
62 61
            }, (res) => {
63 62
            if (res.success) {
64 63
              let $info = res.data;

+ 4 - 5
src/views/sub-component/BaseCompany.vue

@ -20,7 +20,6 @@
20 20
<script>
21 21
  import Cookies from 'js-cookie';
22 22
  import util from '@/libs/util';
23
  import httpUrl from '@/libs/http';
24 23
25 24
  export default {
26 25
    props: {
@ -45,12 +44,12 @@
45 44
    },
46 45
    created() {
47 46
       this.platId = Cookies.get('platId');
48
       this.ResidentOrgs(this.platId);
47
       this.ResidentOrgs();
49 48
    },
50 49
    methods: {
51
      ResidentOrgs(id) {
52
        this.$axios.get(httpUrl.hQuery.buttedOrgs.nopq, {
53
          pid: id,
50
      ResidentOrgs() {
51
        this.$axios.getp('/ajax/platform/info/buttedOrgs', {
52
          pid: this.platId,
54 53
          oid: this.dataO.bOid,
55 54
          time: this.dataO.bTime,
56 55
          rows: this.num ? this.num : this.rows

+ 4 - 5
src/views/sub-component/BaseExpert.vue

@ -17,7 +17,6 @@
17 17
<script>
18 18
  import Cookies from 'js-cookie';
19 19
  import util from '@/libs/util';
20
  import httpUrl from '@/libs/http';
21 20
22 21
  export default {
23 22
    props: {
@ -42,12 +41,12 @@
42 41
    },
43 42
    created() {
44 43
       this.platId = Cookies.get('platId');
45
       this.buttedProfessors(this.platId);
44
       this.buttedProfessors();
46 45
    },
47 46
    methods: {
48 47
      buttedProfessors(id) {
49
        this.$axios.get(httpUrl.hQuery.buttedProfessors.nopq, {
50
          pid: id,
48
        this.$axios.getp('/ajax/platform/info/buttedProfessors', {
49
          pid: this.platId,
51 50
          uid: this.dataO.bUid,
52 51
          time: this.dataO.bTime,
53 52
          rows: this.num ? this.num : this.rows
@ -76,7 +75,7 @@
76 75
                    $data[i].offt = '';
77 76
                  }
78 77
                }
79
                this.$axios.get('/ajax/researchArea/' + $data[i].id, {}, (res) => {
78
                this.$axios.getk('/ajax/researchArea/' + $data[i].id, {}, (res) => {
80 79
                  const $info = res.data;
81 80
                  let arr = [];
82 81
                  for (let j = 0; j < $info.length; j++) {

+ 2 - 3
src/views/sub-component/BaseResource.vue

@ -11,7 +11,6 @@
11 11
12 12
<script>
13 13
  import util from '@/libs/util';
14
  import httpUrl from '@/libs/http';
15 14
16 15
  export default {
17 16
    props: {
@ -33,7 +32,7 @@
33 32
    methods: {
34 33
      ownerByond(item) {
35 34
        if (item.otype === '1') {
36
          this.$axios.get(httpUrl.kxQurey.professor.query + item.oid, {
35
          this.$axios.getk('/ajax/professor/baseInfo/' + item.oid, {
37 36
            }, (res) => {
38 37
            if (res.success) {
39 38
              let $info = res.data;
@ -42,7 +41,7 @@
42 41
            }
43 42
          });
44 43
        } else if (item.otype === '2') {
45
          this.$axios.get(httpUrl.kxQurey.org.query + item.oid, {
44
          this.$axios.getk('/ajax/org/' + item.oid, {
46 45
            }, (res) => {
47 46
            if (res.success) {
48 47
              let $info = res.data;

+ 2 - 3
src/views/sub-component/BaseResult.vue

@ -11,7 +11,6 @@
11 11
12 12
<script>
13 13
  import util from '@/libs/util';
14
  import httpUrl from '@/libs/http';
15 14
16 15
  export default {
17 16
    props: {
@ -33,7 +32,7 @@
33 32
    methods: {
34 33
      ownerByond(item) {
35 34
        if (item.otype === '1') {
36
          this.$axios.get(httpUrl.kxQurey.professor.query + item.oid, {
35
          this.$axios.getk('/ajax/professor/baseInfo/' + item.oid, {
37 36
            }, (res) => {
38 37
            if (res.success) {
39 38
              let $info = res.data;
@ -42,7 +41,7 @@
42 41
            }
43 42
          });
44 43
        } else if (item.otype === '2') {
45
          this.$axios.get(httpUrl.kxQurey.org.query + item.oid, {
44
          this.$axios.getk('/ajax/org/' + item.oid, {
46 45
            }, (res) => {
47 46
            if (res.success) {
48 47
              let $info = res.data;

+ 2 - 3
src/views/sub-component/BaseService.vue

@ -11,7 +11,6 @@
11 11
12 12
<script type="text/ecmascript-6">
13 13
  import util from '@/libs/util';
14
  import httpUrl from '@/libs/http';
15 14
16 15
  export default {
17 16
    props: {
@ -33,7 +32,7 @@
33 32
    methods: {
34 33
      ownerByond(item) {
35 34
        if (item.otype === '1') {
36
          this.$axios.get(httpUrl.kxQurey.professor.query + item.oid, {
35
          this.$axios.getk('/ajax/professor/baseInfo/' + item.oid, {
37 36
            }, (res) => {
38 37
            if (res.success) {
39 38
              let $info = res.data;
@ -42,7 +41,7 @@
42 41
            }
43 42
          });
44 43
        } else if (item.otype === '2') {
45
          this.$axios.get(httpUrl.kxQurey.org.query + item.oid, {
44
          this.$axios.getk('/ajax/org/' + item.oid, {
46 45
            }, (res) => {
47 46
            if (res.success) {
48 47
              let $info = res.data;

+ 1 - 1
src/views/sub-component/DynamicTags.vue

@ -28,7 +28,7 @@
28 28
  </el-form-item>
29 29
</template>
30 30
31
<script type="text/ecmascript-6">
31
<script>
32 32
  import httpUrl from '@/libs/http';
33 33
34 34
  export default {