This commit is contained in:
王一嘉
2025-07-15 15:29:54 +08:00
parent 7f1d3c0f4b
commit c04598460d

View File

@@ -7,9 +7,8 @@ import Api from "../api/index.js";
const show = defineModel('show'); const show = defineModel('show');
const detail = reactive({}); const detail = reactive({});
onMounted(() => { onMounted(() => {
Api.system.getQrcode(1).then(({data}) => { Api.system.getQrcode(2).then(({data}) => {
Object.assign(detail, data); Object.assign(detail, data);
console.log('我坎坎坷坷', detail)
}); });
}); });
</script> </script>