代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>回复消息-品代网(pindai123.com)--国内首家建材行业供应链交易平台,F2B2C运营模式开创网络建材市场新纪元。</title>
<meta name="keywords" content="代理,加盟,招商,批发,零售,建材网上商城,PPR,PVC,PE,管材,管件,波纹管,缠绕管,卫浴,陶瓷,龙头,浴缸,地漏,吊顶,灯具,开关,插线板,插座,电线,电缆,水暖五金,地板,油漆,地暖,太阳能,净水器,装修材料" />
<meta name="description" content="品代网(pindai123.com)是中国首家采用云管理系统,互联网加实体营销管理为一体的交易平台。专业的建材行业综合网上购物平台,销售管材管件,水暖卫浴,厨卫洁具,灯具开关,板材五金,油漆涂料,电线电缆,家装材料,建筑材料,五金配件,防水等。正品低价,品质保证,便捷操作,诚信服务。">
<meta name="author" content="Administrator">
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="stylesheet" href="css/indent.css" />
<!-- 个人中心 -->
<link rel="stylesheet" href="css/userinfor.css" />
<link rel="stylesheet" href="css/add.css"/>
<!--右边栏-->
<link rel="stylesheet" href="css/right_side.css" />
<!-- 分页 -->
<link rel="stylesheet" href="css/jPages.css" />
<script src="js/jquery-1.7.2.min.js"></script>
<!-- 验证 -->
<script type="text/javascript" src="js/jquery.validate.js"></script>
<!--右边栏-->
<script type="text/javascript" src="js/right-side/parabola.js"></script>
<script type="text/javascript" src="js/right-side/right_side.js"></script>
<script src="js/jPages.js"></script>
</head>
<body>
<!-- 右侧固定导航链接 -->
<!--<div class="mui-mbar-tabs">
{$userright_html}
</div>-->
<!-- top_header 顶部 -->
{$user_head_html}
<!--top_logo -->
<div class="top_logo">
{$userinfo_head_html}
</div>
<div id="orderInquire">
<div class="wrap_1200 clearfix">
<!-- 左侧边栏 -->
<div class="indent_left clearfix">
{$indentleft_html}
</div>
<!-- 右侧 -->
<div class="userindex_right clearfix">
<div class="orderReply">
<div class="indent_right_box">
<div class="indent_right_box_title">
<ul>
<li><a id="reply" href="orderReply.php?state=1">回复</a></li>
<li><a id="no_reply" href="orderReply.php?state=0">未回复</a></li>
</ul>
<a href="orderInquire.php" target="_blank" class="orderReply_complain"><i class="orderReply_icon"></i>我要咨询/投诉</a>
</div>
</div>
<!--<a href="orderInquire.php" target="_blank" class="orderReply_complain">我要咨询</a>
<div class="orderReply_tab">
<a id="reply" class="orderReply_tab_a" href="orderReply.php?state=1">回复</a>
<a id="no_reply" class="orderReply_tab_a" href="orderReply.php?state=0">未回复</a>
</div>-->
<div class="orderReply_tabcon">
<!-- 回复-->
<div class="orderReply_tabcon_div">
<div class="orderReply_tabxon_head clearfix">
<div class="orderReply_tabxon_head_li">订单编号</div>
<div class="orderReply_tabxon_head_li">厂商名称</div>
<div class="orderReply_tabxon_head_li">提交时间</div>
</div>
<div class="orderReply_tabxon_main" id="itemContainer">
</div>
<!--页码-->
<div class="holder" style="">
</div>
</div>
</div>
</div>
</div>
</div>
<!--sidebar-->
{$sidebar_html}
<!-- 版权 -->
<div id="footermain">
{$foot_html}
</div>
<script type="text/javascript">
var per_page = 20; //每页5条
$(document).ready(function () {
(function ($) {
$.getUrlParam = function (name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if (r != null)
return unescape(r[2]);
return null;
};
})(jQuery);
//第一次默认加载的时候
var state = $.getUrlParam('state');
//根据url的state的参数来修改颜色
if(state == 1){
$('#reply').addClass('aaaa');
}else if(state == 0){
$('#no_reply').addClass('aaaa');
}
var userProxyId = {$userId};
var pageIndex = 1;
var pageSize = '';
Order_ComplainList(userProxyId,state,pageIndex,per_page);
function Order_ComplainList(userProxyId,state,pageIndex,pageSize){
$.ajax({
type: "post",
url: "api.php?act=Order_Complain_List",
async: false,
data: {
userProxyId: userProxyId,
state: state,
pageIndex: pageIndex,
pageSize: pageSize,
},
success: function(data) {
if (data != "") {
data = $.parseJSON(data);
var html = '';
$.each(data, function(n, value) {
$('#itemContainer').attr("recordCount", value.recordCount);
html += '<a href="javascript:;" class="orderReply_tabxon_main_line clearfix">';
html += '<div class="orderReply_tabxon_head_li">'+ value.OrderNo +'</div>';
html += '<div class="orderReply_tabxon_head_li">'+ value.FactoryName +'</div>';
html += '<div class="orderReply_tabxon_head_li">'+ value.CCDate +'</div>';
html += '</a>';
});
$('.orderReply_tabxon_main').html(html);
}
}
});
}
//分页
function pagination(recordCount) {
$(".holder").jPages({
containerID: "itemContainer",
first: '首页',
last: '尾页',
previous: '上页',
next: '下页',
totalItemCount: recordCount,
perPage: per_page,
startPage: 1,
startRange: 1,
midRange: 5,
endRange: 1,
keyBrowse: true,
callback: function (pages, items) {
/* lazy load current images */
items.showing.find("img").trigger("turnPage");
/* lazy load next page images */
items.oncoming.find("img").trigger("turnPage");
}
});
}
});
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。