wangkaiyue 5 tahun lalu
induk
melakukan
f95435a42b

+ 1 - 0
src/jfw/front/vipsubscribe.go

@@ -43,6 +43,7 @@ func (s *Subscribepay) Introduce() {
 //试用完善信息
 func (s *Subscribepay) TailInfo() {
 	s.Render("/weixin/vipsubscribe/trial_info.html", &s.T)
+	return nil
 }
 
 //订阅收费购买页面

+ 2 - 2
src/jfw/modules/app/src/web/staticres/jyapp/me/css/index.css

@@ -36,8 +36,8 @@ body {
   position: absolute;
   left: 93px;
   right: 15px;
-  top: 0px;
-  bottom: 0px;
+  top: -6px;
+/*  bottom: 0px;*/
   margin: auto 0px;
 }
 

+ 8 - 2
src/jfw/modules/app/src/web/templates/me/index.html

@@ -3,7 +3,7 @@
 <head>
 	{{include "/common/meta.html"}}
 	<link rel="stylesheet" type="text/css" href="/jyapp/me/css/reset.css?v={{Msg "seo" "version"}}" />
-	<link rel="stylesheet" type="text/css" href="/jyapp/me/css/index.css?v={{Msg "seo" "version"}}" />
+	<link rel="stylesheet" type="text/css" href="/jyapp/me/css/index.css?v={{Msg "seo" "version"}}1" />
 	<link rel="stylesheet" type="text/css" href="/jyapp/css/font.css?v={{Msg "seo" "version"}}" />
 	<script src="/jyapp/js/jquery.js?v={{Msg "seo" "version"}}" type="text/javascript" charset="utf-8"></script>
 	<script src="/jyapp/js/fastclick.js?v={{Msg "seo" "version"}}"></script>
@@ -127,7 +127,9 @@
 						userInfo.headimageurl = userInfo.headimageurl.replace(/^http:\/\//,"https://");
 						$("#headimage").attr("src",userInfo.headimageurl);
 					}
-					$(".coreRight").html(userInfo.nickname);
+					//编辑个人信息
+					$(".coreRight").append(userInfo.nickname);
+					$(".coreRight").append('<div style="font-size:12px;margin-top:-2.8em" onclick="person_infor()"> 编辑个人信息 <i class="jyapp-icon jyapp-icon-youjiantou" style="top:1.5px;margin-left:3px "> </i></div>')
 				}
 				redSpotOnMenu();
 			});
@@ -142,6 +144,10 @@
 				$(".listTwo .redspot").show();
 			}
 		}
+		//编辑个人信息
+		function person_infor(){
+			window.location.href="#";
+		}
 	</script>
 </body>
 </html>