ficcService.vue 384 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="ficc-service-page">
  3. <image
  4. :src="globalImgUrls.ficcServicePage"
  5. mode="widthFix"
  6. />
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. }
  12. </script>
  13. <style>
  14. page{
  15. padding-bottom: 0;
  16. }
  17. </style>
  18. <style lang="scss" scoped>
  19. .ficc-service-page{
  20. image{
  21. width: 100%;
  22. display: block;
  23. }
  24. }
  25. </style>