Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / footsen

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • footsen
  • footseen
  • Nesting
  • newShare
  • myShareNum.html
Find file
BlameHistoryPermalink
  • agan's avatar
    xg · 7aa0a366
    agan committed a year ago
    7aa0a366
myShareNum.html 2.71 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
    <meta content="telephone=no" name="format-detection">
    <meta name="wap-font-scale" content="no">
    <title></title>
    <link rel="stylesheet" href="../../css/base.css">
    <link rel="stylesheet" href="css/desc.css?v=202010211058">
    <script src="../../lib/fsize.js"></script>
</head>

<body>
	<div class="main">
		<div class="mList"></div>
	</div> 
</body>
<script src="../../lib/jquery-3.1.1.min.js"></script>
<script src="../../js/time.js"></script>
<script type="text/javascript" src="https://app.ixiulive.com/static/js/webAppComm.js?v=202304251600"></script>
<script type="text/javascript" src="https://app.ixiulive.com/static/js/actHead.js?v=202401021620"></script>
<script src="../../lib/langchange.js?v=202401081427"></script>
<script type="text/javascript">
	$('title').html(langList[langType].share14);
	$.ajax({
      url:$ip+"/agent/getInviteUserList.html",
      type:"post",
      data:{
          page:1,
          type:0,
          uid:getRequest().uid,
          token:getRequest.token,
          os:"WEB",
          cid:"web_gw",
          lang:sessionStorage.lang
      },
      success: function (msg) {
          var res=JSON.parse(msg);
          console.log(res);
        	var str = '';
          var list = res.dataList;
          if(list.length>0){
          	for(var i=0;i<list.length;i++){
          		str += '<div class="mDetail">';
          		str += '	<a href="http://yazhai://_' + list[i].uid + '_zone">';
          		if(list[i].face == '/user/boy.png' || list[i].face == '/user/girl.png'){
								str += ' <img src="https://app.ixiulive.com/static/images/head2.png?x-oss-process=image/resize,w_72" />';
							} else {					
								str += ' <img src="' + cdn + list[i].face + '?x-oss-process=image/resize,w_72" />';
							}
          		str += '';
          		str += '	</a>';
          		str += '	<div class="mDetailInfo ellipsis">';
          		str += '		<p class="ellipsis">'+list[i].nickName+'</p>';
          		str += '		<p class="ellipsis">'+replaceTime(list[i].timeDate)+'</p>';
          		str += '	</div>';
          		str += '	<p class="mDetailNum ellipsis">ID:'+list[i].uid+'</p>';
          		str += '</div>';
          	}
          } else {
          	str += '<div class="notData">';
          	str += '	<img src="img/no.png">';
          	str += '	<p>'+langList[langType].share17+'</p>';
          	str += '</div>';
          }
          $('.mList').html(str);

      }
  })
</script>
</html>