yujialong 7 months ago
parent c1f067e758
commit 653b4eb836
  1. 9474
      package-lock.json
  2. 1
      package.json
  3. BIN
      src/assets/images/style/72.png
  4. 5
      src/const/modules.js
  5. 4
      src/pages/column/page/aboutUs.vue
  6. 8
      vue.config.js

9474
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -38,6 +38,7 @@
"@vue/cli-plugin-babel": "^3.9.0",
"@vue/cli-service": "^3.9.0",
"element-theme-chalk": "^2.13.0",
"image-webpack-loader": "^8.1.0",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.10"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 354 KiB

After

Width:  |  Height:  |  Size: 28 KiB

@ -765,18 +765,23 @@ export default {
list: [
{
pic: 'https://huorantech.com/images/index/school1.png',
isEnable: 1
},
{
pic: 'https://huorantech.com/images/index/school2.png',
isEnable: 1
},
{
pic: 'https://huorantech.com/images/index/school3.png',
isEnable: 1
},
{
pic: 'https://huorantech.com/images/index/school4.png',
isEnable: 1
},
{
pic: 'https://huorantech.com/images/index/school5.png',
isEnable: 1
},
]
},

@ -206,11 +206,13 @@
:class-option="{limitMoveNum: 2, direction: 2}">
<ul class="client-list"
ref="client">
<li v-for="item in modules[9].list"
<template v-for="item in modules[9].list">
<li v-if="item.isEnable"
:key="item">
<img :src="item.pic"
alt="">
</li>
</template>
</ul>
</scroll>
<div class="cover"

@ -17,4 +17,12 @@ module.exports = {
port: 8096 // 固定端口
},
productionSourceMap: false,
chainWebpack: config => {
config.module
.rule("images")
.use("image-webpack-loader")
.loader("image-webpack-loader")
.options({ bypassOnDebug: true })
.end();
}
}
Loading…
Cancel
Save