<template>
|
<ProDialog title="超级管理员签约" v-model="visible" width="530" destroy-on-close draggable>
|
<iframe v-if="form.url" width="430px" height="430px" :src="form.url"></iframe>
|
</ProDialog>
|
</template>
|
|
<script setup lang="ts">
|
import { ProDialog } from '@bole-core/components';
|
|
defineOptions({
|
name: 'WechatWalletOpen',
|
});
|
|
type Form = {
|
url: string;
|
};
|
|
const form = defineModel<Form>('form');
|
const visible = defineModel({ type: Boolean });
|
</script>
|
|
<style lang="scss" scoped>
|
@use '@/style/common.scss' as *;
|
</style>
|