|
@@ -1,24 +1,18 @@
|
|
|
<template>
|
|
|
<div class='comprehensive-matter'>
|
|
|
- <!-- <van-list v-model='loading' :finished='finished' finished-text='加载到底了' @load='onLoad'>
|
|
|
- <van-cell v-for='item in list' :key='item' :title='item' />
|
|
|
- </van-list>-->
|
|
|
<div class='time'>
|
|
|
<van-button round size='small' :class='active === 0?"active":""' @click='changeTime(0)'>一个月内</van-button>
|
|
|
<van-button round size='small' :class='active === 1?"active":""' @click='changeTime(1)'>半年内</van-button>
|
|
|
<van-button round size='small' :class='active === 2?"active":""' @click='changeTime(2)'>一年内</van-button>
|
|
|
<van-button round size='small' :class='active === 3?"active":""' @click='changeTime(3)'>全部</van-button>
|
|
|
</div>
|
|
|
- <div class='main'>
|
|
|
- <!-- <van-list style='height:300px;overflow: auto;' v-model='loading1' :finished='finished1' finished-text='没有更多了' @load=''>
|
|
|
- <van-cell v-for='item in list1' :key='item' :title='item' />
|
|
|
- </van-list>-->
|
|
|
- <van-list class='matters-list' v-model='loading' :finished='finished' finished-text='没有更多了' :offset='300' @load='onLoad'>
|
|
|
+ <div class='main' v-show='!noData'>
|
|
|
+ <van-list class='matters-list' v-model='loading' :finished='finished' finished-text :offset='300' @load='onLoad'>
|
|
|
<!-- :immediate-check='false' -->
|
|
|
<div class='container' v-for='(item,index) in list' :key='index'>
|
|
|
<!-- 政府部门 -->
|
|
|
<div class='government-department' v-if='item.department.indexOf("其他")'>
|
|
|
- <van-cell :title='item.department' is-link :value='`${item.count}`' @click='goToMattersFetail(item)' />
|
|
|
+ <van-cell :title='item.department' is-link :value='`${item.count}`' @click='goToMattersFetail(item,1)' />
|
|
|
</div>
|
|
|
<!-- 其他部门 -->
|
|
|
<div class='other-department' v-else>
|
|
@@ -29,7 +23,7 @@
|
|
|
title-class='other-cell'
|
|
|
:value='detail.count'
|
|
|
is-link
|
|
|
- @click='goToMattersFetail(detail)'
|
|
|
+ @click='goToMattersFetail(detail,2)'
|
|
|
v-for='(detail,dIndex) in item.children'
|
|
|
:key='dIndex'
|
|
|
/>
|
|
@@ -38,6 +32,9 @@
|
|
|
</div>
|
|
|
</van-list>
|
|
|
</div>
|
|
|
+ <div class='main' v-show='noData'>
|
|
|
+ <van-empty description='暂无数据' />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
@@ -46,10 +43,11 @@
|
|
|
|
|
|
*/
|
|
|
import Vue from 'vue'
|
|
|
-import { List, Cell, Button } from 'vant'
|
|
|
+import { List, Cell, Button, Empty } from 'vant'
|
|
|
Vue.use(List)
|
|
|
Vue.use(Cell)
|
|
|
Vue.use(Button)
|
|
|
+Vue.use(Empty)
|
|
|
import { queryGlams } from '@/api/other.js'
|
|
|
import { mapGetters } from 'vuex'
|
|
|
import moment from 'moment'
|
|
@@ -67,58 +65,38 @@ export default {
|
|
|
loading: false,
|
|
|
finished: false,
|
|
|
page: 1,
|
|
|
- size: 11,
|
|
|
+ size: 10,
|
|
|
count: 0,
|
|
|
currentCount: 0,
|
|
|
arrowDirection: 'up', //其他 箭头方向
|
|
|
- showOther: true,
|
|
|
- list1: [],
|
|
|
- loading1: false,
|
|
|
- finished1: false,
|
|
|
+ noData: false,
|
|
|
+ createdateStartDate: '',
|
|
|
+ createdateEndDate: '',
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
|
loading: {
|
|
|
immediate: true,
|
|
|
- handler(val) {
|
|
|
- console.log(val)
|
|
|
- },
|
|
|
+ handler(val) {},
|
|
|
},
|
|
|
},
|
|
|
- created() {
|
|
|
- // this.getList()
|
|
|
- },
|
|
|
+ created() {},
|
|
|
beforeMount() {},
|
|
|
mounted() {},
|
|
|
methods: {
|
|
|
- onLoad1() {
|
|
|
- console.log('onload1')
|
|
|
- // 异步更新数据
|
|
|
- // setTimeout 仅做示例,真实场景中一般为 ajax 请求
|
|
|
- setTimeout(() => {
|
|
|
- for (let i = 0; i < 10; i++) {
|
|
|
- this.list1.push(this.list1.length + 1)
|
|
|
- }
|
|
|
- // 加载状态结束
|
|
|
- this.loading1 = false
|
|
|
- // 数据全部加载完成
|
|
|
- if (this.list1.length >= 50) {
|
|
|
- this.finished1 = true
|
|
|
- }
|
|
|
- }, 1000)
|
|
|
- },
|
|
|
/**
|
|
|
* 更改时间
|
|
|
*/
|
|
|
- changeTime(active) {
|
|
|
- console.log('更改时间')
|
|
|
+ async changeTime(active) {
|
|
|
this.active = active
|
|
|
this.list = []
|
|
|
this.page = 1
|
|
|
this.count = 0
|
|
|
this.currentCount = 0
|
|
|
- this.loading = true
|
|
|
+ this.loading = false
|
|
|
this.finished = false
|
|
|
+ this.noData = false
|
|
|
+ await this.sleep(1000)
|
|
|
this.getList()
|
|
|
},
|
|
|
async getList() {
|
|
@@ -126,98 +104,48 @@ export default {
|
|
|
plazaId: this.plazaId,
|
|
|
page: this.page,
|
|
|
size: this.size,
|
|
|
- orderBy: 'createdate,0',
|
|
|
}
|
|
|
switch (this.active) {
|
|
|
// 近一个月
|
|
|
case 0:
|
|
|
- getParams.changeDateStartDate = moment().subtract(1, 'months').format('YYYYMMDD000000')
|
|
|
- getParams.changeDateEndDate = moment().format('YYYYMMDD000000')
|
|
|
+ this.createdateStartDate = moment().subtract(1, 'months').format('YYYYMMDD000000')
|
|
|
+ this.createdateEndDate = moment().format('YYYYMMDD000000')
|
|
|
break
|
|
|
// 半年内
|
|
|
case 1:
|
|
|
- getParams.changeDateStartDate = moment().subtract(6, 'months').format('YYYYMMDD000000')
|
|
|
- getParams.changeDateEndDate = moment().format('YYYYMMDD000000')
|
|
|
+ this.createdateStartDate = moment().subtract(6, 'months').format('YYYYMMDD000000')
|
|
|
+ this.createdateEndDate = moment().format('YYYYMMDD000000')
|
|
|
break
|
|
|
// 一年内
|
|
|
case 2:
|
|
|
- getParams.changeDateStartDate = moment().subtract(1, 'years').format('YYYYMMDD000000')
|
|
|
- getParams.changeDateEndDate = moment().format('YYYYMMDD000000')
|
|
|
+ this.createdateStartDate = moment().subtract(1, 'years').format('YYYYMMDD000000')
|
|
|
+ this.createdateEndDate = moment().format('YYYYMMDD000000')
|
|
|
break
|
|
|
// 默认 全部
|
|
|
default:
|
|
|
+ this.createdateStartDate = null
|
|
|
+ this.createdateEndDate = null
|
|
|
break
|
|
|
}
|
|
|
+ this.createdateStartDate && (getParams.createdateStartDate = this.createdateStartDate)
|
|
|
+ this.createdateEndDate && (getParams.createdateEndDate = this.createdateEndDate)
|
|
|
let res = await queryGlams({ getParams }) //TODO: 123
|
|
|
- console.log(res)
|
|
|
// TODO:
|
|
|
- // if (!res?.data) {
|
|
|
- // return false
|
|
|
- // }
|
|
|
-
|
|
|
- // let data = res.data
|
|
|
- let data = [
|
|
|
- {
|
|
|
- department: '政府部门1' + new Date().getTime(),
|
|
|
- cnt: 1,
|
|
|
- otherdescription: '无',
|
|
|
- },
|
|
|
- {
|
|
|
- department: '政府部门2',
|
|
|
- cnt: 2,
|
|
|
- otherdescription: '无',
|
|
|
- },
|
|
|
- {
|
|
|
- department: '其他部门',
|
|
|
- cnt: 3,
|
|
|
- otherdescription: '无',
|
|
|
- },
|
|
|
- {
|
|
|
- department: '其他部门',
|
|
|
- cnt: 4,
|
|
|
- otherdescription: '特检所',
|
|
|
- },
|
|
|
- {
|
|
|
- department: '其他部门',
|
|
|
- cnt: 5,
|
|
|
- otherdescription: '电监',
|
|
|
- },
|
|
|
+ if (!res?.data) {
|
|
|
+ if (!this.list.length) {
|
|
|
+ this.noData = true
|
|
|
+ } else {
|
|
|
+ this.noData = false
|
|
|
+ }
|
|
|
+ return false
|
|
|
+ }
|
|
|
|
|
|
- {
|
|
|
- department: '其他部门',
|
|
|
- cnt: 6,
|
|
|
- otherdescription: '电监6',
|
|
|
- },
|
|
|
- {
|
|
|
- department: '其他部门',
|
|
|
- cnt: 7,
|
|
|
- otherdescription: '电监7',
|
|
|
- },
|
|
|
- {
|
|
|
- department: '政府部门8',
|
|
|
- cnt: 8,
|
|
|
- otherdescription: '无',
|
|
|
- },
|
|
|
- {
|
|
|
- department: '其他部门',
|
|
|
- cnt: 9,
|
|
|
- otherdescription: '电监7',
|
|
|
- },
|
|
|
- {
|
|
|
- department: '政府部门8',
|
|
|
- cnt: 10,
|
|
|
- otherdescription: '无',
|
|
|
- },
|
|
|
- {
|
|
|
- department: '政府部门8',
|
|
|
- cnt: 10,
|
|
|
- otherdescription: '无',
|
|
|
- },
|
|
|
- ]
|
|
|
- this.count = 50 // res.count
|
|
|
+ let data = res.data
|
|
|
+ this.count = res.count //TODO: count
|
|
|
this.currentCount += data.length
|
|
|
data.map((item) => {
|
|
|
item.children = []
|
|
|
+
|
|
|
if (item.cnt) {
|
|
|
item.count = item.cnt + '项'
|
|
|
} else {
|
|
@@ -225,25 +153,29 @@ export default {
|
|
|
item.disabled = true
|
|
|
}
|
|
|
})
|
|
|
+ if (['其他部门', '其他', '其它'].includes(data[0].department)) {
|
|
|
+ console.log(123123123123123123)
|
|
|
+ let item = data[0]
|
|
|
+ item.showOther = true
|
|
|
+ item.children.push({ department: item.department, cnt: item.cnt, otherdescription: item.otherdescription })
|
|
|
+ }
|
|
|
// 处理其他部门,将在一起的其他部门,合并到一起
|
|
|
for (let index = 1, len = data.length; index < len; index++) {
|
|
|
const item = data[index]
|
|
|
- // 穿插出现的第一个其他部门加入children
|
|
|
+ // 出现的第一个其他部门加入children
|
|
|
+ console.log(index, item, item.department)
|
|
|
if (['其他部门', '其他', '其它'].includes(item.department) && !['其他部门', '其他', '其它'].includes(data[index - 1].department)) {
|
|
|
item.showOther = true
|
|
|
- item.children.push({ department: item.department, cnt: item.cnt, otherdescription: item.otherdescription })
|
|
|
- } else if (data[index - 1].department === item.department && ['其他部门', '其他', '其它'].includes(item.department)) {
|
|
|
- if (!data[index - 1].children.length) {
|
|
|
- data[index - 1].children.push(
|
|
|
- // data[index - 1]
|
|
|
- { department: data[index - 1].department, cnt: data[index - 1].cnt, otherdescription: data[index - 1].otherdescription },
|
|
|
- { department: item.department, cnt: item.cnt, otherdescription: item.otherdescription }
|
|
|
- )
|
|
|
- } else {
|
|
|
- data[index - 1].children.push({ department: item.department, cnt: item.cnt, otherdescription: item.otherdescription })
|
|
|
+ if (
|
|
|
+ !item.children.some(({ department, cnt, otherdescription }) => {
|
|
|
+ return item.otherdescription === otherdescription && item.cnt === cnt && item.department === item.department
|
|
|
+ })
|
|
|
+ ) {
|
|
|
+ item.children.push({ department: item.department, cnt: item.cnt, otherdescription: item.otherdescription })
|
|
|
}
|
|
|
+ } else if (data[index - 1].department === item.department && ['其他部门', '其他', '其它'].includes(item.department)) {
|
|
|
+ data[index - 1].children.push({ department: item.department, cnt: item.cnt, otherdescription: item.otherdescription })
|
|
|
data.splice(index--, 1)
|
|
|
- index--
|
|
|
len--
|
|
|
}
|
|
|
}
|
|
@@ -252,34 +184,39 @@ export default {
|
|
|
} else {
|
|
|
this.list = this.list.concat(data)
|
|
|
}
|
|
|
-
|
|
|
- console.log(this.count, this.currentCount)
|
|
|
+ this.loading = false
|
|
|
if (this.currentCount === this.count) {
|
|
|
- this.loading = false
|
|
|
this.finished = true
|
|
|
} else {
|
|
|
- this.loading = true
|
|
|
this.finished = false
|
|
|
}
|
|
|
+
|
|
|
},
|
|
|
async onLoad() {
|
|
|
- console.log('onLoad')
|
|
|
+ await this.sleep(1000)
|
|
|
// 异步更新数据
|
|
|
await this.getList()
|
|
|
- console.log(12312312323)
|
|
|
this.page++
|
|
|
// 加载状态结束
|
|
|
this.loading = false
|
|
|
// 查询完成
|
|
|
if (this.currentCount >= this.count) {
|
|
|
this.finished = true
|
|
|
- } else {
|
|
|
- this.finished = false
|
|
|
- this.loading = true
|
|
|
}
|
|
|
console.log(this.loading, this.finished)
|
|
|
},
|
|
|
/**
|
|
|
+ * 同步延迟器
|
|
|
+ * @param { Number } timeout 延迟时间,ms
|
|
|
+ */
|
|
|
+ async sleep(timeout) {
|
|
|
+ await new Promise((resolve) => {
|
|
|
+ setTimeout(() => {
|
|
|
+ resolve()
|
|
|
+ }, timeout)
|
|
|
+ })
|
|
|
+ },
|
|
|
+ /**
|
|
|
* 点击其他右侧上下箭头,显隐其他部门
|
|
|
*/
|
|
|
changeOtherShowStatus(item) {
|
|
@@ -294,11 +231,24 @@ export default {
|
|
|
},
|
|
|
/**
|
|
|
* 跳转 列表页面
|
|
|
+ * @param { Number } 1:政府部门 2:其他部门
|
|
|
*/
|
|
|
- goToMattersFetail(data) {
|
|
|
+ goToMattersFetail(data, type) {
|
|
|
console.log(data)
|
|
|
let { department, otherdescription, cnt } = data
|
|
|
- // this.$router.push({ name: 'ComprehensiveMatterList', params: data })
|
|
|
+ let params = {
|
|
|
+ type,
|
|
|
+ department,
|
|
|
+ size: cnt,
|
|
|
+ startDate: this.createdateStartDate,
|
|
|
+ endDate: this.createdateEndDate,
|
|
|
+ }
|
|
|
+ if (this.active === 3) {
|
|
|
+ delete params.startDate
|
|
|
+ delete params.endDate
|
|
|
+ }
|
|
|
+ type == 2 && (params.otherdescription = otherdescription)
|
|
|
+ this.$router.push({ name: 'ComprehensiveMatterList', params })
|
|
|
},
|
|
|
},
|
|
|
}
|
|
@@ -380,6 +330,9 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ /deep/ .van-empty{
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</style>
|