Compare commits

..

No commits in common. "48e885e07faca45b1998eae15a985bac195895ae" and "af5189756086bb7d5abe11f67ff77f23f288980c" have entirely different histories.

3 changed files with 7 additions and 47 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 432 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

View File

@ -1,25 +1,7 @@
<template>
<div class="container">
<div class="top">
<img src="../../../src/assets/images/public/img.png" alt="" />
</div>
<div class="main">
<div class="submissionWasSuccessful" style="display: none">
<img
src="../../../src/assets/images/public/ok.png"
alt=""
width="60%"
/>
<div class="text">提交成功</div>
</div>
<el-form
ref="formRef"
:model="form"
label-width="auto"
:rules="rules"
style=""
>
<el-form ref="formRef" :model="form" label-width="auto" :rules="rules">
<el-form-item label="姓名">
<el-input v-model="form.name" />
</el-form-item>
@ -100,42 +82,20 @@ const degree_options = [
</script>
<style scoped lang="scss">
.container {
background: #0075ff;
background: #0a7dfe;
padding: 20px;
width: 100vw;
height: 100vh;
.top {
width: 100%;
img {
width: 100%;
}
}
.main {
width: 95%;
padding: 50px 20px;
box-sizing: border-box;
width: 100%;
background: #ffffff;
border-radius: 20px;
margin: 0 auto;
margin-top: -2px;
height: calc(100vh - 300px);
border-radius: 20px 20px 4px 4px;
padding: 20px;
margin-top: 200px;
}
.submit_btn {
width: 100%;
background: #0a7dfe;
height: 40px;
font-size: 16px;
}
.submissionWasSuccessful {
width: 100%;
text-align: center;
margin-top: 100px;
.text {
font-size: 20px;
font-weight: bold;
color: #333333;
margin-top: 10px;
}
}
}
</style>