Authored by dongjunjie

改bug

... ... @@ -63,7 +63,7 @@
<div id="businessDetail">
<div class="overViewTitle">
<h3>交易明细</h3>
<span>展示当日商品交易情况(15:30更新)</span>
<span>展示当日商品交易情况({{listUpdateTime}}更新)</span>
</div>
<div class="detailList">
... ... @@ -88,6 +88,7 @@
rankNow: '0',
rankChange: '0',
rankLevel: 5,
listUpdateTime:'',
grid:{
url:'/report/getOrdersGoodsRptList',
columns:[
... ... @@ -161,6 +162,11 @@
console.log(rs.message);
});
}
},
events:{
complete(data){
this.listUpdateTime = data.list[0].hour + ":00";
}
}
}
</script>
\ No newline at end of file
... ...
... ... @@ -33,7 +33,6 @@ $('#sidebar .nav .has-sub>a').click(function() {
});
$("#sidebar .nav .sub-menu a").each(function() {
console.log('1');
var attr = $(this).attr('href');
if (!isMenuShow && attr == window.location.pathname + window.location.search) {
$(this).parents(".sub-menu").show();
... ...