yunxing %!s(int64=4) %!d(string=hai) anos
pai
achega
6427004865

+ 6 - 55
src/views/otherMatter/ComprehensiveMatter.vue

@@ -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>

+ 7 - 8
src/views/otherMatter/index.vue

@@ -2,10 +2,10 @@
     <div class='other-matter'>
         <van-tabs v-model='active' class='other-tabs' color='#025BAA' @change='changeTab' title-active-color='#025BAA' :line-width='60'>
             <van-tab title='综合事项'>
-                <ComprehensiveMatter :key='key0' />
+                <ComprehensiveMatter v-if='active===0' />
             </van-tab>
             <van-tab title='辅助用房'>
-                <AuxiliaryRoom :key='key1' />
+                <AuxiliaryRoom v-if='active===1' />
             </van-tab>
         </van-tabs>
     </div>
@@ -31,12 +31,11 @@ export default {
     mounted() {},
     methods: {
         changeTab(active) {
-            if (this.active === 0) {
-                this.key0++
-            } else {
-                this.key1++
-            }
-            
+            // if (this.active === 0) {
+            //     this.key0++
+            // } else {
+            //     this.key1++
+            // }
         },
     },
 }