| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <style lang="less">
- .box {
- padding: 118px 20px 60px;
- background-color: #ebf5fa;
- background-repeat: no-repeat;
- background-size: contain;
- .image {
- width: 100%;
- }
- }
- </style>
- <template>
- <div class="box" :style="{'background-image': 'url('+h5StaticPath+'detailBack.jpg)'}">
- <navigationbar></navigationbar>
- <image class="image" :src="h5StaticPath+'envirInfo.svg'" mode="widthFix"/></div>
- </template>
- <script>
- import wepy from '@wepy/core';
- import store from '@/store';
- import config from '@/config';
- wepy.page({
- store,
- config: {},
- data: {
- h5StaticPath: config.h5StaticPath + '/page-home/',
- },
- methods: {},
- created() {},
- });
- </script>
- <config>
- {
- "navigationStyle":"custom",
- usingComponents: {
- "navigationbar":'./navigationbar',
- }
- }
- </config>
|