wangqing 4 years ago
parent
commit
e7b5d77461
  1. 1820
      src/assets/images/official/background.svg
  2. 2
      src/views/account/login/index.vue
  3. 108
      src/views/form/preview/ProjectForm.vue

1820
src/assets/images/official/background.svg

File diff suppressed because it is too large

After

Width:  |  Height:  |  Size: 137 KiB

2
src/views/account/login/index.vue

@ -1,7 +1,7 @@
<template> <template>
<div class="login-container"> <div class="login-container">
<div class="logo-banner"> <div class="logo-banner">
<img src="https://qiniu.smileyi.top/logo_banner.png"> <img src="@/assets/images/logo_banner.png">
</div> </div>
<div class="logo-content"> <div class="logo-content">
<span class="hello">Hello </span> <span class="hello">Hello </span>

108
src/views/form/preview/ProjectForm.vue

@ -215,8 +215,8 @@ export default {
this.perPageFields = perPageFields this.perPageFields = perPageFields
}, },
/** /**
* 处理逻辑显示数据 * 处理逻辑显示数据
*/ */
logicShowTriggerHandle(logicItem) { logicShowTriggerHandle(logicItem) {
if (!logicItem) { if (!logicItem) {
return return
@ -270,68 +270,76 @@ export default {
<style lang="scss"> <style lang="scss">
.project-form { .project-form {
margin: 15px auto; margin: 15px auto;
width: 800px; width: 800px;
padding: 15px; padding: 15px;
background-repeat: repeat; background-repeat: repeat;
background-color: rgba(229, 239, 247, 0.87); background-color: rgba(229, 239, 247, 0.87);
} }
.project-body::-webkit-scrollbar { .project-body::-webkit-scrollbar {
width: 0 !important; width: 0 !important;
background: transparent; background: transparent;
} }
.project-body { .project-body {
-ms-overflow-style: none; -ms-overflow-style: none;
overflow: -moz-scrollbars-none; overflow: -moz-scrollbars-none;
} }
.logo-img { .logo-img {
max-height: 120px; max-height: 120px;
} }
.submit-btn-form-item { .submit-btn-form-item {
text-align: left; text-align: left;
} }
.submit-btn-form-item button { .submit-btn-form-item button {
width: 20%; width: 20%;
} }
@media screen and (max-width: 750px) { @media screen and (max-width: 750px) {
.project-form { .project-form {
margin: 0; margin: 0;
width: 100% !important; width: 100% !important;
background-color: white; background-color: white;
} }
.logo-img { .logo-img {
max-height: 2.94rem; max-height: 2.94rem;
} }
.submit-btn-form-item { .submit-btn-form-item {
text-align: center; text-align: center;
} }
.submit-btn-form-item button { .submit-btn-form-item button {
width: 80%; width: 80%;
} }
}
@media screen and (max-width: 500px) {
.el-message {
min-width: 300px !important;
}
}
@media screen and (max-width: 500px) {
.el-message-box {
width: 300px !important;
}
} }
@media screen and (max-width: 500px) { @media screen and (max-width: 500px) {
.el-dialog__wrapper .el-dialog { .el-message {
width: 300px !important; min-width: 300px !important;
.el-dialog__body { }
padding: 10px 20px !important; .el-message-box {
.el-form-item__label { width: 300px !important;
width: 68px !important; }
} //!
//.el-select, //.el-date-range-picker__content{
//.el-input { // float: none!important;
// width: 180px !important; // width: 100% !important;
} //}
//} //#
.el-dialog__wrapper .el-dialog {
width: 300px !important;
.el-dialog__body {
padding: 10px 20px !important;
.el-form-item__label {
width: 68px !important;
}
} }
}
} }
</style> </style>

Loading…
Cancel
Save