作者 潘浩文
1 个管道 的构建 通过 耗费 0 秒

个人中心页面渲染

... ... @@ -12,7 +12,7 @@
<div class="content">
<div class="cards-list">
<foreach name="list" item="vo">
<div class="item" onclick="enter()">
<div class="item" onclick="enter()" data-url="{:url('user/User/details',array('id'=>$vo.id))}">
<image src="{:cmf_get_image_preview_url($vo.thumbnail);}" class="img"></image>
<div class="right">
<div class="name">{$vo.tname}</div>
... ... @@ -26,7 +26,8 @@
</body>
<script>
function enter() {
window.location.href='./cards-detail.html';
var $this = $(this);
window.location.href=$this.data('url');
}
</script>
</html>
\ No newline at end of file
... ...