|
@@ -10,27 +10,28 @@
|
|
|
<van-button round size='small' :class='active === 3?"active":""' @click='changeTime(3)'>全部</van-button>
|
|
|
</div>
|
|
|
<div class='main'>
|
|
|
- <van-list class='matters-list' v-model='loading' :finished='finished' finished-text='没有更多了' :immediate-check='false' @load='onLoad'>
|
|
|
- <div class='container' v-for='(item,index) in 15' :key='index'>
|
|
|
- <div class='government-department' v-if='true'>
|
|
|
- <van-cell :title='`政府部门${index}`' is-link :value='`${index}项`' @click='goToMattersFetail(item)' />
|
|
|
+ <!-- <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'>
|
|
|
+ <!-- :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)' />
|
|
|
</div>
|
|
|
- <div class='other-department' v-if='index==4'>
|
|
|
- <van-cell title='其他' :arrow-direction='arrowDirection' is-link @click='changeOtherShowStatus' />
|
|
|
- <div class='other-container' v-show='showOther'>
|
|
|
+ <!-- 其他部门 -->
|
|
|
+ <div class='other-department' v-else>
|
|
|
+ <van-cell title='其他' :arrow-direction='arrowDirection' is-link @click='changeOtherShowStatus(item)' />
|
|
|
+ <div class='other-container' v-if='item.showOther'>
|
|
|
<van-cell
|
|
|
- :title='`自定义其他部门${index}`'
|
|
|
+ :title='detail.otherdescription'
|
|
|
title-class='other-cell'
|
|
|
- :value='`${index}项`'
|
|
|
+ :value='detail.count'
|
|
|
is-link
|
|
|
- @click='goToMattersFetail(item)'
|
|
|
- />
|
|
|
- <van-cell
|
|
|
- :title='`自定义其他部门${index}`'
|
|
|
- title-class='other-cell'
|
|
|
- :value='`${index}项`'
|
|
|
- is-link
|
|
|
- @click='goToMattersFetail(item)'
|
|
|
+ @click='goToMattersFetail(detail)'
|
|
|
+ v-for='(detail,dIndex) in item.children'
|
|
|
+ :key='dIndex'
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -42,16 +43,23 @@
|
|
|
<script>
|
|
|
/**
|
|
|
* 综合事项
|
|
|
- nginx 1.16.1
|
|
|
|
|
|
*/
|
|
|
import Vue from 'vue'
|
|
|
import { List, Cell, Button } from 'vant'
|
|
|
-Vue.use(List).use(Cell).use(Button)
|
|
|
+Vue.use(List)
|
|
|
+Vue.use(Cell)
|
|
|
+Vue.use(Button)
|
|
|
+import { queryGlams } from '@/api/other.js'
|
|
|
+import { mapGetters } from 'vuex'
|
|
|
+import moment from 'moment'
|
|
|
export default {
|
|
|
name: 'ComprehensiveMatter',
|
|
|
props: {},
|
|
|
components: {},
|
|
|
+ computed: {
|
|
|
+ ...mapGetters(['plazaId']),
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
active: 0,
|
|
@@ -59,54 +67,238 @@ export default {
|
|
|
loading: false,
|
|
|
finished: false,
|
|
|
page: 1,
|
|
|
+ size: 11,
|
|
|
count: 0,
|
|
|
+ currentCount: 0,
|
|
|
arrowDirection: 'up', //其他 箭头方向
|
|
|
showOther: true,
|
|
|
+ list1: [],
|
|
|
+ loading1: false,
|
|
|
+ finished1: false,
|
|
|
}
|
|
|
},
|
|
|
+ watch: {
|
|
|
+ loading: {
|
|
|
+ immediate: true,
|
|
|
+ handler(val) {
|
|
|
+ console.log(val)
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ // this.getList()
|
|
|
+ },
|
|
|
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('更改时间')
|
|
|
this.active = active
|
|
|
+ this.list = []
|
|
|
+ this.page = 1
|
|
|
+ this.count = 0
|
|
|
+ this.currentCount = 0
|
|
|
+ this.loading = true
|
|
|
+ this.finished = false
|
|
|
+ this.getList()
|
|
|
},
|
|
|
- onLoad() {
|
|
|
- // 异步更新数据
|
|
|
- // setTimeout 仅做示例,真实场景中一般为 ajax 请求
|
|
|
- setTimeout(() => {
|
|
|
- for (let i = 0; i < 5; i++) {
|
|
|
- this.list.push(this.list.length + 1)
|
|
|
- }
|
|
|
+ async getList() {
|
|
|
+ let getParams = {
|
|
|
+ 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')
|
|
|
+ break
|
|
|
+ // 半年内
|
|
|
+ case 1:
|
|
|
+ getParams.changeDateStartDate = moment().subtract(6, 'months').format('YYYYMMDD000000')
|
|
|
+ getParams.changeDateEndDate = moment().format('YYYYMMDD000000')
|
|
|
+ break
|
|
|
+ // 一年内
|
|
|
+ case 2:
|
|
|
+ getParams.changeDateStartDate = moment().subtract(1, 'years').format('YYYYMMDD000000')
|
|
|
+ getParams.changeDateEndDate = moment().format('YYYYMMDD000000')
|
|
|
+ break
|
|
|
+ // 默认 全部
|
|
|
+ default:
|
|
|
+ break
|
|
|
+ }
|
|
|
+ let res = await queryGlams({ getParams }) //TODO: 123
|
|
|
+ console.log(res)
|
|
|
+ // TODO:
|
|
|
+ // if (!res?.data) {
|
|
|
+ // return false
|
|
|
+ // }
|
|
|
|
|
|
- // 加载状态结束
|
|
|
- this.loading = 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 (this.list.length >= 40) {
|
|
|
- this.finished = true
|
|
|
+ {
|
|
|
+ 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
|
|
|
+ this.currentCount += data.length
|
|
|
+ data.map((item) => {
|
|
|
+ item.children = []
|
|
|
+ if (item.cnt) {
|
|
|
+ item.count = item.cnt + '项'
|
|
|
+ } else {
|
|
|
+ item.count = '--'
|
|
|
+ item.disabled = true
|
|
|
}
|
|
|
- }, 1000)
|
|
|
+ })
|
|
|
+ // 处理其他部门,将在一起的其他部门,合并到一起
|
|
|
+ for (let index = 1, len = data.length; index < len; index++) {
|
|
|
+ const item = data[index]
|
|
|
+ // 穿插出现的第一个其他部门加入children
|
|
|
+ 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 })
|
|
|
+ }
|
|
|
+ data.splice(index--, 1)
|
|
|
+ index--
|
|
|
+ len--
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (this.page === 1) {
|
|
|
+ this.list = data
|
|
|
+ } else {
|
|
|
+ this.list = this.list.concat(data)
|
|
|
+ }
|
|
|
+
|
|
|
+ console.log(this.count, this.currentCount)
|
|
|
+ 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.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)
|
|
|
},
|
|
|
/**
|
|
|
* 点击其他右侧上下箭头,显隐其他部门
|
|
|
*/
|
|
|
- changeOtherShowStatus() {
|
|
|
- if (this.showOther) {
|
|
|
- this.showOther = false
|
|
|
- this.arrowDirection = 'down'
|
|
|
+ changeOtherShowStatus(item) {
|
|
|
+ console.log(item)
|
|
|
+ if (item.showOther) {
|
|
|
+ item.showOther = false
|
|
|
+ item.arrowDirection = 'down'
|
|
|
} else {
|
|
|
- this.showOther = true
|
|
|
- this.arrowDirection = 'up'
|
|
|
+ item.showOther = true
|
|
|
+ item.arrowDirection = 'up'
|
|
|
}
|
|
|
},
|
|
|
/**
|
|
|
* 跳转 列表页面
|
|
|
*/
|
|
|
goToMattersFetail(data) {
|
|
|
- this.$router.push({ name: 'ComprehensiveMatterList', params: data })
|
|
|
+ console.log(data)
|
|
|
+ let { department, otherdescription, cnt } = data
|
|
|
+ // this.$router.push({ name: 'ComprehensiveMatterList', params: data })
|
|
|
},
|
|
|
},
|
|
|
}
|
|
@@ -116,7 +308,7 @@ export default {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
background-color: #f5f6f7;
|
|
|
- overflow: auto;
|
|
|
+
|
|
|
// 时间切换按钮
|
|
|
.time {
|
|
|
width: 100%;
|
|
@@ -145,12 +337,13 @@ export default {
|
|
|
.main {
|
|
|
width: 100%;
|
|
|
height: calc(100% - 60px);
|
|
|
- overflow: auto;
|
|
|
+ // overflow: hidden;
|
|
|
font-size: 14px;
|
|
|
font-weight: 400;
|
|
|
color: #333333;
|
|
|
.matters-list {
|
|
|
width: 100%;
|
|
|
+ height: 100%;
|
|
|
background-color: #fff;
|
|
|
overflow: auto;
|
|
|
.container {
|
|
@@ -188,9 +381,5 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- // /deep/.van-list {
|
|
|
- // width: 100%;
|
|
|
- // height: calc(100%- 150px);
|
|
|
- // }
|
|
|
}
|
|
|
</style>
|