feat: 增加支付宝在线支付、套餐订购弹窗、会员权益、支持模型展示等

This commit is contained in:
Gsh
2025-08-14 00:26:39 +08:00
parent 48d8c528f6
commit ee6b4827fa
11 changed files with 1564 additions and 38 deletions

View File

@@ -0,0 +1,20 @@
import { createApp, h } from 'vue';
import ProductPackage from '@/components/ProductPackage/index.vue';
export function showProductPackage() {
const div = document.createElement('div');
document.body.appendChild(div);
const app = createApp({
render() {
return h(ProductPackage, {
onClose: () => {
app.unmount();
div.remove();
},
});
},
});
app.mount(div);
}