ComprehensiveMatter.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <template>
  2. <div class='comprehensive-matter'>
  3. <!-- <van-list v-model='loading' :finished='finished' finished-text='加载到底了' @load='onLoad'>
  4. <van-cell v-for='item in list' :key='item' :title='item' />
  5. </van-list>-->
  6. <div class='time'>
  7. <van-button round size='small' :class='active === 0?"active":""' @click='changeTime(0)'>一个月内</van-button>
  8. <van-button round size='small' :class='active === 1?"active":""' @click='changeTime(1)'>半年内</van-button>
  9. <van-button round size='small' :class='active === 2?"active":""' @click='changeTime(2)'>一年内</van-button>
  10. <van-button round size='small' :class='active === 3?"active":""' @click='changeTime(3)'>全部</van-button>
  11. </div>
  12. <div class='main'>
  13. <van-list class='matters-list' v-model='loading' :finished='finished' finished-text='没有更多了' :immediate-check='false' @load='onLoad'>
  14. <div class='container' v-for='(item,index) in 15' :key='index'>
  15. <div class='government-department' v-if='true'>
  16. <van-cell :title='`政府部门${index}`' is-link :value='`${index}项`' @click='goToMattersFetail(item)' />
  17. </div>
  18. <div class='other-department' v-if='index==4'>
  19. <van-cell title='其他' :arrow-direction='arrowDirection' is-link @click='changeOtherShowStatus' />
  20. <div class='other-container' v-show='showOther'>
  21. <van-cell
  22. :title='`自定义其他部门${index}`'
  23. title-class='other-cell'
  24. :value='`${index}项`'
  25. is-link
  26. @click='goToMattersFetail(item)'
  27. />
  28. <van-cell
  29. :title='`自定义其他部门${index}`'
  30. title-class='other-cell'
  31. :value='`${index}项`'
  32. is-link
  33. @click='goToMattersFetail(item)'
  34. />
  35. </div>
  36. </div>
  37. </div>
  38. </van-list>
  39. </div>
  40. </div>
  41. </template>
  42. <script>
  43. /**
  44. * 综合事项
  45. */
  46. import Vue from 'vue'
  47. import { List, Cell, Button } from 'vant'
  48. Vue.use(List).use(Cell).use(Button)
  49. export default {
  50. name: 'ComprehensiveMatter',
  51. props: {},
  52. components: {},
  53. data() {
  54. return {
  55. active: 0,
  56. list: [],
  57. loading: false,
  58. finished: false,
  59. page: 1,
  60. count: 0,
  61. arrowDirection: 'up', //其他 箭头方向
  62. showOther: true,
  63. }
  64. },
  65. beforeMount() {},
  66. mounted() {},
  67. methods: {
  68. /**
  69. * 更改时间
  70. */
  71. changeTime(active) {
  72. this.active = active
  73. },
  74. onLoad() {
  75. // 异步更新数据
  76. // setTimeout 仅做示例,真实场景中一般为 ajax 请求
  77. setTimeout(() => {
  78. for (let i = 0; i < 5; i++) {
  79. this.list.push(this.list.length + 1)
  80. }
  81. // 加载状态结束
  82. this.loading = false
  83. // 数据全部加载完成
  84. if (this.list.length >= 40) {
  85. this.finished = true
  86. }
  87. }, 1000)
  88. },
  89. /**
  90. * 点击其他右侧上下箭头,显隐其他部门
  91. */
  92. changeOtherShowStatus() {
  93. if (this.showOther) {
  94. this.showOther = false
  95. this.arrowDirection = 'down'
  96. } else {
  97. this.showOther = true
  98. this.arrowDirection = 'up'
  99. }
  100. },
  101. /**
  102. * 跳转 列表页面
  103. */
  104. goToMattersFetail(data) {
  105. this.$router.push({ name: 'ComprehensiveMatterList', params: data })
  106. },
  107. },
  108. }
  109. </script>
  110. <style lang='less' scoped>
  111. .comprehensive-matter {
  112. width: 100%;
  113. height: 100%;
  114. background-color: #f5f6f7;
  115. overflow: auto;
  116. // 时间切换按钮
  117. .time {
  118. width: 100%;
  119. height: 60px;
  120. padding: 15px;
  121. display: flex;
  122. justify-content: space-between;
  123. align-items: center;
  124. box-sizing: border-box;
  125. background-color: #f5f6f7;
  126. /deep/ .van-button {
  127. width: 75px;
  128. text-align: center;
  129. font-size: 14px;
  130. font-weight: 400;
  131. color: #333333;
  132. background: #f1f1f1;
  133. border-radius: 16px;
  134. border: 1px solid #dcdcdc;
  135. }
  136. .active {
  137. background-color: #025baa !important;
  138. color: #fff;
  139. }
  140. }
  141. .main {
  142. width: 100%;
  143. height: calc(100% - 60px);
  144. overflow: auto;
  145. font-size: 14px;
  146. font-weight: 400;
  147. color: #333333;
  148. .matters-list {
  149. width: 100%;
  150. background-color: #fff;
  151. overflow: auto;
  152. .container {
  153. width: 100%;
  154. .government-department {
  155. width: 100%;
  156. padding: 0 15px;
  157. }
  158. /deep/ .van-cell {
  159. height: 55px;
  160. border-bottom: 1px solid #e6e6e6;
  161. display: flex;
  162. align-items: center;
  163. padding-left: 0;
  164. padding-right: 0;
  165. .van-cell__title {
  166. font-size: 14px;
  167. font-weight: 400;
  168. color: #333333;
  169. }
  170. }
  171. // 其他部门
  172. .other-department {
  173. width: 100%;
  174. padding: 0 15px;
  175. .other-container {
  176. width: 100%;
  177. padding-left: 15px;
  178. border-bottom: 1px solid #e6e6e6;
  179. /deep/ .van-cell:last-child {
  180. border-bottom: none;
  181. }
  182. }
  183. }
  184. }
  185. }
  186. }
  187. // /deep/.van-list {
  188. // width: 100%;
  189. // height: calc(100%- 150px);
  190. // }
  191. }
  192. </style>