| 
					
				 | 
			
			
				@@ -4,6 +4,13 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <el-select v-model="mixins_query.communityId" placeholder="选择社区" @change="communityChange"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 <el-option v-for="(item, index) in communityArr" :key="index" :label="item.communityName" :value="item.id"></el-option> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </el-select> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <el-select v-model="mixins_query.chargeType" placeholder="选择费用类型" @change="chargeTypeChange"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                <el-option label="物业费" :value="1"></el-option> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                <el-option label="水费" :value="2"></el-option> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                <el-option label="电费" :value="3"></el-option> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                <el-option label="车位费" :value="4"></el-option> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                <el-option label="卫生费" :value="6"></el-option> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </el-select> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <el-button type="primary" class="search-btn" @click="mixins_search" icon="el-icon-search">查询 </el-button> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             <div class="search-icon"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 <el-tooltip class="item" effect="light" placement="bottom" content="导出"> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -12,7 +19,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             </div> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         </div> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <div class="table-top"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            {{ `${new Date().getFullYear()}年${thisObjCommunit['communityName'] || ''}缴纳物业管理费情况表` }} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            {{ `${new Date().getFullYear()}年${thisObjCommunit['communityName'] || ''}缴纳${nameType}费情况表` }} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         </div> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         <zz-table 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             :cols="cols" 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -100,7 +107,8 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             mixins_post: 'get', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             summaryColData: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             communityArr: [], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            thisObjCommunit: {} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            thisObjCommunit: {}, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            nameType: '物业管理' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         }; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     created() { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -141,6 +149,26 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             }); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        chargeTypeChange(e) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            switch (e) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                case 1: 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    this.nameType = '物业管理'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    break; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                case 2: 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    this.nameType = '水费管理'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    break; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                case 3: 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    this.nameType = '电费管理'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    break; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                case 4: 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    this.nameType = '车位费管理'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    break; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                case 6: 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    this.nameType = '卫生费管理'; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    break; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            this.mixins_search(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         getList() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if (!this.mixins_dataUrl) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 this.mixins_onQuery = false; 
			 |