index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. <template>
  2. <div class="dashboard-editor-container">
  3. <div class="mtitle">
  4. 早上好,管理员!
  5. <iframe
  6. allowtransparency="true"
  7. frameborder="0"
  8. width="180"
  9. height="36"
  10. scrolling="no"
  11. style="padding-top: 10px"
  12. src="//tianqi.2345.com/plugin/widget/index.htm?s=3&z=2&t=0&v=0&d=2&bd=0&k=&f=#545555&ltf=#545555&htf=ffffff&q=1&e=1&a=1&c=72036&w=180&h=36&align=center"
  13. ></iframe>
  14. </div>
  15. <!-- <div class="cbox">-->
  16. <!-- <div class="ctitle">各保税区综合评分概况</div>-->
  17. <!-- <div class="rows">-->
  18. <!-- <div class="row">-->
  19. <!-- <div class="out">-->
  20. <!-- <div class="int">-->
  21. <!-- <span class="icon" style="background-color: rgba(37, 97, 239, 1)">&#xe6e0;</span>-->
  22. <!-- <div class="num">80</div>-->
  23. <!-- <div class="desc">南宁综合保税区</div>-->
  24. <!-- </div>-->
  25. <!-- </div>-->
  26. <!-- </div>-->
  27. <!-- <div class="row">-->
  28. <!-- <div class="out">-->
  29. <!-- <div class="int">-->
  30. <!-- <span class="icon" style="background-color: rgba(102, 110, 232, 1)">&#xe6e0;</span>-->
  31. <!-- <div class="num">80</div>-->
  32. <!-- <div class="desc">钦州综合保税区</div>-->
  33. <!-- </div>-->
  34. <!-- </div>-->
  35. <!-- </div>-->
  36. <!-- <div class="row">-->
  37. <!-- <div class="out">-->
  38. <!-- <div class="int">-->
  39. <!-- <span class="icon" style="background-color: rgba(61, 212, 167, 1)">&#xe6e0;</span>-->
  40. <!-- <div class="num">80</div>-->
  41. <!-- <div class="desc">北海综合保税区</div>-->
  42. <!-- </div>-->
  43. <!-- </div>-->
  44. <!-- </div>-->
  45. <!-- <div class="row">-->
  46. <!-- <div class="out">-->
  47. <!-- <div class="int">-->
  48. <!-- <span class="icon" style="background-color: rgba(250, 116, 107, 1)">&#xe6e0;</span>-->
  49. <!-- <div class="num">80</div>-->
  50. <!-- <div class="desc">凭祥综合保税区</div>-->
  51. <!-- </div>-->
  52. <!-- </div>-->
  53. <!-- </div>-->
  54. <!-- <div class="row">-->
  55. <!-- <div class="out">-->
  56. <!-- <div class="int">-->
  57. <!-- <span class="icon" style="background-color: rgba(253, 219, 120, 1)">&#xe6e0;</span>-->
  58. <!-- <div class="num">80</div>-->
  59. <!-- <div class="desc">梧州综合保税区</div>-->
  60. <!-- </div>-->
  61. <!-- </div>-->
  62. <!-- </div>-->
  63. <!-- </div>-->
  64. <!-- </div>-->
  65. <div class="row" style="width: 40%; float: left; margin-top: 15px">
  66. <div class="cbox">
  67. <div class="lable">快捷入口</div>
  68. <div class="menu" v-for="(item, index) in topMenus" @click="handleSelect(item)">
  69. <div class="out">
  70. <div class="int">
  71. <div class="icon"><svg-icon :icon-class="item.meta.icon" /></div>
  72. <div class="desc omit">{{ item.meta.title }}</div>
  73. </div>
  74. </div>
  75. </div>
  76. </div>
  77. </div>
  78. <div class="row" style="width: 60%; float: left; margin-top: 15px; padding-left: 20px">
  79. <div class="cbox">
  80. <div class="lable">2023年广西综合保税区进出口总值(亿元)</div>
  81. <BarChart :chartData="chartData.bar" tag="(亿元)" style="width: 100%"></BarChart>
  82. </div>
  83. </div>
  84. <div class="row" style="width: 25%; float: left; margin-top: 15px">
  85. <div class="cbox">
  86. <div class="lable omit">各综合保税区进出口总值占比(%)</div>
  87. <PieChart
  88. :chartData="[
  89. { name: '凭祥', value: 716.33 },
  90. { name: '钦州', value: 265.73 },
  91. { name: '南宁', value: 215.48 },
  92. { name: '北海', value: 34.49 },
  93. { name: '梧州', value: 0 }
  94. ]"
  95. ></PieChart>
  96. </div>
  97. </div>
  98. <div class="row" style="width: 25%; float: left; padding-left: 15px; margin-top: 15px">
  99. <div class="cbox">
  100. <div class="lable omit">各综合保税区加工贸易进出口值占比(%)</div>
  101. <PieChart
  102. :chartData="[
  103. { name: '南宁', value: 140.09 },
  104. { name: '北海', value: 31.17 },
  105. { name: '梧州', value: 0.3 },
  106. { name: '钦州', value: 10.06 },
  107. { name: '凭祥', value: '2' }
  108. ]"
  109. tag="亿"
  110. ></PieChart>
  111. </div>
  112. </div>
  113. <div class="row" style="width: 25%; float: left; padding-left: 15px; margin-top: 15px">
  114. <div class="cbox">
  115. <div class="lable omit">各综合保税区物流货物进出口值占比(%)</div>
  116. <PieChart
  117. :chartData="[
  118. { name: '南宁', value: 28.82 },
  119. { name: '北海', value: 0.91 },
  120. { name: '梧州', value: 1 },
  121. { name: '钦州', value: 227.36 },
  122. { name: '凭祥', value: 708.94 }
  123. ]"
  124. ></PieChart>
  125. </div>
  126. </div>
  127. <div class="row" style="width: 25%; float: left; padding-left: 15px; margin-top: 15px">
  128. <div class="cbox">
  129. <div class="lable omit">各综合保税区一般贸易进出口值占比(%)</div>
  130. <PieChart
  131. :chartData="[
  132. { name: '南宁', value: 46.55 },
  133. { name: '北海', value: 2.39 },
  134. { name: '梧州', value: 2 },
  135. { name: '钦州', value: 28.3 },
  136. { name: '凭祥', value: 7.2 }
  137. ]"
  138. ></PieChart>
  139. </div>
  140. </div>
  141. </div>
  142. </template>
  143. <script>
  144. import PanelGroup from './dashboard/PanelGroup';
  145. import LineChart from './dashboard/LineChart';
  146. import RaddarChart from './dashboard/RaddarChart';
  147. import PieChart from './dashboard/PieChart';
  148. import BarChart from './dashboard/BarChart';
  149. import { constantRoutes } from '@/router';
  150. export default {
  151. name: 'Index',
  152. components: {
  153. PanelGroup,
  154. LineChart,
  155. RaddarChart,
  156. PieChart,
  157. BarChart
  158. },
  159. data() {
  160. return {
  161. chartData: {
  162. bar: [
  163. { name: '凭祥', value: 716.33 },
  164. { name: '钦州', value: 265.73 },
  165. { name: '南宁', value: 215.48 },
  166. { name: '北海', value: 34.49 },
  167. { name: '梧州', value: 0 }
  168. ],
  169. pie: [
  170. { name: '南宁保税区', value: '1' },
  171. { name: '北海保税区', value: '2' },
  172. { name: '梧州保税区', value: '2' },
  173. { name: '钦州保税区', value: '2' },
  174. { name: '凭祥保税区', value: '2' }
  175. ]
  176. }
  177. };
  178. },
  179. computed: {
  180. theme() {
  181. return this.$store.state.settings.theme;
  182. },
  183. // 顶部显示菜单
  184. topMenus() {
  185. let topMenus = [];
  186. this.routers.map(menu => {
  187. if (menu.hidden !== true) {
  188. // 兼容顶部栏一级菜单内部跳转
  189. if (menu.path === '/') {
  190. topMenus.push(menu.children[0]);
  191. } else {
  192. topMenus.push(menu);
  193. }
  194. }
  195. });
  196. return topMenus.slice(0, 9);
  197. },
  198. // 所有的路由信息
  199. routers() {
  200. return this.$store.state.permission.topbarRouters;
  201. },
  202. // 设置子路由
  203. childrenMenus() {
  204. var childrenMenus = [];
  205. this.routers.map(router => {
  206. for (var item in router.children) {
  207. if (router.children[item].parentPath === undefined) {
  208. if (router.path === '/') {
  209. router.children[item].path = '/' + router.children[item].path;
  210. } else {
  211. if (!this.ishttp(router.children[item].path)) {
  212. router.children[item].path = router.path + '/' + router.children[item].path;
  213. }
  214. }
  215. router.children[item].parentPath = router.path;
  216. }
  217. childrenMenus.push(router.children[item]);
  218. }
  219. });
  220. return constantRoutes.concat(childrenMenus);
  221. },
  222. // 默认激活的菜单
  223. activeMenu() {
  224. const path = this.$route.path;
  225. let activePath = path;
  226. if (path !== undefined && path.lastIndexOf('/') > 0 && hideList.indexOf(path) === -1) {
  227. const tmpPath = path.substring(1, path.length);
  228. activePath = '/' + tmpPath.substring(0, tmpPath.indexOf('/'));
  229. this.$store.dispatch('app/toggleSideBarHide', false);
  230. } else if (!this.$route.children) {
  231. activePath = path;
  232. this.$store.dispatch('app/toggleSideBarHide', true);
  233. }
  234. this.activeRoutes(activePath);
  235. return activePath;
  236. }
  237. },
  238. methods: {
  239. // 菜单选择事件
  240. handleSelect(item) {
  241. this.isShowMenu = false;
  242. this.currentIndex = item.path;
  243. let key = item.path;
  244. const route = this.routers.find(item => item.path === key);
  245. if (this.ishttp(key)) {
  246. // http(s):// 路径新窗口打开
  247. window.open(key, '_blank');
  248. } else if (!route || !route.children) {
  249. // 没有子路由路径内部打开
  250. this.$router.push({ path: key });
  251. this.$store.dispatch('app/toggleSideBarHide', true);
  252. } else {
  253. // 显示左侧联动菜单
  254. this.activeRoutes(key);
  255. this.$store.dispatch('app/toggleSideBarHide', false);
  256. }
  257. this.$emit('showHamBurger');
  258. this.$emit('closeMenuHandler');
  259. },
  260. // 当前激活的路由
  261. activeRoutes(key) {
  262. var routes = [];
  263. if (this.childrenMenus && this.childrenMenus.length > 0) {
  264. this.childrenMenus.map(item => {
  265. if (key == item.parentPath || (key == 'index' && '' == item.path)) {
  266. routes.push(item);
  267. }
  268. });
  269. }
  270. if (routes.length > 0) {
  271. this.$store.commit('SET_SIDEBAR_ROUTERS', routes);
  272. }
  273. },
  274. ishttp(url) {
  275. return url.indexOf('http://') !== -1 || url.indexOf('https://') !== -1;
  276. }
  277. }
  278. };
  279. </script>
  280. <style lang="scss" scoped>
  281. .dashboard-editor-container {
  282. padding: 32px;
  283. background-color: rgb(240, 242, 245);
  284. position: relative;
  285. overflow: hidden;
  286. .mtitle {
  287. margin-bottom: 20px;
  288. font-size: 19px;
  289. margin-top: -15px;
  290. }
  291. .cbox {
  292. background-color: white;
  293. border-radius: 8px;
  294. box-shadow: 0px 10px 30px rgba(228, 228, 228, 0.49);
  295. overflow: hidden;
  296. padding: 20px;
  297. .ctitle {
  298. font-weight: 500;
  299. font-size: 21px;
  300. color: #333333;
  301. margin-bottom: 40px;
  302. }
  303. .rows {
  304. .row {
  305. float: left;
  306. width: 20%;
  307. .out {
  308. padding: 10px;
  309. .int {
  310. border: 1px solid #e6e6e6;
  311. text-align: center;
  312. border-radius: 8px;
  313. padding: 30px;
  314. color: #545555;
  315. .icon {
  316. display: block;
  317. width: 45px;
  318. height: 45px;
  319. margin: 0 auto;
  320. border-radius: 12px;
  321. color: white;
  322. margin-top: -56px;
  323. font-size: 20px;
  324. line-height: 42px;
  325. }
  326. .num {
  327. font-size: 30px;
  328. font-weight: bold;
  329. margin-top: 10px;
  330. margin-bottom: 10px;
  331. }
  332. .desc {
  333. font-size: 15px;
  334. }
  335. }
  336. }
  337. }
  338. }
  339. .menu {
  340. float: left;
  341. width: 33.33%;
  342. .out {
  343. padding: 10px;
  344. .int {
  345. padding: 10px 10px 0px 10px;
  346. text-align: center;
  347. cursor: pointer;
  348. .icon {
  349. width: 45px;
  350. height: 45px;
  351. color: white;
  352. border-radius: 12px;
  353. margin: 0 auto;
  354. font-size: 23px;
  355. line-height: 45px;
  356. background-color: rgb(37, 97, 239);
  357. color: white;
  358. }
  359. .desc {
  360. color: #545555;
  361. margin-top: 9px;
  362. font-size: 14px;
  363. }
  364. }
  365. }
  366. }
  367. }
  368. }
  369. </style>