Commit 0decba7a authored by LiXuyang's avatar LiXuyang

企业认证

parent e7cc1364
...@@ -183,13 +183,28 @@ ...@@ -183,13 +183,28 @@
</template> </template>
</BasicForm> </BasicForm>
</div> </div>
<Divider />
<div class="footer-button">
<div class="agreement">
<Checkbox v-model:checked="checkedAgree" />
<div style="line-height: 22px">
我已同意注册平台的
<a type="link" @click="handleAgreement">《认证服务协议》</a>
<a type="link" @click="handleAgreement">《合作协议》</a>
</div>
</div>
<div class="agree-bg">
<a-button class="button" type="primary">提交认证</a-button>
<a-button class="button">保存</a-button>
</div>
</div>
</div> </div>
</PageWrapper> </PageWrapper>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import { PageWrapper } from '@/components/Page'; import { PageWrapper } from '@/components/Page';
import { CheckboxGroup, Divider, UploadDragger, Input, RadioGroup } from 'ant-design-vue'; import { CheckboxGroup, Divider, UploadDragger, Input, RadioGroup, Checkbox } from 'ant-design-vue';
import { identityOptions, typeOptions } from './ecData'; import { identityOptions, typeOptions } from './ecData';
import { ApiOutlined, PlusOutlined } from '@ant-design/icons-vue'; import { ApiOutlined, PlusOutlined } from '@ant-design/icons-vue';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
...@@ -206,6 +221,7 @@ ...@@ -206,6 +221,7 @@
const router = useRouter(); const router = useRouter();
const { createMessage } = useMessage(); const { createMessage } = useMessage();
// 参数 // 参数
const checkedAgree = ref(false);
const licenseList = ref([]); const licenseList = ref([]);
/** /**
* 方法 * 方法
...@@ -219,6 +235,9 @@ ...@@ -219,6 +235,9 @@
function handleDownTemp() { function handleDownTemp() {
createMessage.success('下载成功!'); createMessage.success('下载成功!');
} }
function handleAgreement() {
createMessage.success('下载成功!');
}
/** /**
* form * form
*/ */
...@@ -337,6 +356,26 @@ ...@@ -337,6 +356,26 @@
margin-right: 5px; /* 星号和文本之间的间距 */ margin-right: 5px; /* 星号和文本之间的间距 */
} }
} }
.footer-button {
display: flex;
flex-direction: column;
gap: 15px;
align-items: center;
.agreement {
display: flex;
gap: 10px;
}
.agree-bg {
display: flex;
gap: 10px;
margin-bottom: 30px;
.button {
height: 40px;
width: 160px;
font-size: 16px;
}
}
}
} }
.title { .title {
font-size: 20px; font-size: 20px;
......
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