123456789101112131415161718192021222324252627282930313233 |
- <template>
- <view class="ficc-service-page">
- <image
- :src="globalImgUrls.ficcServicePage+'?t='+t"
- mode="widthFix"
- />
- </view>
- </template>
- <script>
- export default {
- data () {
- return {
- t:new Date().getTime()
- }
- }
- }
- </script>
- <style>
- page{
- padding-bottom: 0;
- }
- </style>
- <style lang="scss" scoped>
- .ficc-service-page{
- image{
- width: 100%;
- display: block;
- }
- }
- </style>
|