Init Repo

This commit is contained in:
root
2019-09-06 23:53:10 +08:00
commit f0ef89dfbb
7905 changed files with 914138 additions and 0 deletions

View File

@ -0,0 +1,48 @@
// 获取浏览记录
function getHistory(){
$('#Load').show();
loading = true;
var param = {};
param.pagesize = 10;
param.page = Number( $('#currPage').val() ) + 1;
$.post(WST.U('wechat/goods/historyQuery'), param, function(data){
var json = WST.toJson(data);
var html = '';
if(json && json.Rows && json.Rows.length>0){
var gettpl = document.getElementById('list').innerHTML;
laytpl(gettpl).render(json.Rows, function(html){
$('#listBox').append(html);
});
$('#currPage').val(data.CurrentPage);
$('#totalPage').val(data.TotalPage);
}else{
html += '<div class="wst-prompt-icon"><img src="'+ window.conf.WECHAT +'/img/nothing-history.png"></div>';
html += '<div class="wst-prompt-info">';
html += '<p>暂无浏览记录</p>';
html += '<button class="ui-btn-s" onclick="javascript:WST.intoIndex();">去逛逛</button>';
html += '</div>';
$('#listBox').html(html);
}
WST.imgAdapt('j-imgAdapt');
loading = false;
$('#Load').hide();
echo.init();//图片懒加载
});
}
var currPage = totalPage = 0;
var loading = false;
$(document).ready(function(){
WST.initFooter();
getHistory();
$(window).scroll(function(){
if (loading) return;
if ((5 + $(window).scrollTop()) >= ($(document).height() - screen.height)) {
currPage = Number( $('#currPage').val() );
totalPage = Number( $('#totalPage').val() );
if( totalPage > 0 && currPage < totalPage ){
getHistory();
}
}
});
});

View File

@ -0,0 +1,47 @@
{extend name="default/base" /}
{block name="title"}浏览记录 - {__block__}{/block}
{block name="css"}
<link rel="stylesheet" href="__WECHAT__/css/history.css?v={$v}">
{/block}
{block name="header"}
<div id="info_list">
<header style="background:#ffffff;" class="ui-header ui-header-positive ui-border-b wst-header">
<i class="ui-icon-return" onclick="history.back()"></i><h1>浏览记录</h1>
</header>
{/block}
{block name="main"}
<input type="hidden" name="" value="" id="currPage" autocomplete="off">
<input type="hidden" name="" value="" id="totalPage" autocomplete="off">
<script type="text/html" id="list">
{{# for(var i=0;i<d.length;++i){ }}
<div class="ui-row-flex goods-item">
<div class="ui-col">
<div class="img j-imgAdapt">
<a href="javascript:void(0);" onclick="javascript:WST.intoGoods({{d[i]['goodsId']}});"><img src="__ROOT__/{:WSTConf('CONF.goodsLogo')}" data-echo="__ROOT__/{{d[i]['goodsImg']}}"></a>
</div>
</div>
<div class="ui-col ui-col-3" onclick="javascript:WST.intoGoods({{d[i]['goodsId']}});">
<div class="ui-row-flex ui-row-flex-ver wst-info">
<div class="goodsTitle ui-nowrap-multi">{{d[i].goodsName}}</div>
<div>
<p class="price"><span>¥ </span>{{d[i].shopPrice}}</p>
<p class="goods-info">成交数:{{d[i].saleNum}}</p>
</div>
</div>
</div>
</div>
{{# } }}
</script>
<section class="ui-container" id="listBox">
</section>
{/block}
{block name="include"}
{include file="default/dialog" /}<!-- 对话框模板 -->
{/block}
{block name="js"}
<script type='text/javascript' src='__WECHAT__/js/jquery.min.js'></script>
<script type='text/javascript' src='__WECHAT__/users/history/history.js?v={$v}'></script>
{/block}