refuel.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class="common-details-container">
  3. <view class="common-header-wrapper">
  4. <image :src="minioUrl + '/img_jiayou_bg.png'" mode="scaleToFill" />
  5. </view>
  6. <view class="common-content-wrapper">
  7. <view class="common-card">
  8. <!-- common title -->
  9. <view class="common-card-title">中石化海清高速服务区加油站</view>
  10. <!-- sub title -->
  11. <view class="common-sub-title">营业时间:24小时</view>
  12. <view class="common-sub-title">客服电话:0532-8886666</view>
  13. </view>
  14. <view class="common-card">
  15. <view class="common-card-title u-margin-bottom-20">当前油价</view>
  16. <HyStation type="2" v-for="index in 4" :key="index"></HyStation>
  17. <view class="common-card-title u-margin-top-45">温馨提示</view>
  18. <view class="common-card-content">
  19. <text>1、进出加油站时,请严格遵守交通规则和指示标识,注意观察礼让其他车辆。</text>
  20. <text>2、加油前请熄火,不要拨打电话。</text>
  21. <text>3、加油站区域内请勿吸烟、使用明火(如打火机)。</text>
  22. <text>4、如需开具发票,请联系站内工作人员。</text>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script setup lang="ts">
  29. import { ref } from 'vue'
  30. import { useGlobal } from '../../composables/index'
  31. const { minioUrl } = useGlobal()
  32. </script>
  33. <style lang="scss" scoepd>
  34. @import '../base.scss';
  35. </style>