Compare commits
No commits in common. "48e885e07faca45b1998eae15a985bac195895ae" and "af5189756086bb7d5abe11f67ff77f23f288980c" have entirely different histories.
48e885e07f
...
af51897560
Binary file not shown.
Before Width: | Height: | Size: 432 KiB |
Binary file not shown.
Before Width: | Height: | Size: 16 KiB |
|
@ -1,25 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="top">
|
|
||||||
<img src="../../../src/assets/images/public/img.png" alt="" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="main">
|
<div class="main">
|
||||||
<div class="submissionWasSuccessful" style="display: none">
|
<el-form ref="formRef" :model="form" label-width="auto" :rules="rules">
|
||||||
<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-item label="姓名">
|
<el-form-item label="姓名">
|
||||||
<el-input v-model="form.name" />
|
<el-input v-model="form.name" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
@ -100,42 +82,20 @@ const degree_options = [
|
||||||
</script>
|
</script>
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.container {
|
.container {
|
||||||
background: #0075ff;
|
background: #0a7dfe;
|
||||||
|
padding: 20px;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
.top {
|
|
||||||
width: 100%;
|
|
||||||
img {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.main {
|
.main {
|
||||||
width: 95%;
|
width: 100%;
|
||||||
padding: 50px 20px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
border-radius: 20px;
|
border-radius: 20px 20px 4px 4px;
|
||||||
margin: 0 auto;
|
padding: 20px;
|
||||||
margin-top: -2px;
|
margin-top: 200px;
|
||||||
height: calc(100vh - 300px);
|
|
||||||
}
|
}
|
||||||
.submit_btn {
|
.submit_btn {
|
||||||
width: 100%;
|
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>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue