diff --git a/manifest.json b/manifest.json
index e36313c..c3ec175 100644
--- a/manifest.json
+++ b/manifest.json
@@ -2,8 +2,8 @@
"name" : "瞬聊",
"appid" : "__UNI__E41111F",
"description" : "一款即时聊天软件",
- "versionName" : "3.4.8",
- "versionCode" : 348,
+ "versionName" : "3.5.0",
+ "versionCode" : 350,
"transformPx" : false,
"app-plus" : {
"bounce" : "none",
diff --git a/pages.json b/pages.json
index 53e09a8..9f8481a 100644
--- a/pages.json
+++ b/pages.json
@@ -383,6 +383,12 @@
"style": {
"navigationBarTitleText": ""
}
+ },
+ {
+ "path": "pages/user/selfInfo/change_bio",
+ "style": {
+ "navigationBarTitleText": ""
+ }
}
],
"tabBar": {
diff --git a/pages/common/userCard/index.vue b/pages/common/userCard/index.vue
index 423dad7..78ebfd5 100644
--- a/pages/common/userCard/index.vue
+++ b/pages/common/userCard/index.vue
@@ -13,17 +13,17 @@
{{sourceUserInfo.userID || sourceUserInfo.id}}
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/find/friend-circle/components/circleItem.vue b/pages/find/friend-circle/components/circleItem.vue
index 795c4ce..094e80f 100644
--- a/pages/find/friend-circle/components/circleItem.vue
+++ b/pages/find/friend-circle/components/circleItem.vue
@@ -15,7 +15,7 @@
-
+
- {{ storeSelfInfo.bio }}
+
@@ -384,7 +384,7 @@
let that = this;
let tempFilePaths = [];
//拍照
- if (index == 0) {
+ if (index == 1) {
uni.chooseImage({
count: 9, //默认9
sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
@@ -399,9 +399,10 @@
return;
}
});
+ return ;
}
//选择视频
- if (index == 1) {
+ if (index == 2) {
uni.chooseVideo({
sourceType: ['camera', 'album'],
maxDuration: 60,
@@ -417,6 +418,7 @@
return;
}
});
+ return ;
}
},
diff --git a/pages/user/selfInfo/InfoItem.vue b/pages/user/selfInfo/InfoItem.vue
index e298754..5ff7423 100644
--- a/pages/user/selfInfo/InfoItem.vue
+++ b/pages/user/selfInfo/InfoItem.vue
@@ -42,18 +42,23 @@
\ No newline at end of file
diff --git a/pages/user/selfInfo/index.vue b/pages/user/selfInfo/index.vue
index ca0f97f..685aa12 100644
--- a/pages/user/selfInfo/index.vue
+++ b/pages/user/selfInfo/index.vue
@@ -2,20 +2,25 @@
-
-
-
-
-
-
- (showDatePicker = true)" title="生日"
- :content="getBirth" />
-
+
+
+
+
+
+
+ (showDatePicker = true)" title="生日"
+ :rightText="getBirth" clickable showArrow />
+
-
-
-
-
+
+
+
+
+
+
+
+
+
(showDatePicker = false)" v-model="selfInfo.birth" mode="date" />
@@ -169,10 +174,14 @@
},
confirmDate({value}) {
this.loadingState.birth = true;
- console.log(this.$store.getters.storeSelfInfo.faceURL);
this.updateSelfInfo({birth: value,},"birth",);
this.showDatePicker = false;
},
+ changeBio(){
+ uni.navigateTo({
+ url: `/pages/user/selfInfo/change_bio`,
+ });
+ }
},
};