|
@@ -90,6 +90,16 @@
|
|
|
<iframe scrolling="yes" frameborder="0" src="${path}/common/static/welcome/welcome.html"></iframe>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
+ <div id="selectTodo" class="menu_dropdown bk_2" style="display:none">
|
|
|
+ <div>
|
|
|
+
|
|
|
+ <a onclick="toOrserList('${path}/admin/order/selectShopOrder?orderStatus=paySuccess')" ><span>(</span><span id="sendTheGoods" style="color: #f00">0</span><span>)待发货订单</span></a><br>
|
|
|
+ <a onclick="toOrserList('${path}/admin/order/selectShopOrder?orderStatus=returnOrder')" ><span>(</span><span id="returnGoods" style="color: #f00">0</span><span>)申请退款订单</span></a><br>
|
|
|
+ <a onclick="toOrserList('${path}/admin/order/selectShopOrder?orderStatus=returnOrderEtc')" ><span>(</span><span id="returnRefund" style="color: #f00">0</span><span>)申请退货订单</span></a><br>
|
|
|
+ <a onclick="toOrserList('${path}/admin/order/selectShopOrder?orderStatus=inOrder')" ><span>(</span><span id="exchange" style="color: #f00">0</span><span>)申请换货订单</span></a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</section>
|
|
|
|
|
|
<div class="contextMenu" id="Huiadminmenu">
|
|
@@ -100,4 +110,33 @@
|
|
|
</div>
|
|
|
</body>
|
|
|
<script type="text/javascript" src="${path}/common/js/index/index.js"></script>
|
|
|
+<script type="text/javascript" src="${path}/common/lib/layer/2.4/layer.js"></script>
|
|
|
+<script>
|
|
|
+ $.ajax({
|
|
|
+ "type" : "post",
|
|
|
+ "url" : "/tooth/admin/order/selectTodo",
|
|
|
+ /*"url" : "/admin/order/selectTodo",*/
|
|
|
+ "dataType" : "json",
|
|
|
+ async:false,
|
|
|
+ "success" : function(data) {
|
|
|
+ if(data.status){
|
|
|
+ $("#sendTheGoods").html(data.data.sendTheGoods);
|
|
|
+ $("#returnGoods").html(data.data.returnGoods);
|
|
|
+ $("#returnRefund").html(data.data.returnRefund);
|
|
|
+ $("#exchange").html(data.data.exchange);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "error":function(data){
|
|
|
+ alert("操作失败,请联系管理员!");
|
|
|
+ }
|
|
|
+ });
|
|
|
+ //页面层
|
|
|
+ layer.open({
|
|
|
+ type: 1,
|
|
|
+ area: ['300px', '180px'], //宽高
|
|
|
+ content: $("#selectTodo").html(),
|
|
|
+ offset: 'rb',
|
|
|
+ shade: 0
|
|
|
+ });
|
|
|
+</script>
|
|
|
</html>
|