fadd
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
<div class="certification-reviews-page">
|
<div class="certification-reviews-page">
|
||||||
<div class="page-header">
|
<div class="page-header">
|
||||||
<h1 class="page-title">企业审核</h1>
|
<h1 class="page-title">企业审核</h1>
|
||||||
<p class="page-subtitle">审核用户提交的企业信息;通过后由用户选择签署平台(e签宝/法大大)再继续认证</p>
|
<p class="page-subtitle">审核用户提交的企业信息;通过后由用户选择签署平台(法大大)再继续认证</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="toolbar">
|
<div class="toolbar">
|
||||||
|
|||||||
@@ -44,7 +44,8 @@ const submitting = ref(false)
|
|||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
try {
|
try {
|
||||||
const res = await certificationApi.getSignPlatforms()
|
const res = await certificationApi.getSignPlatforms()
|
||||||
platforms.value = res?.data?.platforms || []
|
// 前端暂时只开放法大大,隐藏 e签宝
|
||||||
|
platforms.value = (res?.data?.platforms || []).filter((p) => p.platform === 'fadada')
|
||||||
if (platforms.value.length === 1) {
|
if (platforms.value.length === 1) {
|
||||||
selected.value = platforms.value[0].platform
|
selected.value = platforms.value[0].platform
|
||||||
}
|
}
|
||||||
@@ -96,8 +97,10 @@ async function confirm() {
|
|||||||
|
|
||||||
.platform-select__grid {
|
.platform-select__grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
grid-template-columns: minmax(0, 1fr);
|
||||||
gap: 16px;
|
gap: 16px;
|
||||||
|
max-width: 360px;
|
||||||
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.platform-card {
|
.platform-card {
|
||||||
|
|||||||
@@ -168,7 +168,7 @@ const certificationSteps = [
|
|||||||
{
|
{
|
||||||
key: 'platform_select',
|
key: 'platform_select',
|
||||||
title: '选择平台',
|
title: '选择平台',
|
||||||
description: '选择 e签宝 或法大大',
|
description: '选择签署平台(法大大)',
|
||||||
icon: DocumentTextIcon,
|
icon: DocumentTextIcon,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user