css
parent
af51897560
commit
f6d0ba9742
Binary file not shown.
After Width: | Height: | Size: 434 KiB |
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
|
@ -1,7 +1,17 @@
|
||||||
<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">
|
||||||
<el-form ref="formRef" :model="form" label-width="auto" :rules="rules">
|
<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>
|
||||||
|
@ -82,20 +92,28 @@ const degree_options = [
|
||||||
</script>
|
</script>
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.container {
|
.container {
|
||||||
background: #0a7dfe;
|
background: #0075ff;
|
||||||
padding: 20px;
|
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
.top {
|
||||||
|
width: 100%;
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.main {
|
.main {
|
||||||
width: 100%;
|
width: 95%;
|
||||||
background: #ffffff;
|
|
||||||
border-radius: 20px 20px 4px 4px;
|
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
margin-top: 200px;
|
box-sizing: border-box;
|
||||||
|
background: #ffffff;
|
||||||
|
border-radius: 20px;
|
||||||
|
margin: 0 auto;
|
||||||
|
margin-top: -2px;
|
||||||
}
|
}
|
||||||
.submit_btn {
|
.submit_btn {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
background: #0a7dfe;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue