123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483 |
- <template>
- <div class="page">
- <el-header v-if="$route.meta.isAuth">
- <img src="./assets/img/sclogo3.png" alt="">
- <div class="homeExitContent">
- <div>袁一鸣</div>
- <div class="homeExit" @click="homeExit">退出</div>
- </div>
- </el-header>
- <router-view></router-view>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods:{
- homeExit(){
- this.$router.push('/login')
- }
- }
- }
- </script>
- <style lang="less">
- *{
- margin: 0;
- padding: 0;
- }
- html,body{
- height: 100%;
- width: 100%;
- overflow:hidden ;
- }
- .textArea{
- font-size: 16px !important;
- }
- .page{ //app最基础页面
- height: 100%;
- width: 100%;
- background: #e6eaf0;
- img{
- height: 40px;
- }
- .el-header { //顶部退出区域
- background-color: #3d67bc;
- color: #333;
- text-align: center;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .homeExitContent{
- color: #fff;
- display: flex;
- justify-content: space-between;
- width: 150px;
- .homeExit{
- background: #ffffff;
- color: #000;
- cursor: pointer;
- width: 90px;
- }
- }
- }
- }
- hr{ //hr横线
- border: none;
- height: 1px;
- width: 100%;
- margin: 5px 0px 10px 0px;
- background: #ccc;
- }
- .pAHeader{ //一级页面一级标题
- width: 100%;
- display: flex;
- height: 35px;
- justify-content: space-between;
- margin-bottom: 15px;
- position: relative;
- .pAHeader1{
- font-weight: 600;
- font-size: 22px;
- text-align: left;
- }
- [type='button']{
- background: #0e72e6 !important;
- color: #fff !important;
- position: absolute;
- top:-10px;
- right: 0;
- display: flex;
- font-size: 16px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- [type='button']:hover{
- background: #3b85d9 !important;
- }
- }
- .vfpHeader{ //二级页面一级标题
- width: 100%;
- display: flex;
- justify-content:flex-start;
- margin-bottom: 15px;
- position: relative;
- .titleOne{
- text-align: left;
- font-weight: 600;
- font-size: 22px;
- flex-shrink: 0;
- }
- .smallTitle{
- position: absolute;
- top: 8px;
- left: 160px;
- font-size: 16px;
- }
- [type='button']{
- background: #0e72e6 !important;
- color: #fff !important;
- display: flex;
- position: absolute;
- top: -3px;
- right: 0;
- justify-content: center;
- font-size: 16px;
- width: 100px;
- height: 30px;
- align-items: center;
- }
- }
- .tabTit{ //二级页面二级标题
- width: 100%;
- font-size: 18px;
- font-weight:bold;
- margin-top: 20px;
- height: 29px;
- margin-bottom: 15px;
- display: flex;
- text-align: end;
- position: relative;
- justify-content: space-between;
- div{
- position: relative;
- p{
- position: absolute;
- width: 200px;
- text-align: left;
- left: 0;
- bottom: 0;
- }
- }
- [type='button']{
- background: #0e72e6 !important;
- color: #fff !important;
- display: flex;
- position: absolute;
- right: 0;
- justify-content: center;
- font-size: 16px;
- width: 100px;
- height: 30px;
- align-items: center;
- }
- }
- .fontSize{ //所有表格字体大小
- margin-top: 15px;
- font-size: 16px !important;
- .operations{ //所有表格按钮栏
- flex-shrink: 0;
- [type='button']{
- font-size: 14px;
- }
- }
- }
- // 滚动条样式
- .core_dialogue {
- height: 100%;
- overflow: scroll;
- }
- .core_dialogue::-webkit-scrollbar-track-piece {
- background-color: #f8f8f800;
- }
- .core_dialogue::-webkit-scrollbar {
- width: 6px;
- transition: all 2s;
- }
- .core_dialogue::-webkit-scrollbar-thumb {
- background-color: #929292;
- border-radius: 100px;
- }
- .core_dialogue::-webkit-scrollbar-thumb:hover {
- background-color: #bbb;
- }
- .core_dialogue::-webkit-scrollbar-corner {
- background-color: rgba(255, 255, 255, 0);
- }
- .select{ //活动申请填写信息区域
- width: 100%;
- box-sizing: border-box;
- .label{ //label标签
- min-width: 98px;
- margin-right: 5px;
- display: inline-block;
- text-align: justify;
- text-justify:distribute-all-lines;
- text-align-last: justify;
- transform: translate(0,22%);
- padding-right: 15px;
- font-size: 16px;
- }
- .inpBlock{ //一个个输入框小方块
- display: flex;
- margin-bottom: 15px;
- }
- .selectTop{
- width: 64.3%;
- display: flex;
- }
- .selectMid{
- display: flex;
- margin-top: 20px;
- .selectLeft{
- width: 30%;
- display: flex;
- flex-direction: column;
- margin-right: 70px;
-
- }
- .selectRight{
- width: 29%;
- height: 150px;
- display: flex;
- flex-direction: column;
- }
-
- }
- }
- .AppBar{ //横行的跳转导航栏
- display: flex;
- margin-top: 15px;
- margin-bottom: 20px;
- div{
- // width: 110px;
- cursor: pointer;
- font-weight: 550;
- font-size: 18px;
- margin-right: 20px;
- position: relative;
- }
- .AppBarActive::after{
- content: "";
- position: absolute;
- width: 100%;
- height: 4px;
- left: 0;
- top: 28px;
- border-radius: 2px;
- background: #2a7ea9;
- }
- // .pr1TitBass{
- // margin-top: 2px;
- // height: 4px;
- // border-radius: 2px;
- // width: 100%;
- // background: #2a7ea9;
- // }
- }
- .addMoneyBtn{ //自定义写的的添加框
- width: 120px;
- cursor: pointer;
- height: 40px;
- border: #000 1px dashed;
- border-radius: 5px;
- margin: 18px 10px 30px;
- display: flex;
- justify-content: center;
- line-height: 40px;
- font-size: 16px;
- .jia{
- border-radius: 50%;
- border: 1.5px #ccc solid;
- font-size: 25px;
- line-height: 26px;
- font-weight: 10;
- margin-top: 6px;
- margin-right: 5px;
- height: 27px;
- width: 27px;
- color: #ccc;
- }
- }
- .baseBtn{ //所有页面底部按钮框
- width: 100%;
- display: flex;
- justify-content: flex-end;
- margin: 30px 0;
- .blockWidth{
- display: flex;
- justify-content:space-between;
- [type='button']{
- background: #409eff !important;
- color: #fff !important;
- display: flex;
- justify-content: center;
- font-size: 16px;
- width: 120px;
- margin-left: 20px;
- height: 40px;
- align-items: center;
- }
- }
- }
- .twoStyle{ //左边两边对齐,右边靠右的靠右样式资金管理页面里的
- display: flex !important;
- justify-content: flex-end;
- }
- .AddMember{ //添加对话框
- .el-input__inner{
- width: 300px;
- }
- .el-dialog{
- width: 600px;
- border-radius: 5px;
- overflow: hidden;
- }
- .el-dialog__body{
- display: flex;
- align-items: center;
- flex-direction: column;
- }
-
- .el-dialog__header{
- background: #32455b;
- text-align: center;
- }
- .el-dialog__title{
- color: #fff;
- position: relative;
- top: -5px;
- font-size: 18px;
- }
- .littleBlock{ //添加对话框 label和input框
- display: flex;
- width: 70%;
- margin-top: 20px;
- .dialogLabel{ //label
- max-width: 60px;
- min-width: 65px;
- font-size: 16px;
- margin-right: 10px;
- display: inline-block;
- text-align: justify;
- text-justify:distribute-all-lines;
- text-align-last: justify;
- transform: translate(0,22%);
- }
- }
- .footer{
- width: 100%;
- display: flex;
- justify-content: center;
- [type="button"]{
- width: 150px;
- height: 35px;
- font-size: 16px;
- }
- }
- }
- .selects{ //一级页面搜索框,不包含项目管理、成果展示
- width: 100%;
- margin-top: 20px;
- display: flex;
- flex-wrap: wrap;
- margin-bottom: 20px;
- .selectsBlock{
- display: flex;
- margin-right: 30px;
- margin-bottom: 20px;
- }
- .selectLabel{
- width: 64px;
- font-size: 16px;
- margin-right: 10px;
- display: inline-block;
- font-weight:bolder;
- text-align: justify;
- text-justify:distribute-all-lines;
- text-align-last: justify;
- transform: translate(0,22%);
- }
- }
- .selectInp{// 一级页面搜索框 项目管理、成果展示
- display: flex;
- justify-content: space-between;
- margin-top: 20px;
- position: relative;
- width: 99%;
- .manageSelects{
- display: flex;
- flex-wrap: wrap;
- width: 80%;
- .selectsBlock{
- display: flex;
- margin-right: 30px;
- margin-bottom: 20px;
- }
- .selectLabel{
- width: 64px;
- font-size: 16px;
- margin-right: 10px;
- display: inline-block;
- font-weight:bolder;
- text-align: justify;
- text-justify:distribute-all-lines;
- text-align-last: justify;
- transform: translate(0,22%);
- }
- }
- .ProjectManagementQuery{
- display: flex;
- position: absolute;
- right: 0;
- .btn{
- font-size: 16px;
- margin-left: 10px;
- background: #2268bc;
- }
- }
- }
- .twoSelectInp{ //一级页面搜索框 创业公司登记、消息提示
- width: 100%;
- display: flex;
- justify-content: space-between;
- margin-top: 20px;
- margin-bottom: 10px;
- .selectTwo{
- display: flex;
- flex-wrap: wrap;
- width: 80%;
- .selectsBlock{
- margin-bottom: 5px;
- .btn2{
- font-size: 14px;
- margin-left: 10px;
- background: #2268bc;
- }
- }
- }
- }
-
- </style>
|