123456789101112131415161718192021222324 |
- var userAgent = window.localStorage.getItem(agentName);
- var firstUid = window.localStorage.getItem("firstUid");
- if(firstUid == null || firstUid == undefined){
- $('.div-qiehuan-account').hide()
- }
- appendFamilyMember($('#memberContainer'), function() {
- var jsonstr = $.parseJSON(window.localStorage.getItem(agentName));
- if(jsonstr.uid == jsonstr.represented) {
- $('.div-qiehuan-account').show()
- } else {
- $('.div-qiehuan-account').hide()
- }
- }, function() {
- //判断有授权家人,修改样式
- if($('#memberContainer').is(':hidden')) {
- $('#content').css('padding-top', '0px');
- } else {
- $('#content').css('padding-top', '90px');
- }
- });
- function goPage(url){
- window.location.href = url
- }
|