Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bigDataSystem
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张伯涛
bigDataSystem
Commits
f0bef114
Commit
f0bef114
authored
Dec 17, 2024
by
LiXuyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
企业认证
parent
0a75ba2f
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
529 additions
and
0 deletions
+529
-0
ec.data.ts
src/views/personalCenter/enterpriseCertification/ec.data.ts
+151
-0
ecData.ts
src/views/personalCenter/enterpriseCertification/ecData.ts
+20
-0
index.vue
src/views/personalCenter/enterpriseCertification/index.vue
+345
-0
index.vue
src/views/personalCenter/personalInformation/index.vue
+13
-0
No files found.
src/views/personalCenter/enterpriseCertification/ec.data.ts
0 → 100644
View file @
f0bef114
import
{
FormSchema
}
from
'@/components/Form'
;
import
{
InputProps
}
from
'ant-design-vue'
;
export
const
identityFormSchema
:
FormSchema
[]
=
[
{
field
:
'identity'
,
label
:
'身份选择:'
,
defaultValue
:
'数据买家'
,
slot
:
'identity'
,
required
:
true
,
},
];
export
const
enterpriseFormSchema
:
FormSchema
[]
=
[
{
field
:
'license'
,
label
:
'营业执照:'
,
slot
:
'license'
,
required
:
true
,
},
{
field
:
'logo'
,
label
:
'公司LOGO:'
,
slot
:
'logo'
,
required
:
true
,
},
{
field
:
'companyName'
,
label
:
'公司名称:'
,
slot
:
'companyName'
,
required
:
true
,
},
{
field
:
'code'
,
label
:
'统一社会信用代码:'
,
component
:
'Input'
,
componentProps
:
{
placeholder
:
'请输入统一社会信用代码'
,
},
required
:
true
,
},
{
field
:
'leader'
,
label
:
'法人:'
,
slot
:
'leader'
,
required
:
true
,
},
{
field
:
'leaderNum'
,
label
:
'法人身份证号码:'
,
component
:
'Input'
,
componentProps
:
{
placeholder
:
'请输入法人身份证号码'
,
},
required
:
true
,
},
{
field
:
'buildTime'
,
label
:
'成立日期:'
,
component
:
'DatePicker'
,
componentProps
:
{
placeholder
:
'请选择成立日期'
,
},
required
:
true
,
},
{
field
:
'registerNum'
,
label
:
'注册资本:'
,
component
:
'Input'
,
componentProps
:
{
placeholder
:
'请输入注册资本'
,
},
required
:
true
,
},
{
field
:
'businessRange'
,
label
:
'经营范围:'
,
component
:
'InputTextArea'
,
componentProps
:
{
placeholder
:
'请输入经营范围(最多1024个字符)'
,
rows
:
4
,
},
required
:
true
,
},
{
field
:
'registerAddress'
,
label
:
'注册地址:'
,
component
:
'Select'
,
componentProps
:
{},
required
:
true
,
},
{
field
:
'detailAddress'
,
label
:
'详细地址:'
,
component
:
'Input'
,
componentProps
:
{
placeholder
:
'请输入详细地址(最多30个字符)'
,
}
as
InputProps
,
required
:
true
,
},
];
export
const
applicantFormSchema
:
FormSchema
[]
=
[
{
field
:
'type'
,
label
:
'申办人身份:'
,
defaultValue
:
'授权代表'
,
slot
:
'type'
,
},
{
field
:
'idCardFront'
,
label
:
'申办人身份证正面:'
,
required
:
true
,
slot
:
'idCardFront'
,
},
{
field
:
'idCardReverse'
,
label
:
'申办人身份证反面:'
,
required
:
true
,
slot
:
'idCardReverse'
,
},
{
field
:
'name'
,
label
:
'申办人姓名:'
,
required
:
true
,
slot
:
'name'
,
},
{
field
:
'idNo'
,
label
:
'申办人身份证号码:'
,
required
:
true
,
slot
:
'idNo'
,
},
{
field
:
'phone'
,
label
:
'申办人电话:'
,
component
:
'Input'
,
componentProps
:
{
placeholder
:
'请输入申办人电话'
,
},
required
:
true
,
},
{
field
:
'doc'
,
slot
:
'doc'
,
required
:
true
,
},
{
field
:
'letter'
,
slot
:
'letter'
,
required
:
true
,
},
];
src/views/personalCenter/enterpriseCertification/ecData.ts
0 → 100644
View file @
f0bef114
export
const
identityOptions
=
[
{
label
:
'数据买家'
,
value
:
'数据买家'
,
},
{
label
:
'数据卖家'
,
value
:
'数据卖家'
,
},
];
export
const
typeOptions
=
[
{
label
:
'授权代表'
,
value
:
'授权代表'
,
},
{
label
:
'法人本人'
,
value
:
'法人本人'
,
},
];
src/views/personalCenter/enterpriseCertification/index.vue
0 → 100644
View file @
f0bef114
This diff is collapsed.
Click to expand it.
src/views/personalCenter/personalInformation/index.vue
0 → 100644
View file @
f0bef114
<
template
>
</
template
>
<
script
>
export
default
{
name
:
"index"
}
</
script
>
<
style
scoped
>
</
style
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment