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