Commit c10555db by libai

测试

parent 9766df6b
Showing with 5 additions and 3 deletions
......@@ -501,7 +501,7 @@ $(function(){
})
$(".more-layer-btn-ul1 li").on("click",function(){
var _self=$(this)
$(".more-layer-btn-ul1 li").removeClass("more-click")
$(".more-layer-btn-ul1 li").removeClass("more-click")
_self.addClass("more-click")
timeNum=_self.attr("data-type")
})
......
......@@ -587,8 +587,10 @@ $(function () {
if (data.roomBaseInfo.addr != '') html += '<div><span>來自:</span> ' + data.roomBaseInfo.addr + '</div>';
else html += '<div><span>來自:</span> 未知</div>';
html += '<div><span>年齡:</span> ' + data.roomBaseInfo.age + '</div>';
html += '<div><span>身高:</span> ' + data.roomBaseInfo.height + 'cm</div>';
html += '<div><span>體重:</span> ' + data.roomBaseInfo.weight + 'kg</div>';
if(data.roomBaseInfo.height=='')html += '<div><span>身高:</span> 秘密</div>';
else html += '<div><span>身高:</span> ' + data.roomBaseInfo.height + 'cm</div>';
if(data.roomBaseInfo.weight=='') html += '<div><span>體重:</span> 秘密</div>';
else html += '<div><span>體重:</span> ' + data.roomBaseInfo.weight + 'kg</div>';
html += '<div><span>星座:</span> ' + data.roomBaseInfo.constellation + '</div>';
html += '<div><span>學歷:</span> ' + data.roomBaseInfo.culture + '</div>';
html += '<div><span>職業:</span> ' + data.roomBaseInfo.work + '</div>';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment