| 
					
				 | 
			
			
				@@ -5,6 +5,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     left-text="" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     left-arrow 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @click-left="onClickLeft" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    :style="{ 'background-color': selectColor }" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   <van-loading size="16px" v-show="isLoading">加载中...</van-loading> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   <div class="main" v-show="!isLoading"> 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -159,6 +160,8 @@ import WangEditor from "@/components/editor/WangEditor"; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   components: { personList, WangEditor,organizationsList }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   setup() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    // 导航栏颜色 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    const selectColor = ref(window.localStorage.getItem("MZ_COLOR")); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     // 加载 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     let isLoading = ref(true); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     // 返回 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -331,6 +334,8 @@ export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       }); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     return { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 导航栏颜色 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      selectColor, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       isLoading, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       inputForm, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				       //非宗教类别 
			 |