App.vue 17 KB

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