mainView.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <style>
  2. .mainBG {
  3. background-image: url('./assets/images/mainBG.png');
  4. background-size: 100%;
  5. background-repeat: no-repeat;
  6. }
  7. .mainWidth {
  8. width: 1000px;
  9. margin: 0 auto;
  10. }
  11. .mainHead {
  12. height: 84px;
  13. }
  14. /* .headDiv-1 {
  15. height: 84px;
  16. display: inline-block;
  17. }
  18. .headDiv-2 {
  19. height: 84px;
  20. display: inline-block;
  21. line-height: 84px;
  22. font-size: 18px;
  23. color: rgba(26, 68, 108, 1);
  24. }
  25. .headDiv-2>div {
  26. border-left: 1px solid rgba(151, 151, 151, 1);
  27. } */
  28. .head-img {
  29. height: 84px;
  30. vertical-align: middle;
  31. }
  32. .headDiv-1 {
  33. position: absolute;
  34. height: 38px;
  35. line-height: 38px;
  36. font-size: 18px;
  37. color: rgba(26, 68, 108, 1);
  38. /* border-left: 1px solid #979797; */
  39. padding-left: 10px;
  40. top: 23px;
  41. /* left: 260px; */
  42. }
  43. .mainNavigate {
  44. background-color: rgba(26, 61, 100, 1);
  45. /* height: 50px; */
  46. padding-top: 8px;
  47. padding-bottom: 8px;
  48. }
  49. .navigateItem {
  50. display: inline-block;
  51. width: 103px;
  52. height: 34px;
  53. line-height: 34px;
  54. text-align: center;
  55. font-size: 16px;
  56. color: rgba(255, 255, 255, 1);
  57. cursor: pointer;
  58. }
  59. .navigateItemActive {
  60. background-color: rgba(103, 125, 154, 1);
  61. border-radius: 17px;
  62. }
  63. .mainBody {
  64. /* min-height: 580px; */
  65. padding-top: 20px;
  66. padding-bottom: 20px;
  67. }
  68. .mainFoot {
  69. background-image: url('./assets/images/footer_lines_bg.png');
  70. background-color: #163961;
  71. }
  72. </style>
  73. <alert-bar class="alert_bar" message="tipService.message" type="tipService.type" title="tipService.title"></alert-bar>
  74. <div class="mainBG">
  75. <div class="mainHead mainWidth" style="position: relative;">
  76. <!-- <img class="head-img" src="./assets/images/head_logo.png"> -->
  77. <div class="headDiv-1">
  78. <span class="">网络与计算中心自助服务平台</span>
  79. </div>
  80. </div>
  81. <div class="mainNavigate">
  82. <!-- <a type="button" style="float: right;padding:5px" ng-click="logoutnav()">登出</div> -->
  83. <div class="mainWidth">
  84. <a ng-href="{{item.url}}" ng-repeat="item in nevigateList">
  85. <div class="navigateItem" ng-class="{'navigateItemActive':item.active}" ng-click="nevigateClick(item.name)">
  86. <span class="">{{item.name}}</span>
  87. </div>
  88. </a>
  89. </div>
  90. </div>
  91. <div class="mainBody mainWidth">
  92. <div ui-view></div>
  93. </div>
  94. <div class="mainFoot">
  95. <div class="mainWidth">
  96. <table width="100%" border="0" cellpadding="0" cellspacing="0">
  97. <tr>
  98. <td height="100" align="center">
  99. <table width="1000" border="0" cellspacing="0" cellpadding="0">
  100. <tr>
  101. <td height="30" class="copy">武汉理工大学 Copyright (C) 2018</td>
  102. </tr>
  103. <tr>
  104. <td>
  105. <hr>
  106. </td>
  107. </tr>
  108. <tr>
  109. <td height="30" class="copy">主管:网络与信息化办公室 技术支持:网络与计算中心 </td>
  110. </tr>
  111. </table>
  112. </td>
  113. </tr>
  114. </table>
  115. </div>
  116. </div>
  117. </div>
  118. <!-- <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#163961">
  119. <tr>
  120. <td height="5" align="center" bgcolor="#FFFFFF"></td>
  121. </tr>
  122. <tr>
  123. <td height="100" align="center" background="assets/images/footer_lines_bg.png">
  124. <table width="1000" border="0" cellspacing="0" cellpadding="0">
  125. <tr>
  126. <td height="30" class="copy">武汉理工大学 Copyright (C) 2017</td>
  127. </tr>
  128. <tr>
  129. <td>
  130. <hr>
  131. </td>
  132. </tr>
  133. <tr>
  134. <td height="30" class="copy">主管:网络与信息化办公室 技术支持:网络与计算中心 </td>
  135. </tr>
  136. </table>
  137. </td>
  138. </tr>
  139. </table> -->