qrCodeDialog.vue 508 Bytes
<script setup>
const props = defineProps({
  showCodeDialog: {
    type: Boolean,
    default: false,
  },
  qrCode: {
    type: String,
    default: ''
  }
});
</script>

<template>
  <div>
    <el-dialog v-model="props.showCodeDialog" title="支付" width="300">
      <div>
        <img class="qrcode" :src="props.qrCode" />
      </div>
    </el-dialog>
  </div>
</template>

<style scoped lang="scss">
.qrcode {
  width: 150px;
  height: 150px;
  background-color: #8623fc;
  margin: 0 auto;
}
</style>