Commit 3cc9e1ed authored by LiXuyang's avatar LiXuyang

企业认证

parent 28d9ff60
......@@ -16,7 +16,6 @@ export const enterpriseFormSchema: FormSchema[] = [
label: '营业执照:',
slot: 'license',
required: true,
r
},
{
field: 'logo',
......
<template>
<PageWrapper>
<template #headerContent>
<div class="flex">
<div class="flex-1 header">
<!-- <LeftOutlined class="h-back" @click="handleBack" />-->
<ApiOutlined class="h-icon" />
<div class="h-txt">
<div class="h-des">个人信息</div>
<div class="h-path">个人中心/个人信息</div>
</div>
</div>
</div>
</template>
</PageWrapper>
</template>
<script>
export default {
name: "index"
}
<script lang="ts" setup>
import { PageWrapper } from '@/components/Page';
import {
CheckboxGroup,
Divider,
UploadDragger,
Input,
RadioGroup,
Checkbox,
} from 'ant-design-vue';
import { ApiOutlined, PlusOutlined } from '@ant-design/icons-vue';
import { useRouter } from 'vue-router';
import BasicForm from '@/components/Form/src/BasicForm.vue';
import { FormProps, useForm } from '@/components/Form';
import {
applicantFormSchema,
enterpriseFormSchema,
identityFormSchema,
} from '@/views/personalCenter/enterpriseCertification/ec.data';
import { ref } from 'vue';
import { useMessage } from '@/hooks/web/useMessage';
</script>
<style scoped>
.header {
display: flex;
flex-direction: row;
gap: 10px;
.h-back {
font-size: 20px;
}
.h-icon {
font-size: 30px;
color: #0a208a;
}
.h-txt {
display: flex;
flex-direction: column;
.h-des {
font-size: 20px;
font-weight: bolder;
}
.h-path {
color: #a4a8b6;
}
}
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment