| 123456789101112131415161718 |
- <template>
- <app-view class="g-detail" v-if="quote" style="background-color: #fff;margin-top: 5px;">
- <p v-if="quote.pictureurl">
- <img :src="getFileUrl(quote.pictureurl)" alt="" />
- </p>
- </app-view>
- </template>
- <script lang="ts" setup>
- import { PropType } from 'vue'
- import { getFileUrl } from '@/filters'
- defineProps({
- quote: {
- type: Object as PropType<Model.GoodsQuote>
- }
- })
- </script>
|