移动端
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

110 satır
2.8 KiB

  1. <template>
  2. <div class="home_wrapper">
  3. <div class="header_main">
  4. 案件分布
  5. <div class="return_btn" @click="onClickLeft"></div>
  6. </div>
  7. <div style="height: 58px;"></div>
  8. <div class="tab">
  9. <van-dropdown-menu active-color="#1989fa">
  10. <van-dropdown-item v-model="value1" :options="option1" />
  11. <van-dropdown-item v-model="value2" :options="option2" />
  12. </van-dropdown-menu>
  13. </div>
  14. </div>
  15. </template>
  16. <script>
  17. import { financePublicList,openRemove } from "@/api/sunVillage_info/fixedAssets";
  18. import Cookies from "js-cookie";
  19. import request from '@/utils/request'
  20. import * as echarts from 'echarts';
  21. export default {
  22. name: "caseAllocation",
  23. data() {
  24. return {
  25. value1: 0,
  26. value2: 'a',
  27. option1: [
  28. { text: '2022', value: 0 },
  29. { text: '2021', value: 1 },
  30. { text: '2020', value: 2 },
  31. ],
  32. option2: [
  33. { text: '全部', value: 'a' },
  34. { text: '羊亭镇', value: 'b' },
  35. { text: '张村镇', value: 'c' },
  36. { text: '桥头镇', value: 'd' },
  37. { text: '温泉镇', value: 'e' },
  38. ],
  39. };
  40. },
  41. created() {
  42. },
  43. mounted(){
  44. },
  45. methods: {
  46. },
  47. }
  48. </script>
  49. <style scoped lang="scss">
  50. .home_wrapper{
  51. background: #e9e9e9;
  52. min-height: 100vh;
  53. width: 100vw;
  54. padding: 0 ;
  55. background: url('../../../../static/images/lawEnforcement/new/map.png') no-repeat 27%;
  56. background-size: auto 100%;
  57. .header_main{
  58. height: 116px;
  59. background: url('../../../../static/images/lawEnforcement/new/list_head.png') no-repeat;
  60. background-size: 100% 100%;
  61. position: fixed;
  62. top: 0;
  63. left: 0;
  64. width: 100%;
  65. font-size: 36px;
  66. line-height: 116px;
  67. text-align: center;
  68. color: #fff;
  69. z-index: 999;
  70. .return_btn{
  71. width: 24px;
  72. height: 43.2px;
  73. background: url('../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat;
  74. background-size: 20px 36px;
  75. position: absolute;
  76. left: 38px;
  77. top: 36px;
  78. }
  79. .add_btn{
  80. width: 56.4px;
  81. height: 40.8px;
  82. background: url('../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat;
  83. background-size: 47px 34px;
  84. position: absolute;
  85. right: 38px;
  86. top: 36px;
  87. }
  88. }
  89. }
  90. .tab{
  91. width: 94%;
  92. position: absolute;
  93. top: 130px;
  94. left: 3%;
  95. border-radius: 8PX;
  96. overflow: hidden;
  97. /deep/ .van-dropdown-item__content{
  98. width: 94%;
  99. left: 3%;
  100. border-bottom-left-radius: 8PX;
  101. border-bottom-right-radius: 8PX;
  102. }
  103. }
  104. </style>