App.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639
  1. <template>
  2. <div class="page core_dialogue">
  3. <el-header v-if="$route.meta.isAuth">
  4. <img src="./assets/img/sclogo4.png" alt="">
  5. <!-- <img src="@/assets/img/szjsxy.png" alt=""> -->
  6. <div class="homeExitContent">
  7. <div>{{ $store.state.userInfo.tname }}</div>
  8. <div class="homeExit" @click="homeExit">退出</div>
  9. </div>
  10. </el-header>
  11. <router-view ></router-view>
  12. </div>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. }
  19. },
  20. methods:{
  21. homeExit(){
  22. this.$router.push('/login')
  23. }
  24. }
  25. }
  26. </script>
  27. <style lang="less">
  28. *{
  29. margin: 0;
  30. padding: 0;
  31. }
  32. html,body{
  33. height: 100%;
  34. width: 100%;
  35. overflow:hidden ;
  36. }
  37. .textArea{
  38. font-size: 16px !important;
  39. }
  40. .page{ //app最基础页面
  41. height: 100%;
  42. width: 100%;
  43. background: #e6eaf0;
  44. img{
  45. height: 60px;
  46. }
  47. .el-header { //顶部退出区域
  48. background-color: #3d67bc;
  49. color: #333;
  50. text-align: center;
  51. display: flex;
  52. justify-content: space-between;
  53. align-items: center;
  54. min-height: 70px;
  55. .homeExitContent{
  56. color: #fff;
  57. display: flex;
  58. justify-content:flex-end;
  59. width: 300px;
  60. .homeExit{
  61. background: #ffffff;
  62. color: #000;
  63. cursor: pointer;
  64. margin-left: 15px;
  65. width: 90px;
  66. }
  67. }
  68. }
  69. }
  70. hr{ //hr横线
  71. border: none;
  72. height: 1px;
  73. width: 100%;
  74. margin: 0px 0px 10px 0px;
  75. background: #ccc;
  76. }
  77. .pAHeader{ //一级页面一级标题
  78. width: 100%;
  79. display: flex;
  80. height: 35px;
  81. justify-content: space-between;
  82. margin-bottom: 15px;
  83. .pAHeader1{
  84. font-weight: 600;
  85. font-size: 26px;
  86. text-align: left;
  87. }
  88. [type='button']{
  89. background: #0e72e6 !important;
  90. color: #fff !important;
  91. display: flex;
  92. font-size: 16px;
  93. display: flex;
  94. border-radius: 5px;
  95. justify-content: center;
  96. align-items: center;
  97. }
  98. [type='button']:hover{
  99. background: #3b85d9 !important;
  100. }
  101. }
  102. .vfpHeader{ //二级页面一级标题
  103. width: 100%;
  104. display: flex;
  105. justify-content:flex-start;
  106. margin-bottom: 15px;
  107. position: relative;
  108. .titleOne{
  109. text-align: left;
  110. font-weight: 600;
  111. font-size: 22px;
  112. flex-shrink: 0;
  113. }
  114. .smallTitle{
  115. position: absolute;
  116. top: 8px;
  117. left: 160px;
  118. font-size: 16px;
  119. }
  120. [type='button']{
  121. background: #0e72e6 !important;
  122. color: #fff !important;
  123. display: flex;
  124. position: absolute;
  125. top: -8px;
  126. right: 0;
  127. border-radius: 5px;
  128. box-sizing: border-box;
  129. padding: 9px 0;
  130. justify-content: center;
  131. font-size: 16px;
  132. width: 100px;
  133. align-items: center;
  134. }
  135. }
  136. .tabTit{ //二级页面二级标题
  137. width: 100%;
  138. font-size: 18px;
  139. font-weight:bold;
  140. margin-top: 20px;
  141. height: 29px;
  142. margin-bottom: 15px;
  143. display: flex;
  144. text-align: end;
  145. border-radius: 5px;
  146. position: relative;
  147. justify-content: space-between;
  148. div{
  149. position: relative;
  150. p{
  151. position: absolute;
  152. width: 200px;
  153. text-align: left;
  154. left: 0;
  155. bottom: 0;
  156. }
  157. }
  158. [type='button']{
  159. color: #fff !important;
  160. display: flex;
  161. position: absolute;
  162. right: 0;
  163. top: -8px;
  164. box-sizing: border-box;
  165. padding: 9px 0;
  166. justify-content: center;
  167. font-size: 16px;
  168. width: 100px;
  169. border-radius: 5px;
  170. align-items: center;
  171. }
  172. }
  173. // 滚动条样式
  174. .core_dialogue {
  175. height: 100%;
  176. overflow: overlay !important;
  177. }
  178. .core_dialogue::-webkit-scrollbar-track-piece {
  179. background-color: #f8f8f800;
  180. }
  181. .core_dialogue::-webkit-scrollbar {
  182. width: 6px;
  183. transition: all 2s;
  184. }
  185. .core_dialogue::-webkit-scrollbar-thumb {
  186. background-color: #929292;
  187. border-radius: 100px;
  188. }
  189. .core_dialogue::-webkit-scrollbar-thumb:hover {
  190. background-color: #bbb;
  191. }
  192. .core_dialogue::-webkit-scrollbar-corner {
  193. background-color: rgba(255, 255, 255, 0);
  194. }
  195. // .core_dialogue::-webkit-scrollbar {
  196. // /*滚动条整体样式*/
  197. // width: 6px;
  198. // /*高宽分别对应横竖滚动条的尺寸*/
  199. // height: 6px;
  200. // }
  201. // /*定义滚动条轨道 内阴影+圆角*/
  202. // .core_dialogue::-webkit-scrollbar {
  203. // border-radius: 10px;
  204. // background-color: #b8bdc9;
  205. // }
  206. // /*定义滑块 内阴影+圆角*/
  207. // .core_dialogue::-webkit-scrollbar-thumb {
  208. // border-radius: 10px;
  209. // -webkit-box-shadow: inset 0 0 6px rgb(96, 125, 184);
  210. // background-color: #2c5ab3;
  211. // }
  212. .select{ //活动申请填写信息区域
  213. width: 100%;
  214. box-sizing: border-box;
  215. margin-top: 30px;
  216. // margin-bottom: 8px;
  217. .label{ //label标签
  218. min-width: 98px;
  219. margin-right: 5px;
  220. display: inline-block;
  221. text-align: justify;
  222. text-justify:distribute-all-lines;
  223. text-align-last: justify;
  224. transform: translate(0,22%);
  225. padding-right: 15px;
  226. font-size: 16px;
  227. }
  228. .inpBlock{ //一个个输入框小方块
  229. display: flex;
  230. margin-bottom: 15px;
  231. position: relative;
  232. input::-webkit-outer-spin-button,
  233. input::-webkit-inner-spin-button {
  234. -webkit-appearance: none !important;
  235. }
  236. input[type='number'] {
  237. -moz-appearance: textfield;
  238. }
  239. }
  240. .selectTop{
  241. width: 86%;
  242. display: flex;
  243. }
  244. .selectMid{
  245. display: flex;
  246. margin-top: 16px;
  247. .selectLeft{
  248. width: 40%;
  249. display: flex;
  250. flex-direction: column;
  251. margin-right: 70px;
  252. // align-items: center;
  253. }
  254. .selectRight{
  255. width: 40%;
  256. height: 150px;
  257. display: flex;
  258. flex-direction: column;
  259. .el-cascader{
  260. width: 100%;
  261. }
  262. }
  263. }
  264. }
  265. .AppBar{ //横行的跳转导航栏
  266. display: flex;
  267. margin-top: 15px;
  268. margin-bottom: 20px;
  269. div{
  270. // width: 110px;
  271. cursor: pointer;
  272. font-weight: 550;
  273. font-size: 18px;
  274. margin-right: 30px;
  275. position: relative;
  276. }
  277. .AppBarActive::after{
  278. content: "";
  279. position: absolute;
  280. width: 100%;
  281. height: 4px;
  282. left: 0;
  283. top: 28px;
  284. border-radius: 2px;
  285. background: #2a7ea9;
  286. }
  287. // .pr1TitBass{
  288. // margin-top: 2px;
  289. // height: 4px;
  290. // border-radius: 2px;
  291. // width: 100%;
  292. // background: #2a7ea9;
  293. // }
  294. }
  295. .addMoneyBtn{ //自定义写的的添加框
  296. width: 120px;
  297. cursor: pointer;
  298. height: 40px;
  299. border: #000 1px dashed;
  300. border-radius: 5px;
  301. margin: 18px 10px 30px;
  302. display: flex;
  303. justify-content: center;
  304. line-height: 40px;
  305. font-size: 16px;
  306. position: relative;
  307. .jia{
  308. border-radius: 50%;
  309. border: 1.5px #ccc solid;
  310. font-size: 25px;
  311. line-height: 26px;
  312. font-weight: 10;
  313. display: flex;
  314. justify-content: center;
  315. margin-top: 6px;
  316. margin-right: 5px;
  317. height: 27px;
  318. width: 27px;
  319. color: #ccc;
  320. }
  321. #upFile{
  322. position: absolute;
  323. width: 100%;
  324. height: 100%;
  325. transform: scale(1.1,1.1);
  326. opacity: 0;
  327. }
  328. }
  329. .baseBtn{ //所有页面底部按钮框
  330. width:100%;
  331. display: flex;
  332. justify-content: flex-end;
  333. margin: 10px 0;
  334. margin-top: 30px;
  335. .blockWidth{
  336. display: flex;
  337. justify-content:space-between;
  338. [type='button']{
  339. background: #409eff !important;
  340. color: #fff !important;
  341. display: flex;
  342. justify-content: center;
  343. font-size: 16px;
  344. width: 120px;
  345. margin-left: 20px;
  346. height: 40px;
  347. align-items: center;
  348. }
  349. }
  350. }
  351. .twoStyle{ //左边两边对齐,右边靠右的靠右样式资金管理页面里的
  352. display: flex !important;
  353. justify-content: flex-end;
  354. }
  355. .AddMember{ //添加对话框只包括三个input框的
  356. .el-input__inner{
  357. width: 300px;
  358. }
  359. .el-dialog{
  360. width: 600px;
  361. border-radius: 5px;
  362. overflow: hidden;
  363. }
  364. .el-dialog__body{
  365. display: flex;
  366. align-items: center;
  367. flex-direction: column;
  368. }
  369. .el-dialog__header{
  370. background: #32455b;
  371. text-align: center;
  372. }
  373. .el-dialog__title{
  374. color: #fff;
  375. position: relative;
  376. top: -2px;
  377. font-size: 18px;
  378. }
  379. .littleBlock{ //添加对话框 label和input框
  380. display: flex;
  381. width: 70%;
  382. margin: 10px;
  383. .dialogLabel{ //label
  384. max-width: 60px;
  385. min-width: 65px;
  386. font-size: 16px;
  387. margin-right: 10px;
  388. display: inline-block;
  389. text-align: justify;
  390. text-justify:distribute-all-lines;
  391. text-align-last: justify;
  392. transform: translate(0,22%);
  393. }
  394. }
  395. .el-dialog__footer{
  396. padding-top: 0;
  397. }
  398. .footer{
  399. width: 100%;
  400. display: flex;
  401. justify-content: center;
  402. [type="button"]{
  403. font-size: 16px;
  404. }
  405. }
  406. }
  407. .selects{ //一级页面搜索框,不包含项目管理、成果展示
  408. width: 100%;
  409. margin-top: 20px;
  410. display: flex;
  411. flex-wrap: wrap;
  412. margin-bottom: 20px 0 10px;
  413. .selectsBlock{
  414. display: flex;
  415. margin-right: 30px;
  416. margin-bottom: 20px;
  417. }
  418. .selectLabel{
  419. width: 64px;
  420. font-size: 16px;
  421. margin-right: 10px;
  422. display: inline-block;
  423. font-weight:bolder;
  424. text-align: justify;
  425. text-justify:distribute-all-lines;
  426. text-align-last: justify;
  427. transform: translate(0,22%);
  428. }
  429. }
  430. .selectInp{// 一级页面搜索框 项目管理、成果展示
  431. display: flex;
  432. justify-content: space-between;
  433. margin-top: 20px;
  434. position: relative;
  435. width: 99%;
  436. .manageSelects{
  437. display: flex;
  438. flex-wrap: wrap;
  439. width: 80%;
  440. .selectsBlock{
  441. display: flex;
  442. margin-right: 30px;
  443. margin-bottom: 20px;
  444. }
  445. .selectLabel{
  446. width: 64px;
  447. font-size: 16px;
  448. margin-right: 10px;
  449. display: inline-block;
  450. font-weight:bolder;
  451. text-align: justify;
  452. text-justify:distribute-all-lines;
  453. text-align-last: justify;
  454. transform: translate(0,22%);
  455. }
  456. }
  457. .ProjectManagementQuery{
  458. display: flex;
  459. position: absolute;
  460. right: 0;
  461. .btn{
  462. font-size: 16px;
  463. margin-left: 10px;
  464. background: #2268bc;
  465. }
  466. }
  467. }
  468. .twoSelectInp{ //一级页面搜索框 创业公司登记、消息提示
  469. width: 100%;
  470. display: flex;
  471. justify-content: space-between;
  472. margin-top: 20px;
  473. margin-bottom: 10px;
  474. .selectTwo{
  475. display: flex;
  476. flex-wrap: wrap;
  477. width: 80%;
  478. .selectsBlock{
  479. margin-bottom: 5px;
  480. .btn2{
  481. font-size: 14px;
  482. margin-left: 10px;
  483. background: #2268bc;
  484. }
  485. }
  486. }
  487. }
  488. .inputNumber{ //输入框只能数字
  489. /* 普通IE浏览器 样式清除 */
  490. input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{
  491. -webkit-appearance: none !important;
  492. }
  493. /* 火狐浏览器样式清除 */
  494. input[type="number"]{
  495. -moz-appearance:textfield;
  496. }
  497. }
  498. .fontSize{ //所有表格字体大小
  499. margin-top: 15px;
  500. // margin-bottom: 60px;
  501. font-size: 16px !important;
  502. .operations{ //所有表格按钮栏
  503. flex-shrink: 0;
  504. [type='button']{
  505. font-size: 14px;
  506. border-radius: 5px;
  507. }
  508. }
  509. }
  510. .paginations{ //分页栏
  511. position: relative;
  512. display: flex;
  513. justify-content: flex-end;
  514. margin: 20px 50px 0 0;
  515. right: 30px;
  516. bottom: 0;
  517. }
  518. .AllDialogBtn{ //所有对话框按钮
  519. width: 120px;
  520. font-size: 16px !important;
  521. }
  522. .showFileArea { //在线查看文档内容居中
  523. width: 100%;
  524. height: 70vh;
  525. display: flex;
  526. justify-content: center;
  527. }
  528. .pageSubmitData{
  529. .el-dialog__header{
  530. display: flex;
  531. justify-content: center;
  532. }
  533. .el-dialog{
  534. border-radius: 5px;
  535. overflow: hidden;
  536. top: 10%;
  537. }
  538. .deleteContent{
  539. width: 100%;
  540. text-align: center;
  541. font-size: 22px;
  542. color: #000;
  543. }
  544. .addDialogLogo{
  545. width: 60px;
  546. height: 30px;
  547. border-radius: 5px;
  548. display: flex;
  549. justify-content: center;
  550. line-height: 30px;
  551. background: #f2f2f2;
  552. position: absolute;
  553. left: 20px; top: 15px;
  554. }
  555. .el-dialog__header{
  556. background: #32455b;
  557. }
  558. .el-dialog__title{
  559. color:#fff;
  560. display: flex;
  561. justify-content: center;
  562. font-size: 18px;
  563. position: relative;
  564. top: -2px;
  565. }
  566. .addDialogMid{
  567. box-sizing: border-box;
  568. padding:0 60px 0 10px;
  569. .addDialogTit{
  570. display: flex;
  571. span{
  572. width: 80px;
  573. line-height: 40px;
  574. text-align: left;
  575. }
  576. }
  577. .addDialogTit1{
  578. display: flex;
  579. justify-content: space-between;
  580. margin-bottom: 15px;
  581. }
  582. .addDialogTit2{
  583. margin-top: 10px;
  584. font-size: 18px;
  585. color: #000;
  586. text-indent: 2em;
  587. }
  588. .addDialogCon{
  589. margin-top: 20px;
  590. }
  591. }
  592. .dialog-footer{
  593. display: flex;
  594. justify-content: center;
  595. // .btn5{
  596. // height: 40px;
  597. // font-size: 16px;
  598. // background: #0e72e6;
  599. // width: 200px;
  600. // }
  601. }
  602. }
  603. </style>