public.vue 884 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div v-for="val in list" :key="val.value" class="font-size-14 color-666 my-3">
  3. <span>{{ val.label }}</span>
  4. <span class="ml-5">{{ val.value }}</span>
  5. </div>
  6. <div class="color-error font-size-14">
  7. <v-icon>mdi-information-outline</v-icon>
  8. 请在对公汇款时务必备注订单号
  9. </div>
  10. </template>
  11. <script setup>
  12. defineOptions({ name: 'public-page'})
  13. const props = defineProps({
  14. price: {
  15. type: Number,
  16. default: 200
  17. }
  18. })
  19. const list = [
  20. { label: '账户名称:', value: '苏州识喜识谊科技有限公司' },
  21. { label: '开户银行:', value: '招商银行北京分行三里屯支行' },
  22. { label: '银行账号:', value: '1109 1354 8610 601' },
  23. { label: '汇款金额:', value: '¥' + props.price },
  24. { label: '汇款备注:', value: '订单号UIzi232rmwwzpif' }
  25. ]
  26. </script>
  27. <style scoped lang="scss">
  28. </style>