|
@@ -10,7 +10,7 @@
|
|
|
<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='onLoad1'>
|
|
|
+ <!-- <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'>
|
|
@@ -23,7 +23,7 @@
|
|
|
<!-- 其他部门 -->
|
|
|
<div class='other-department' v-else>
|
|
|
<van-cell title='其他' :arrow-direction='arrowDirection' is-link @click='changeOtherShowStatus(item)' />
|
|
|
- <div class='other-container' v-show='item.showOther'>
|
|
|
+ <div class='other-container' v-if='item.showOther'>
|
|
|
<van-cell
|
|
|
:title='detail.otherdescription'
|
|
|
title-class='other-cell'
|
|
@@ -33,47 +33,9 @@
|
|
|
v-for='(detail,dIndex) in item.children'
|
|
|
:key='dIndex'
|
|
|
/>
|
|
|
- <!-- <van-cell
|
|
|
- :title='`自定义其他部门${index}`'
|
|
|
- title-class='other-cell'
|
|
|
- :value='`${index}项`'
|
|
|
- is-link
|
|
|
- @click='goToMattersFetail(item)'
|
|
|
- />
|
|
|
- <van-cell
|
|
|
- :title='`自定义其他部门${index}`'
|
|
|
- title-class='other-cell'
|
|
|
- :value='`${index}项`'
|
|
|
- is-link
|
|
|
- @click='goToMattersFetail(item)'
|
|
|
- />-->
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!-- <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)' />
|
|
|
- </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'>
|
|
|
- <van-cell
|
|
|
- :title='`自定义其他部门${index}`'
|
|
|
- title-class='other-cell'
|
|
|
- :value='`${index}项`'
|
|
|
- is-link
|
|
|
- @click='goToMattersFetail(item)'
|
|
|
- />
|
|
|
- <van-cell
|
|
|
- :title='`自定义其他部门${index}`'
|
|
|
- title-class='other-cell'
|
|
|
- :value='`${index}项`'
|
|
|
- is-link
|
|
|
- @click='goToMattersFetail(item)'
|
|
|
- />
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>-->
|
|
|
</van-list>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -115,13 +77,6 @@ export default {
|
|
|
finished1: false,
|
|
|
}
|
|
|
},
|
|
|
- // watch: {
|
|
|
- // loading: {
|
|
|
- // immediate: true,
|
|
|
- // handler(val) {
|
|
|
- // console.log(123)
|
|
|
-
|
|
|
- // },
|
|
|
watch: {
|
|
|
loading: {
|
|
|
immediate: true,
|
|
@@ -200,8 +155,8 @@ export default {
|
|
|
// return false
|
|
|
// }
|
|
|
|
|
|
- let data = res.data
|
|
|
- data = [
|
|
|
+ // let data = res.data
|
|
|
+ let data = [
|
|
|
{
|
|
|
department: '政府部门1' + new Date().getTime(),
|
|
|
cnt: 1,
|
|
@@ -382,13 +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: 400px;
|
|
|
+ height: 100%;
|
|
|
background-color: #fff;
|
|
|
overflow: auto;
|
|
|
.container {
|
|
@@ -426,9 +381,5 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- // /deep/.van-list {
|
|
|
- // width: 100%;
|
|
|
- // height: calc(100%- 150px);
|
|
|
- // }
|
|
|
}
|
|
|
</style>
|