Index.vue 437 B

123456789101112131415161718
  1. <template>
  2. <app-view class="g-detail" v-if="quote" style="background-color: #fff;margin-top: 5px;">
  3. <p v-if="quote.pictureurl">
  4. <img :src="getFileUrl(quote.pictureurl)" alt="" />
  5. </p>
  6. </app-view>
  7. </template>
  8. <script lang="ts" setup>
  9. import { PropType } from 'vue'
  10. import { getFileUrl } from '@/filters'
  11. defineProps({
  12. quote: {
  13. type: Object as PropType<Model.GoodsQuote>
  14. }
  15. })
  16. </script>