|
@@ -3,13 +3,13 @@
|
|
|
<div>个人用户首页</div>
|
|
|
<v-btn color="primary" class="white--text mt-2" min-width="298" @click="changeRole">切换为企业用户</v-btn>
|
|
|
<!-- 加入公司/新建公司 -->
|
|
|
- <Dialog :visible="show" :footer="true" title="企业注册" widthType="1">
|
|
|
+ <CtDialog :visible="show" :footer="true" title="企业注册" widthType="1">
|
|
|
<enterpriseRegister ref="enterpriseRegisterRef"></enterpriseRegister>
|
|
|
- </Dialog>
|
|
|
+ </CtDialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script setup>
|
|
|
-import Dialog from '@/components/CtDialog'
|
|
|
+import CtDialog from '@/components/CtDialog'
|
|
|
import enterpriseRegister from '@/views/enterprise/components/register.vue'
|
|
|
import { ref } from 'vue';
|
|
|
defineOptions({ name:'personal-index'})
|