guo 2 éve%!(EXTRA string=óta)
szülő
commit
085551a16e
2 módosított fájl, 18 hozzáadás és 10 törlés
  1. 7 6
      pages/user/feedBack.vue
  2. 11 4
      pages/user/user.vue

+ 7 - 6
pages/user/feedBack.vue

@@ -41,16 +41,17 @@
 			return {
 				imgArr: [],
 				exeContent: '',
-				 themeColor:'',
+				themeColor:'',
 
 			}
+		},
+		
+		onLoad() {
+			 this.themeColor = uni.getStorageSync("themeColor");
+		
 		},
-
 		methods: {
-			onload() {
-				 this.themeColor = uni.getStorageSync("themeColor");
-
-			},
+			
 			feedDone(e) {
 				this.exeContent = e.target.value
 

+ 11 - 4
pages/user/user.vue

@@ -1,7 +1,7 @@
 <template>
 	<view class="box">
 
-		<view class="top">
+		<view class="top" :style="{background:'#'+themeColor}">
 			<view class="customerMes">
 				<image @click="updateUserInfo" v-if="headImg" :src="headImg" mode="" style="width: 88rpx;height: 88rpx;border-radius: 44rpx;"></image>
 				<image @click="updateUserInfo" v-else src="../../static/img/icon_me.png" mode="" style="width: 88rpx;height: 88rpx;border-radius: 44rpx;"></image>
@@ -213,13 +213,20 @@
 				wxOpenData: '',
 				nickName:'',
 				phone:'',
-				ext:'',
+				ext:'',
+				 themeColor:'',
+
 			}
 		},
 		onLoad(opt) {
 			
-			
-            this.ext=this.$common.getExtStoreId();
+            this.ext=this.$common.getExtStoreId();
+			 this.themeColor = uni.getStorageSync("themeColor");
+			
+			uni.setNavigationBarColor({
+				frontColor: "#ffffff",
+				backgroundColor:'#'+ this.themeColor
+			})
 		},
 		onShow() {
 			const wxOpenData = this.$store.state.wxOpenData;