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

2752
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-plugin-babel": "^3.9.0",
"@vue/cli-service": "^3.9.0", "@vue/cli-service": "^3.9.0",
"element-theme-chalk": "^2.13.0", "element-theme-chalk": "^2.13.0",
"image-webpack-loader": "^8.1.0",
"node-sass": "^4.14.1", "node-sass": "^4.14.1",
"sass-loader": "^8.0.0", "sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.10" "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: [ list: [
{ {
pic: 'https://huorantech.com/images/index/school1.png', pic: 'https://huorantech.com/images/index/school1.png',
isEnable: 1
}, },
{ {
pic: 'https://huorantech.com/images/index/school2.png', pic: 'https://huorantech.com/images/index/school2.png',
isEnable: 1
}, },
{ {
pic: 'https://huorantech.com/images/index/school3.png', pic: 'https://huorantech.com/images/index/school3.png',
isEnable: 1
}, },
{ {
pic: 'https://huorantech.com/images/index/school4.png', pic: 'https://huorantech.com/images/index/school4.png',
isEnable: 1
}, },
{ {
pic: 'https://huorantech.com/images/index/school5.png', pic: 'https://huorantech.com/images/index/school5.png',
isEnable: 1
}, },
] ]
}, },

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

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