App.vue 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434
  1. <template>
  2. <div class="page">
  3. <el-header v-if="$route.meta.isAuth">
  4. <img src="./assets/img/sclogo3.png" alt="">
  5. <div class="homeExitContent">
  6. <div>袁一鸣</div>
  7. <div class="homeExit" @click="homeExit">退出</div>
  8. </div>
  9. </el-header>
  10. <router-view></router-view>
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. methods:{
  20. homeExit(){
  21. this.$router.push('/login')
  22. }
  23. }
  24. }
  25. </script>
  26. <style lang="less">
  27. *{
  28. margin: 0;
  29. padding: 0;
  30. }
  31. html,body{
  32. height: 100%;
  33. width: 100%;
  34. overflow:hidden ;
  35. }
  36. .page{ //app最基础页面
  37. height: 100%;
  38. width: 100%;
  39. background: #e6eaf0;
  40. img{
  41. height: 40px;
  42. }
  43. .el-header { //顶部退出区域
  44. background-color: #3d67bc;
  45. color: #333;
  46. text-align: center;
  47. display: flex;
  48. justify-content: space-between;
  49. align-items: center;
  50. .homeExitContent{
  51. color: #fff;
  52. display: flex;
  53. justify-content: space-between;
  54. width: 150px;
  55. .homeExit{
  56. background: #ffffff;
  57. color: #000;
  58. cursor: pointer;
  59. width: 90px;
  60. }
  61. }
  62. }
  63. }
  64. hr{ //hr横线
  65. border: none;
  66. height: 1px;
  67. width: 100%;
  68. margin: 5px 0px 10px 0px;
  69. background: #ccc;
  70. }
  71. .pAHeader{ //一级页面一级标题
  72. width: 100%;
  73. overflow: hidden;
  74. display: flex;
  75. height: 35px;
  76. justify-content: space-between;
  77. margin-bottom: 15px;
  78. .pAHeader1{
  79. font-weight: 600;
  80. font-size: 22px;
  81. text-align: left;
  82. }
  83. [type='button']{
  84. background: #0e72e6 !important;
  85. color: #fff !important;
  86. display: flex;
  87. font-size: 14px;
  88. align-items: center;
  89. }
  90. [type='button']:hover{
  91. background: #3b85d9 !important;
  92. }
  93. }
  94. .pA1Header{ //二级页面一级标题
  95. width: 90%;
  96. display: flex;
  97. height: 35px;
  98. justify-content:space-between;
  99. margin-bottom: 15px;
  100. .pAHeader1{
  101. text-align: left;
  102. font-weight: 600;
  103. font-size: 22px;
  104. flex-shrink: 0;
  105. }
  106. .pAHeader1STit{
  107. font-size: 16px;
  108. margin-top: 10px;
  109. margin-left: 15px;
  110. }
  111. }
  112. .tabTit{ //二级页面二级标题
  113. width: 100%;
  114. font-size: 18px;
  115. font-weight:bold;
  116. margin-top: 20px;
  117. margin-bottom: 13px;
  118. display: flex;
  119. justify-content: space-between;
  120. [type='button']{
  121. background: #0e72e6 !important;
  122. color: #fff !important;
  123. display: flex;
  124. justify-content: center;
  125. font-size: 16px;
  126. width: 100px;
  127. height: 30px;
  128. align-items: center;
  129. }
  130. }
  131. .fontSize{ //所有表格字体大小
  132. margin-top: 15px;
  133. font-size: 16px !important;
  134. .operations{ //所有表格按钮栏
  135. flex-shrink: 0;
  136. [type='button']{
  137. font-size: 14px;
  138. }
  139. }
  140. }
  141. // 滚动条样式
  142. .core_dialogue {
  143. height: 100%;
  144. overflow: scroll;
  145. }
  146. .core_dialogue::-webkit-scrollbar-track-piece {
  147. background-color: #f8f8f800;
  148. }
  149. .core_dialogue::-webkit-scrollbar {
  150. width: 6px;
  151. transition: all 2s;
  152. }
  153. .core_dialogue::-webkit-scrollbar-thumb {
  154. background-color: #929292;
  155. border-radius: 100px;
  156. }
  157. .core_dialogue::-webkit-scrollbar-thumb:hover {
  158. background-color: #bbb;
  159. }
  160. .core_dialogue::-webkit-scrollbar-corner {
  161. background-color: rgba(255, 255, 255, 0);
  162. }
  163. .select{ //活动申请填写信息区域
  164. width: 100%;
  165. box-sizing: border-box;
  166. .label{ //label标签
  167. min-width: 98px;
  168. margin-right: 5px;
  169. display: inline-block;
  170. text-align: justify;
  171. text-justify:distribute-all-lines;
  172. text-align-last: justify;
  173. transform: translate(0,22%);
  174. padding-right: 15px;
  175. font-size: 16px;
  176. }
  177. .inpBlock{ //一个个输入框小方块
  178. display: flex;
  179. margin-bottom: 15px;
  180. }
  181. .selectTop{
  182. width: 60%;
  183. display: flex;
  184. }
  185. .selectMid{
  186. display: flex;
  187. margin-top: 20px;
  188. .selectLeft{
  189. width: 30%;
  190. display: flex;
  191. flex-direction: column;
  192. margin-right: 70px;
  193. }
  194. .selectRight{
  195. width: 25%;
  196. height: 150px;
  197. display: flex;
  198. flex-direction: column;
  199. }
  200. }
  201. }
  202. .AppBar{ //横行的跳转导航栏
  203. display: flex;
  204. margin-top: 15px;
  205. margin-bottom: 20px;
  206. div{
  207. width: 110px;
  208. cursor: pointer;
  209. font-weight: 550;
  210. font-size: 18px;
  211. }
  212. .pr1TitBass{
  213. margin-top: 2px;
  214. height: 4px;
  215. border-radius: 2px;
  216. width: 100%;
  217. background: #2a7ea9;
  218. }
  219. }
  220. .addMoneyBtn{ //自定义写的的添加框
  221. width: 120px;
  222. height: 40px;
  223. border: #000 1px dashed;
  224. border-radius: 5px;
  225. margin: 18px 10px 30px;
  226. display: flex;
  227. justify-content: center;
  228. line-height: 40px;
  229. font-size: 16px;
  230. .jia{
  231. border-radius: 50%;
  232. border: 1.5px #ccc solid;
  233. font-size: 25px;
  234. line-height: 26px;
  235. font-weight: 10;
  236. margin-top: 6px;
  237. margin-right: 5px;
  238. height: 27px;
  239. width: 27px;
  240. color: #ccc;
  241. }
  242. }
  243. .baseBtn{ //所有页面底部按钮框
  244. width: 98%;
  245. display: flex;
  246. justify-content: flex-end;
  247. margin: 30px 0;
  248. .blockWidth{
  249. display: flex;
  250. justify-content:space-between;
  251. width: 210px;
  252. [type='button']{
  253. background: #409eff !important;
  254. color: #fff !important;
  255. display: flex;
  256. justify-content: center;
  257. font-size: 16px;
  258. width: 120px;
  259. height: 40px;
  260. align-items: center;
  261. }
  262. }
  263. }
  264. .twoStyle{ //左边两边对齐,右边靠右的靠右样式资金管理页面里的
  265. display: flex !important;
  266. justify-content: flex-end;
  267. }
  268. .AddMember{ //添加对话框
  269. .el-input__inner{
  270. width: 300px;
  271. }
  272. .el-dialog{
  273. width: 600px;
  274. border-radius: 5px;
  275. overflow: hidden;
  276. }
  277. .el-dialog__body{
  278. display: flex;
  279. align-items: center;
  280. flex-direction: column;
  281. }
  282. .el-dialog__header{
  283. background: #32455b;
  284. text-align: center;
  285. }
  286. .el-dialog__title{
  287. color: #fff;
  288. position: relative;
  289. top: -5px;
  290. font-size: 18px;
  291. }
  292. .littleBlock{ //添加对话框 label和input框
  293. display: flex;
  294. width: 70%;
  295. margin-top: 20px;
  296. .dialogLabel{ //label
  297. max-width: 60px;
  298. min-width: 65px;
  299. font-size: 16px;
  300. margin-right: 10px;
  301. display: inline-block;
  302. text-align: justify;
  303. text-justify:distribute-all-lines;
  304. text-align-last: justify;
  305. transform: translate(0,22%);
  306. }
  307. }
  308. .footer{
  309. width: 100%;
  310. display: flex;
  311. justify-content: center;
  312. [type="button"]{
  313. width: 150px;
  314. height: 35px;
  315. font-size: 16px;
  316. }
  317. }
  318. }
  319. .selects{ //一级页面搜索框,不包含项目管理、成果展示
  320. width: 100%;
  321. margin-top: 20px;
  322. display: flex;
  323. flex-wrap: wrap;
  324. margin-bottom: 20px;
  325. .selectsBlock{
  326. display: flex;
  327. margin-right: 30px;
  328. margin-bottom: 20px;
  329. }
  330. .selectLabel{
  331. width: 64px;
  332. font-size: 16px;
  333. margin-right: 10px;
  334. display: inline-block;
  335. font-weight:bolder;
  336. text-align: justify;
  337. text-justify:distribute-all-lines;
  338. text-align-last: justify;
  339. transform: translate(0,22%);
  340. }
  341. }
  342. .selectInp{// 一级页面搜索框 项目管理、成果展示
  343. display: flex;
  344. justify-content: space-between;
  345. margin-top: 20px;
  346. position: relative;
  347. width: 99%;
  348. .manageSelects{
  349. display: flex;
  350. flex-wrap: wrap;
  351. width: 80%;
  352. .selectsBlock{
  353. display: flex;
  354. margin-right: 30px;
  355. margin-bottom: 20px;
  356. }
  357. .selectLabel{
  358. width: 64px;
  359. font-size: 16px;
  360. margin-right: 10px;
  361. display: inline-block;
  362. font-weight:bolder;
  363. text-align: justify;
  364. text-justify:distribute-all-lines;
  365. text-align-last: justify;
  366. transform: translate(0,22%);
  367. }
  368. }
  369. .ProjectManagementQuery{
  370. display: flex;
  371. position: absolute;
  372. right: 0;
  373. .btn{
  374. font-size: 16px;
  375. margin-left: 10px;
  376. background: #2268bc;
  377. }
  378. }
  379. }
  380. .twoSelectInp{ //一级页面搜索框 创业公司登记、消息提示
  381. width: 100%;
  382. display: flex;
  383. justify-content: space-between;
  384. margin-top: 20px;
  385. margin-bottom: 10px;
  386. .selectTwo{
  387. display: flex;
  388. flex-wrap: wrap;
  389. width: 80%;
  390. .selectsBlock{
  391. margin-bottom: 5px;
  392. .btn2{
  393. font-size: 14px;
  394. margin-left: 10px;
  395. background: #2268bc;
  396. }
  397. }
  398. }
  399. }
  400. </style>