qa-ifish7/web/Application/Shop/View/ShopOrder/index.html

92 lines
4.2 KiB
HTML

<!DOCTYPE html>
<html class="">
<head>
<meta charset="utf-8">
<meta content="text/html" http-equiv="content-type" />
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="webkit" name="renderer" />
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<title>{$pagetitle}-{$Think.config.setting.sitename}</title>
<link href="__PUBLIC__/skin/css/animate.min.css" rel="stylesheet">
<link href="__PUBLIC__/skin/css/font-awesome.min.css" rel="stylesheet">
<link href="__PUBLIC__/skin/css/nav.css" rel="stylesheet">
<link href="__PUBLIC__/skin/css/nav2.css" rel="stylesheet">
<link href="__PUBLIC__/skin/css/slick-min.css" rel="stylesheet" type="text/css"/>
<link href="__PUBLIC__/skin/css/global.css" rel="stylesheet">
</head>
<body>
<include file="./Application/Data/templateFile/header.html"/>
<div class="indexProduct UserCenter_nav">
<div class="indexProduct_content clear all">
<a href="/">首页</a>
<span class="fa fa-angle-right"></span>
<a href="#" class="on">用户中心</a>
</div>
</div>
<div class="indexProduct UserCenter MyOrder">
<div class="indexProduct_content clear all">
<div class="UserCenter_left fl"><include file="./Application/Member/View/Inc/left.html"/></div>
<div class="UserCenter_right fl">
<div class="MyOrder_title">
<form action="/index.php/Shop/ShopOrder/index.html" mehod="get" class="clear">
<div class="MyOrder_title_list fl">
订单号:<input type="text" name="order_num" value="{$_GET[order_num]}"/>
</div>
<div class="MyOrder_title_list fl">
订货号:<input type="text" name="type_no" value="{$_GET[type_no]}"/>
</div>
<div class="MyOrder_title_list fl">
产品名称:<input type="text" name="title" value="{$_GET[title]}"/>
</div>
<div class="MyOrder_title_submit">
<input type="submit" value="查询" />
</div>
</form>
</div>
<div class="MyOrder_content">
<div class="MyOrder_content_top clear">
<a href="/index.php/Shop/ShopOrder/index.html" class="fl {$_GET[status_code]?'':'on'}">全部订单</a>
<a href="/index.php/Shop/ShopOrder/index.html?status_code=101" class="fl {$_GET[status_code]==101?'on':''}">待付款(<span>{$readyPayCount}</span>)</a>
<a href="/index.php/Shop/ShopOrder/index.html?status_code=102" class="fl {$_GET[status_code]==102?'on':''}">待发货(<span>{$readyDeliveryCount}</span>)</a>
<a href="/index.php/Shop/ShopOrder/index.html?status_code=103" class="fl {$_GET[status_code]==103?'on':''}">待收货(<span>{$readyReceiptCount}</span>)</a>
<a href="/index.php/Shop/ShopOrder/index.html?status_code=104" class="fl {$_GET[status_code]==104?'on':''}">已完成订单(<span>{$ReceiptCount}</span>)</a>
</div>
<div class="MyOrder_content_bottom">
<div class="content_bottom_title clear">
<dd class="fl">商品信息</dd>
<dd class="fl">金额</dd>
<dd class="fl">订单状态</dd>
<dd class="fl">操作</dd>
</div>
<div class="content_bottom_txt">
<foreach name="data" item="v">
<include file="./Application/Shop/View/Inc/orderLi.html"/>
</foreach>
</div>
</div>
<div class="page vertical">{$listpage}</div>
</div>
</div>
</div>
</div>
<include file="./Application/Data/templateFile/footer.html"/>
<script type="text/javascript" src="/Public/skin/js/jquery-1.8.3.min.js"></script>
<script src="/Public/skin/js/global.js"></script>
<script src="/Public/skin/js/nav.js"></script>
<script src="/Public/Admin/layer/layer.js"></script>
<script src="/Public/Admin/js/globals.js"></script>
<script>
$(document).ready(function($){
$(".MyOrder .MyOrder_content .MyOrder_content_bottom .content_bottom_txt .bottom_txt_list").each(function() {
var h_1 = $(this).find(".list_body_product").height();
$(this).find(".body_product_li").height(h_1);
});
});
</script>
</body>
</html>