Home.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. <template>
  2. <div class="home">
  3. <el-container class="container">
  4. <el-header class="header" style="height: 60px;">
  5. <div>
  6. <div class="logo">
  7. <!-- <img src="../assets/image/logo.jpg">-->
  8. <h3>全国收费公路通行费电子发票后台管理系统</h3>
  9. </div>
  10. <div class="message">
  11. <div class="theUser"><span class="el-icon-user-solid"></span>{{name}}</div>
  12. <!-- <div class="theUser"><span class="el-icon-s-custom" style="font-size: 18px;"></span></div> -->
  13. <div class="theUser" @click="Logout"><span class="el-icon-s-unfold"></span>退出登录</div>
  14. </div>
  15. </div>
  16. </el-header>
  17. <el-main class="main" style="">
  18. <div style="height:100%;">
  19. <div class="leftNav">
  20. <template>
  21. <template v-if="roleId == 1">
  22. <el-menu
  23. :default-active="$route.path"
  24. unique-opened
  25. router
  26. background-color="#22a2d4"
  27. active-text-color="#ffd04b"
  28. style="height: 100%">
  29. <el-menu-item index="/main" >
  30. <i class="el-icon-s-tools"></i>
  31. <span slot="title">首页</span>
  32. </el-menu-item>
  33. <el-submenu
  34. v-for="item in menus"
  35. :key="item.id"
  36. :index="item.id + ''">
  37. <template slot="title">
  38. <i class="el-icon-s-tools" style="font-size: 14px color: #fff;"></i>
  39. <span>{{ item.authName }}</span>
  40. </template>
  41. <el-menu-item
  42. v-for="item1 in item.children"
  43. :key="item1.id"
  44. :index="'/' + item1.path">
  45. <i class="el-icon-search" style="font-size: 14px color: #fff;"></i>
  46. {{ item1.authName }}
  47. </el-menu-item>
  48. </el-submenu>
  49. </el-menu>
  50. </template>
  51. <template v-if="roleId == 2">
  52. <el-menu
  53. :default-active="$route.path"
  54. unique-opened
  55. router
  56. background-color="#22a2d4"
  57. active-text-color="#ffd04b"
  58. style="height: 100%">
  59. <el-menu-item index="/main">
  60. <i class="el-icon-s-tools"></i>
  61. <span slot="title">首页</span>
  62. </el-menu-item>
  63. <el-menu-item index="/personal" >
  64. <i class="el-icon-s-tools"></i>
  65. <span slot="title">个人中心</span>
  66. </el-menu-item>
  67. <!-- <el-menu-item index="/consumption">
  68. <i class="el-icon-s-tools"></i>
  69. <span slot="title">消费统计</span>
  70. </el-menu-item> -->
  71. <el-submenu
  72. v-for="item in menu"
  73. :key="item.id"
  74. :index="item.id + ''">
  75. <template slot="title">
  76. <i class="el-icon-s-tools" style="font-size: 14px color: #fff;"></i>
  77. <span>{{ item.authName }}</span>
  78. </template>
  79. <el-menu-item
  80. v-for="item1 in item.children"
  81. :key="item1.id"
  82. :index="'/' + item1.path">
  83. <i class="el-icon-search" style="font-size: 14px color: #fff;"></i>
  84. {{ item1.authName }}
  85. </el-menu-item>
  86. </el-submenu>
  87. </el-menu>
  88. </template>
  89. <template v-if="roleId == 3">
  90. <el-menu
  91. :default-active="$route.path"
  92. unique-opened
  93. router
  94. background-color="#22a2d4"
  95. active-text-color="#ffd04b"
  96. style="height: 100%">
  97. <el-menu-item index="/main" >
  98. <i class="el-icon-s-tools"></i>
  99. <span slot="title">首页</span>
  100. </el-menu-item>
  101. <el-menu-item index="/personal" >
  102. <i class="el-icon-s-tools"></i>
  103. <span slot="title">个人中心</span>
  104. </el-menu-item>
  105. <el-submenu
  106. v-for="item in menuList"
  107. :key="item.id"
  108. :index="item.id + ''">
  109. <template slot="title">
  110. <i class="el-icon-s-tools" style="font-size: 14px color: #fff;"></i>
  111. <span>{{ item.authName }}</span>
  112. </template>
  113. <el-menu-item
  114. v-for="item1 in item.children"
  115. :key="item1.id"
  116. :index="'/' + item1.path">
  117. <i class="el-icon-search" style="font-size: 14px color: #fff;"></i>
  118. {{ item1.authName }}
  119. </el-menu-item>
  120. </el-submenu>
  121. </el-menu>
  122. </template>
  123. </template>
  124. </div>
  125. <div class="rightNav">
  126. <router-view></router-view>
  127. </div>
  128. </div>
  129. </el-main>
  130. </el-container>
  131. </div>
  132. </template>
  133. <script>
  134. export default {
  135. data() {
  136. return {
  137. menus: [
  138. {
  139. id:2,
  140. authName:"用户管理",
  141. children:[
  142. {
  143. id:1,
  144. path:"user",
  145. authName:"用户列表"
  146. },
  147. ]
  148. },
  149. {
  150. id: 3,
  151. authName:"客户管理",
  152. children:[
  153. {
  154. id:1,
  155. path:"customer",
  156. authName:"客户管理"
  157. },{
  158. id:2,
  159. path:"customerRecharge",
  160. authName:"充值记录"
  161. },{
  162. id:3,
  163. path:"custRecTime",
  164. authName:"备案预警查询"
  165. },{
  166. id:4,
  167. path:"custRecMoney",
  168. authName:"余额预警查询"
  169. }
  170. ]
  171. },
  172. {
  173. id: 4,
  174. authName:"无车管理",
  175. children:[
  176. {
  177. id:8,
  178. path:"nocarRec",
  179. authName:"车辆备案"
  180. },{
  181. id:2,
  182. path:"billway",
  183. authName:"运单查询"
  184. },{
  185. id:3,
  186. path:"billwayException",
  187. authName:"异常运单"
  188. },{
  189. id:4,
  190. path:"nocarInvoice",
  191. authName:"发票查询"
  192. },{
  193. id:5,
  194. path:"hcInvoice",
  195. authName:"红冲发票查询"
  196. }
  197. ]
  198. },{
  199. id: 5,
  200. authName:"自有车管理",
  201. children:[
  202. {
  203. id:1,
  204. path:"selfcarRec",
  205. authName:"ETC备案"
  206. },{
  207. id:2,
  208. path:"selfCarTrade",
  209. authName:"交易查询"
  210. },{
  211. id:3,
  212. path:"selfCarTradeException",
  213. authName:"异常交易查询"
  214. },{
  215. id:4,
  216. path:"selfInvoice",
  217. authName:"发票查询"
  218. }
  219. ]
  220. },{
  221. id: 6,
  222. authName:"计费管理",
  223. children:[
  224. {
  225. id:1,
  226. path:"SelfCalculateInfo",
  227. authName:"自有车计费查询"
  228. },
  229. {
  230. id:2,
  231. path:"noCarCalculateInfo",
  232. authName:"无车计费查询"
  233. }
  234. ]
  235. },{
  236. id: 7,
  237. authName:"参数管理",
  238. children:[
  239. {
  240. id:1,
  241. path:"paramMagager",
  242. authName:"参数管理"
  243. }
  244. ]
  245. }
  246. ],
  247. roleId: '',
  248. userName: '',
  249. name: ''
  250. };
  251. },
  252. components: {
  253. },
  254. beforeCreate() {
  255. // 判断是否登录,token
  256. var token = sessionStorage.getItem('token');
  257. if (!token) {
  258. // 提示
  259. this.$message.warning('请先登录');
  260. // 没有token,跳转到登录页面
  261. this.$router.push('/login');
  262. }
  263. },
  264. created() {
  265. this.roleId = sessionStorage.getItem('roleId');
  266. this.name = sessionStorage.getItem('name');
  267. },
  268. mounted () {
  269. },
  270. methods: {
  271. // 退出登录
  272. Logout() {
  273. // 提示退出成功
  274. this.$message.success('退出成功');
  275. // 1 清除token
  276. sessionStorage.clear();
  277. // 2 跳转到登录页面
  278. this.$router.push('/login');
  279. },
  280. }
  281. };
  282. </script>
  283. <style>
  284. .home {
  285. height: 100%;
  286. width: 100%;
  287. font-size: 1px;
  288. }
  289. .home .container {
  290. height: 100%;
  291. background: -webkit-linear-gradient(top, #289dfa , #fff);
  292. background: -o-linear-gradient(bottom, #289dfa , #fff);
  293. background: -moz-linear-gradient(bottom, #289dfa, #fff);
  294. background: linear-gradient(to bottom, #289dfa , #fff);
  295. }
  296. .home .header {
  297. height: 130px;
  298. }
  299. .home .header > div {
  300. overflow: hidden;
  301. }
  302. .home .header .logo {
  303. float: left;
  304. margin-top: 15px;
  305. margin-left: 20px;
  306. }
  307. .home .header img {
  308. height: 40px;
  309. width: 40px;
  310. }
  311. .home .header h3 {
  312. display: inline-block;
  313. font-size: 30px;
  314. color: #fff;
  315. margin-left: 10px;
  316. }
  317. .home .header .message {
  318. float: right;
  319. margin-top: 20px;
  320. margin-right: 35px;
  321. background-color: #d3e7f9;
  322. overflow: hidden;
  323. }
  324. .home .header .message .theUser {
  325. float: left;
  326. height: 40px;
  327. line-height: 40px;
  328. width: 100px;
  329. font-size: 16px;
  330. text-align: center;
  331. cursor:pointer;
  332. }
  333. .home .main {
  334. margin: 5px;
  335. height:100%;
  336. overflow: hidden;
  337. background-color: #fff;
  338. }
  339. .home .el-menu {
  340. border: 0;
  341. }
  342. .home .el-submenu__title i{
  343. color: #fff;
  344. font-size: 16px;
  345. }
  346. .home .el-menu-item {
  347. color: #fff;
  348. font-size: 16px;
  349. }
  350. .home .el-menu-item i{
  351. color: #fff;
  352. font-size: 16px;
  353. }
  354. .home .el-menu span {
  355. font-size: 16px;
  356. }
  357. .home .main .leftNav {
  358. width: 18%;
  359. float: left;
  360. overflow-y: scroll;
  361. height: 100%;
  362. }
  363. .home .main .rightNav {
  364. margin-left: 2%;
  365. width: 80%;
  366. float: left;
  367. }
  368. .el-message {
  369. font-size: 35px !important;
  370. }
  371. .el-submenu__title {
  372. color: #fff !important;
  373. }
  374. </style>