ComprehensiveMatter.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. <template>
  2. <div class='comprehensive-matter'>
  3. <div class='time'>
  4. <van-button round size='small' :class='active === 0?"active":""' @click='changeTime(0)'>一个月内</van-button>
  5. <van-button round size='small' :class='active === 1?"active":""' @click='changeTime(1)'>半年内</van-button>
  6. <van-button round size='small' :class='active === 2?"active":""' @click='changeTime(2)'>一年内</van-button>
  7. <van-button round size='small' :class='active === 3?"active":""' @click='changeTime(3)'>全部</van-button>
  8. </div>
  9. <div class='main' v-show='!noData'>
  10. <van-list class='matters-list' v-model='loading' :finished='finished' :immediate-check='false' finished-text :offset='300' @load='onLoad'>
  11. <!-- :immediate-check='false' -->
  12. <div class='container' v-for='(item,index) in list' :key='index'>
  13. <!-- 政府部门 -->
  14. <div class='government-department'>
  15. <!-- <div class='government-department' v-if='item.department.indexOf("其他")'> -->
  16. <van-cell :title='item.department' is-link :value='`${item.count}`' @click='goToMattersFetail(item,1)' />
  17. </div>
  18. <!-- 其他部门 -->
  19. <!-- <div class='other-department' v-else>
  20. <van-cell title='其他' :arrow-direction='item.arrowDirection ||"up"' is-link @click='changeOtherShowStatus(item)' />
  21. <div class='other-container' v-if='item.showOther'>
  22. <van-cell
  23. :title='detail.otherdescription'
  24. title-class='other-cell'
  25. :value='detail.count'
  26. is-link
  27. @click='goToMattersFetail(detail,2)'
  28. v-for='(detail,dIndex) in item.children'
  29. :key='dIndex'
  30. />
  31. </div>
  32. </div>-->
  33. </div>
  34. </van-list>
  35. </div>
  36. <div class='main' v-show='noData'>
  37. <van-empty description='暂无数据' />
  38. </div>
  39. </div>
  40. </template>
  41. <script>
  42. /**
  43. * 综合事项
  44. */
  45. import Vue from 'vue'
  46. import { List, Cell, Button, Empty } from 'vant'
  47. Vue.use(List)
  48. Vue.use(Cell)
  49. Vue.use(Button)
  50. Vue.use(Empty)
  51. import { queryGlams } from '@/api/other.js'
  52. import { mapGetters } from 'vuex'
  53. import moment from 'moment'
  54. export default {
  55. name: 'ComprehensiveMatter',
  56. props: {},
  57. components: {},
  58. computed: {
  59. ...mapGetters(['plazaId']),
  60. },
  61. data() {
  62. return {
  63. active: 0,
  64. list: [],
  65. loading: false,
  66. finished: false,
  67. page: 1,
  68. size: 10,
  69. count: 0,
  70. currentCount: 0,
  71. arrowDirection: 'up', //其他 箭头方向
  72. noData: false,
  73. createdateStartDate: '',
  74. createdateEndDate: '',
  75. }
  76. },
  77. watch: {
  78. loading: {
  79. immediate: true,
  80. handler(val) {},
  81. },
  82. },
  83. created() {
  84. console.log('综合事项 created')
  85. this.getList()
  86. },
  87. beforeMount() {},
  88. mounted() {},
  89. methods: {
  90. /**
  91. * 更改时间
  92. */
  93. async changeTime(active) {
  94. this.active = active
  95. this.list = []
  96. this.page = 1
  97. this.count = 0
  98. this.currentCount = 0
  99. this.loading = true
  100. this.finished = false
  101. this.noData = false
  102. await this.sleep(1000)
  103. this.getList()
  104. },
  105. async getList() {
  106. if (this.page > 1 && this.count === 0) {
  107. return false
  108. }
  109. let getParams = {
  110. plazaId: this.plazaId,
  111. page: this.page,
  112. size: this.size,
  113. }
  114. switch (this.active) {
  115. // 近一个月
  116. case 0:
  117. this.createdateStartDate = moment().subtract(1, 'months').format('YYYYMMDD000000')
  118. this.createdateEndDate = moment().format('YYYYMMDD000000')
  119. break
  120. // 半年内
  121. case 1:
  122. this.createdateStartDate = moment().subtract(6, 'months').format('YYYYMMDD000000')
  123. this.createdateEndDate = moment().format('YYYYMMDD000000')
  124. break
  125. // 一年内
  126. case 2:
  127. this.createdateStartDate = moment().subtract(1, 'years').format('YYYYMMDD000000')
  128. this.createdateEndDate = moment().format('YYYYMMDD000000')
  129. break
  130. // 默认 全部
  131. default:
  132. this.createdateStartDate = null
  133. this.createdateEndDate = null
  134. break
  135. }
  136. this.createdateStartDate && (getParams.createdateStartDate = this.createdateStartDate)
  137. this.createdateEndDate && (getParams.createdateEndDate = this.createdateEndDate)
  138. let res = await queryGlams({ getParams }) //TODO: 123
  139. // TODO:
  140. if (!res?.data) {
  141. if (!this.list.length) {
  142. this.noData = true
  143. } else {
  144. this.noData = false
  145. }
  146. return false
  147. }
  148. let data = res.data
  149. this.count = res.count //TODO: count
  150. this.currentCount += data.length
  151. data.map((item) => {
  152. // item.children = []
  153. if (item.cnt) {
  154. item.count = item.cnt + '项'
  155. } else {
  156. item.count = '--'
  157. item.disabled = true
  158. }
  159. if (item.otherdescription) {
  160. let otherdescription = item.otherdescription.replace(/(\(无\)|\(无\))/g, '')
  161. otherdescription && (item.department = item.department + ' ' + otherdescription)
  162. }
  163. })
  164. // if (['其他部门', '其他', '其它'].includes(data[0].department)) {
  165. // let item = data[0]
  166. // item.showOther = true
  167. // item.children.push({ department: item.department, count: item.count, cnt: item.cnt, otherdescription: item.otherdescription })
  168. // }
  169. // 处理其他部门,将在一起的其他部门,合并到一起
  170. // for (let index = 1, len = data.length; index < len; index++) {
  171. // const item = data[index]
  172. // // 出现的第一个其他部门加入children
  173. // if (['其他部门', '其他', '其它'].includes(item.department) && !['其他部门', '其他', '其它'].includes(data[index - 1].department)) {
  174. // item.showOther = true
  175. // if (
  176. // !item.children.some(({ department, count, otherdescription }) => {
  177. // return item.otherdescription === otherdescription && item.count === count && item.department === item.department
  178. // })
  179. // ) {
  180. // item.children.push({ department: item.department, count: item.count, cnt: item.cnt, otherdescription: item.otherdescription })
  181. // }
  182. // } else if (data[index - 1].department === item.department && ['其他部门', '其他', '其它'].includes(item.department)) {
  183. // data[index - 1].children.push({
  184. // department: item.department,
  185. // count: item.count,
  186. // cnt: item.cnt,
  187. // otherdescription: item.otherdescription,
  188. // })
  189. // data.splice(index--, 1)
  190. // len--
  191. // }
  192. // }
  193. if (this.page === 1) {
  194. this.list = data
  195. } else {
  196. this.list = this.list.concat(data)
  197. }
  198. this.loading = false
  199. if (this.currentCount >= this.count) {
  200. this.finished = true
  201. } else {
  202. this.finished = false
  203. }
  204. },
  205. async onLoad() {
  206. // 防止第一页没有数据,接着查询第二页
  207. if (this.page > 1 && this.count === 0) {
  208. return true
  209. }
  210. // 防止第一页不够
  211. if (this.currentCount >= this.count) {
  212. return true
  213. }
  214. // 异步更新数据
  215. await this.getList()
  216. this.page++
  217. // 加载状态结束
  218. this.loading = false
  219. // 查询完成
  220. if (this.currentCount >= this.count) {
  221. this.finished = true
  222. }
  223. },
  224. /**
  225. * 同步延迟器
  226. * @param { Number } timeout 延迟时间,ms
  227. */
  228. async sleep(timeout) {
  229. await new Promise((resolve) => {
  230. setTimeout(() => {
  231. resolve()
  232. }, timeout)
  233. })
  234. },
  235. /**
  236. * 点击其他右侧上下箭头,显隐其他部门
  237. */
  238. changeOtherShowStatus(item) {
  239. // console.log(item)
  240. if (item.showOther) {
  241. item.showOther = false
  242. item.arrowDirection = 'down'
  243. } else {
  244. item.showOther = true
  245. item.arrowDirection = 'up'
  246. }
  247. },
  248. /**
  249. * 跳转 列表页面
  250. * @param { Number } 1:政府部门 2:其他部门
  251. */
  252. goToMattersFetail(data, type) {
  253. // console.log(data)
  254. let { department, otherdescription, cnt } = data
  255. console.log(data)
  256. let params = {
  257. type, //部门类型
  258. department, //部门名称
  259. size: cnt, //分页,按照cnt(count)字段
  260. createdateStartDate: this.createdateStartDate,
  261. createdateEndDate: this.createdateEndDate,
  262. }
  263. // 全部时,不传时间字段
  264. if (this.active === 3) {
  265. delete params.createdateStartDate
  266. delete params.createdateEndDate
  267. }
  268. // 其他部门,传递 其他部门说明字段
  269. type == 2 && (params.otherdescription = otherdescription)
  270. this.$router.push({ name: 'ComprehensiveMatterList', params })
  271. },
  272. },
  273. }
  274. </script>
  275. <style lang='less' scoped>
  276. .comprehensive-matter {
  277. width: 100%;
  278. height: 100%;
  279. background-color: #f5f6f7;
  280. // 时间切换按钮
  281. .time {
  282. width: 100%;
  283. height: 60px;
  284. padding: 15px;
  285. display: flex;
  286. justify-content: space-between;
  287. align-items: center;
  288. box-sizing: border-box;
  289. background-color: #f5f6f7;
  290. /deep/ .van-button {
  291. width: 75px;
  292. text-align: center;
  293. font-size: 14px;
  294. font-weight: 400;
  295. color: #333333;
  296. background: #f1f1f1;
  297. border-radius: 16px;
  298. border: 1px solid #dcdcdc;
  299. padding: 0 !important;
  300. }
  301. .active {
  302. background-color: #025baa !important;
  303. color: #fff;
  304. }
  305. }
  306. .main {
  307. width: 100%;
  308. height: calc(100% - 60px);
  309. // overflow: hidden;
  310. font-size: 14px;
  311. font-weight: 400;
  312. color: #333333;
  313. .matters-list {
  314. width: 100%;
  315. height: 100%;
  316. background-color: #fff;
  317. overflow: auto;
  318. .container {
  319. width: 100%;
  320. .government-department {
  321. width: 100%;
  322. padding: 0 15px;
  323. }
  324. /deep/ .van-cell {
  325. height: 55px;
  326. border-bottom: 1px solid #e6e6e6;
  327. display: flex;
  328. align-items: center;
  329. padding-left: 0;
  330. padding-right: 0;
  331. .van-cell__title {
  332. font-size: 14px;
  333. font-weight: 400;
  334. color: #333333;
  335. }
  336. }
  337. // 其他部门
  338. .other-department {
  339. width: 100%;
  340. padding: 0 15px;
  341. .other-container {
  342. width: 100%;
  343. padding-left: 15px;
  344. border-bottom: 1px solid #e6e6e6;
  345. /deep/ .van-cell:last-child {
  346. border-bottom: none;
  347. }
  348. }
  349. }
  350. }
  351. }
  352. /deep/ .van-empty {
  353. height: 100%;
  354. }
  355. }
  356. }
  357. </style>