ficcService.vue 473 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view class="ficc-service-page">
  3. <image
  4. :src="globalImgUrls.ficcServicePage+'?t='+t"
  5. mode="widthFix"
  6. />
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data () {
  12. return {
  13. t:new Date().getTime()
  14. }
  15. }
  16. }
  17. </script>
  18. <style>
  19. page{
  20. padding-bottom: 0;
  21. }
  22. </style>
  23. <style lang="scss" scoped>
  24. .ficc-service-page{
  25. image{
  26. width: 100%;
  27. display: block;
  28. }
  29. }
  30. </style>