overtime.wpy 775 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <style lang="less">
  2. .box {
  3. padding: 118px 20px 60px;
  4. background-color: #ebf5fa;
  5. background-repeat: no-repeat;
  6. background-size: contain;
  7. .image {
  8. width: 100%;
  9. }
  10. }
  11. </style>
  12. <template>
  13. <div class="box" :style="{'background-image': 'url('+h5StaticPath+'detailBack.jpg)'}">
  14. <navigationbar></navigationbar>
  15. <image class="image" :src="h5StaticPath+'overtime.svg'" mode="widthFix"/>
  16. </div>
  17. </template>
  18. <script>
  19. import wepy from '@wepy/core';
  20. import store from '@/store';
  21. import config from '@/config';
  22. wepy.page({
  23. store,
  24. config: {},
  25. data: {
  26. h5StaticPath: config.h5StaticPath + '/page-home/',
  27. },
  28. methods: {},
  29. created() {},
  30. });
  31. </script>
  32. <config>
  33. {
  34. "navigationStyle":"custom",
  35. usingComponents: {
  36. "navigationbar":'./navigationbar',
  37. }
  38. }
  39. </config>