代码修改后的版本,全部提交
This commit is contained in:
767
Mtxfw.VipSite/mobile/myorders0.html
Normal file
767
Mtxfw.VipSite/mobile/myorders0.html
Normal file
@@ -0,0 +1,767 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,initial-scale=1.0,width=device-width" />
|
||||
<meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
|
||||
<title></title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/api.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/css/content.css" />
|
||||
<script type="text/javascript" src="/scripts/jquery-2.0.2.min.js"></script>
|
||||
<script type="text/javascript" src="/scripts/jquery.cookie.min.js"></script>
|
||||
<!--<script type="text/javascript" src="/scripts/iscroll.js"></script>-->
|
||||
<script type="text/javascript" src="/script/main.js?t=0"></script>
|
||||
<script type="text/javascript" src="/layer/layer.js"></script>
|
||||
<script type="text/javascript" src="/Scripts/long.js"></script>
|
||||
<script type="text/javascript" src="/script/moment.js"></script>
|
||||
<script type="text/javascript" src="/script/area.js?t=0"></script>
|
||||
<script type="text/javascript" src="/script/api.js"></script>
|
||||
<style type="text/css">
|
||||
html, body {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
.pullDown {
|
||||
position: absolute;
|
||||
top: -1.25rem;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 100;
|
||||
text-align: center;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.pullUp {
|
||||
position: absolute;
|
||||
bottom: -1.25rem;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 100;
|
||||
text-align: center;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.pullDown.loading, .pullUp.loading, .pullDown.refresh, .pullUp.refresh {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.Orders_List ul.toptitle {
|
||||
border-radius: 0.8em 0.8em 0 0;
|
||||
}
|
||||
|
||||
.Orders_List ul.midtitle {
|
||||
border-radius: 0 0 0.8em 0.8em;
|
||||
margin-bottom: 0.8em;
|
||||
}
|
||||
|
||||
.Orders_List ul.toptitle li.cz span.Order_botton2 {
|
||||
margin-top: 0.8em;
|
||||
}
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
var userId = null;
|
||||
var LoginId = null;
|
||||
var CartId = null;
|
||||
var opentimes = null;
|
||||
var t = 0, t0 = 0, orderid = 0;
|
||||
var title = "发货订单";
|
||||
var myScroll = null;
|
||||
var pullDown = 1; // 下拉刷新避免多次执行
|
||||
var pullUp = 1; // 上拉加载避免多次执行
|
||||
var downHeight = 0;
|
||||
var upHeight = 0;
|
||||
var isload = true;//设置是否终止滚动加载
|
||||
var curScrollHeight = 0;//当前滚动位置
|
||||
var curCount = 1;//计数器,防止滚动时重复执行加载下一页
|
||||
$(document).ready(function () {
|
||||
userId = getlocalStorage("userId");
|
||||
LoginId = getlocalStorage("LoginId");
|
||||
CartId = getlocalStorage("CartId");
|
||||
var tt = $.getUrlParam("t0");
|
||||
if (tt != null) {
|
||||
t0 = tt;
|
||||
}
|
||||
tt = $.getUrlParam("t");
|
||||
if (tt != null) {
|
||||
t = tt;
|
||||
}
|
||||
if (t == 1) {
|
||||
title = "发货订单";
|
||||
} else if (t == 2) {
|
||||
title = "快递订单";
|
||||
} else if (t == 3) {
|
||||
title = "自提订单";
|
||||
}
|
||||
$("header h1").html(title);
|
||||
$(document).attr("title", title);
|
||||
$("title").html(title);
|
||||
|
||||
$($(".tab a")[t0]).addClass("on").siblings().removeClass("on");
|
||||
$(".tab a").on("click", function () {
|
||||
var num = $(this).index();
|
||||
$(this).addClass("on").siblings().removeClass("on");
|
||||
t0 = num;
|
||||
rdata(1);
|
||||
$("#wrapper").animate({ scrollTop: 0 }, 500);
|
||||
});
|
||||
opentimes = setInterval(function () {
|
||||
var selectqydatas = getlocalStorage("address_selectqy_datas");
|
||||
if (selectqydatas != null) {
|
||||
var adatas = selectqydatas.split(",");
|
||||
showaddress(adatas[0], adatas[1], adatas[2])
|
||||
clearlocalStorage("address_selectqy_datas");
|
||||
}
|
||||
var myrefresh = getlocalStorage("myorders_refresh");
|
||||
if (myrefresh != null) {
|
||||
rdata(1);
|
||||
clearlocalStorage("myorders_refresh");
|
||||
}
|
||||
}, 1000);
|
||||
rdata(1);
|
||||
|
||||
|
||||
|
||||
|
||||
});
|
||||
|
||||
function onScroll0() {
|
||||
isload = true;//设置是否终止滚动加载
|
||||
curScrollHeight = 0;//当前滚动位置
|
||||
curCount = 1;//计数器,防止滚动时重复执行加载下一页
|
||||
$("#wrapper").scroll(function () {
|
||||
var pageHeight = $("#sysnew").height();
|
||||
var showHeight = $("#wrapper").height();
|
||||
var scrollHeight = $("#wrapper").scrollTop();
|
||||
|
||||
if (curScrollHeight - scrollHeight < 10 && curScrollHeight > 0) {
|
||||
if (curCount == 1 && isload) {
|
||||
|
||||
rdata(0);
|
||||
}
|
||||
curCount++; //加载下一页后计数器+1
|
||||
}
|
||||
if (curScrollHeight < scrollHeight) {
|
||||
curScrollHeight = pageHeight - showHeight;//滚动到页面底部时,重设当前滚动位置
|
||||
curCount = 1;
|
||||
}
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
function rdata(ag) {
|
||||
userId = getlocalStorage("userId");
|
||||
LoginId = getlocalStorage("LoginId");
|
||||
var Start = $("#sysnew .databox").length;
|
||||
if (ag == 1) {
|
||||
Start = 0;
|
||||
}
|
||||
if ($(".ajaxLoader.uhide").length > 0) {
|
||||
$(".ajaxLoader").removeClass("uhide");
|
||||
var dataindex = 10;
|
||||
|
||||
if (t0 == 1) {
|
||||
dataindex = 1;
|
||||
} else if (t0 == 2) {
|
||||
dataindex = 2;
|
||||
} else if (t0 == 3) {
|
||||
dataindex = 3;
|
||||
}
|
||||
$.ajax({
|
||||
type: 'GET',
|
||||
url: "/apiajax.ashx",
|
||||
data: "&action=getorderslist&ifweb=1&t=" + t + "&t0=" + dataindex + "&Start=" + Start + "&userId=" + (userId != null ? userId : "") + "&LoginId=" + (LoginId != null ? LoginId : ""),
|
||||
dataType: "JSON",
|
||||
error: function (xhr, type) {
|
||||
tishi3("发生错误:" + JSON.stringify(xhr));
|
||||
},
|
||||
success: function (data) {
|
||||
|
||||
|
||||
if (data) {
|
||||
if (data.status == 1) {
|
||||
|
||||
var html = "";
|
||||
|
||||
if (data.data.length > 0) {
|
||||
var html = "";
|
||||
for (i = 0; i < data.data.length; i++) {
|
||||
var bifshow = 0;
|
||||
if (ag == 0) {
|
||||
if ($("#databox_" + data.data[i].id).length == 0) {
|
||||
bifshow = 1;
|
||||
}
|
||||
} else {
|
||||
bifshow = 1;
|
||||
}
|
||||
if (bifshow == 1) {
|
||||
html += addMsg(data.data[i]);
|
||||
}
|
||||
}
|
||||
if (ag == 1 || ag == 2) {
|
||||
$("#sysnew").html(html);
|
||||
if (ag == 1) {
|
||||
onScroll0();
|
||||
}
|
||||
} else {
|
||||
$("#sysnew").append(html);
|
||||
}
|
||||
$(".more_box").html("");
|
||||
} else {
|
||||
if (Start > 0) {
|
||||
if (Start > 10) {
|
||||
$(".more_box").html("亲!找不到更多了");
|
||||
}
|
||||
} else {
|
||||
$('#sysnew').html("");
|
||||
$(".more_box").html("亲,暂无信息!");
|
||||
}
|
||||
}
|
||||
$(".ajaxLoader").addClass("uhide");
|
||||
} else {
|
||||
|
||||
tishi3(data.msg);
|
||||
$(".ajaxLoader").addClass("uhide");
|
||||
if (data.msg == "您未登录") {
|
||||
clearlocalStorage("userId");
|
||||
clearlocalStorage("LoginId");
|
||||
onlink("/");
|
||||
}
|
||||
}
|
||||
} else {
|
||||
tishi3("网络错误!");
|
||||
$(".ajaxLoader").addClass("uhide");
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
function addMsg(param) {
|
||||
var html = "<ul class=\"toptitle databox\"><li class=\"ddh\"><label>订单号:</label><span>" + param.orderid + "</span></li>";
|
||||
html += "<li><label>总数量:</label><span class=\"je\">" + param.Totalnum + "</span></li>";
|
||||
html += "<li><label>总金额:</label><span class=\"je\">" + param.Totalprice + "</span></li>";
|
||||
html += "<li class=\"xdsj\"><label>下单时间:</label><span>" + param.SubmitDate + "</span></li>";
|
||||
html += "<li class=\"zt\"><label>状态:</label><span id='status_" + param.O_Id + "'>" + param.status0 + "</span></li>";
|
||||
html += "<li class=\"cz\"><span id='cz_" + param.O_Id + "' Contactname='" + param.Contactname + "' Contacttel='" + param.Contacttel + "' Province='" + param.Province + "' City='" + param.City + "' County='" + param.County + "' Address='" + param.Address + "'>" + param.status1 + "</span><span class=\"Order_botton2\" onclick=\"onorderdetail(" + param.O_Id + ")\">查看详情</span></li>";
|
||||
html += "</ul>";
|
||||
html += "<ul class=\"midtitle\">";
|
||||
var pics = param.pics;
|
||||
for (j = 0; j < pics.length; j++) {
|
||||
html += "<li onclick=\"ondetail(" + pics[j].prodid + ")\"><span class='black' title=\"" + pics[j].prodName + pics[j].selcolor + "\"><img src='" + pics[j].prodimg + "'/></span></li>";
|
||||
}
|
||||
html += "</ul>";
|
||||
return html;
|
||||
}
|
||||
function onorderdetail(orderid) {
|
||||
onlink("myorders_info.html?t="+t+"&orderid=" + orderid);
|
||||
}
|
||||
function ondetail(id) {
|
||||
onlink("shop_view.html?id=" + id);
|
||||
}
|
||||
function stopPropagation(e) {
|
||||
if (e.stopPropagation)
|
||||
e.stopPropagation();
|
||||
else
|
||||
e.cancelBubble = true;
|
||||
}
|
||||
function hideshowthjto(type) {
|
||||
$("#showthjto" + type).addClass("uhide");
|
||||
}
|
||||
function showsel(type) {
|
||||
$("#showthjto" + type).removeClass("uhide");
|
||||
|
||||
}
|
||||
function showfh(id, oid, peitype) {
|
||||
orderid = id;
|
||||
if (peitype == 0) {
|
||||
$("#kdcompay1").val('sto');
|
||||
} else {
|
||||
$("#kdcompay1").val('auto');
|
||||
}
|
||||
onkdchange(1);
|
||||
showsel(1);
|
||||
}
|
||||
function editwlxx(id, kdgs, kdgsname, ydh, wlremarks) {
|
||||
orderid = id;
|
||||
$("#txtBody2").val(ydh);
|
||||
$("#kdcompay2").val(kdgs);
|
||||
$("#txtBZContent2").val(wlremarks);
|
||||
onkdchange(2);
|
||||
showsel(2);
|
||||
}
|
||||
function showcancelfh(id, kdgs, kdgsname, ydh, wlremarks) {
|
||||
orderid = id;
|
||||
$("#txtBody3").html(ydh);
|
||||
$("#kdcompay3").html(kdgsname);
|
||||
$("#txtBZContent3").html(wlremarks);
|
||||
onkdchange(3);
|
||||
showsel(3);
|
||||
}
|
||||
function showaddressbox(id) {
|
||||
|
||||
orderid = id;
|
||||
var Contactname = $("#cz_" + id).attr("Contactname");
|
||||
var Contacttel = $("#cz_" + id).attr("Contacttel");
|
||||
//var Province = $("#cz_" + id).attr("Province");
|
||||
//var City = $("#cz_" + id).attr("City");
|
||||
//var County = $("#cz_" + id).attr("County");
|
||||
var Address = $("#cz_" + id).attr("Address");
|
||||
|
||||
$("#txt_Name").val(Contactname);
|
||||
$("#txt_Phone").val(Contacttel);
|
||||
//$("#Province").val(Province);
|
||||
//$("#City").val(City);
|
||||
//$("#County").val(County);
|
||||
//$('#txt_area').val(getname(Province, City, County));
|
||||
$("#txt_Address").val(Address);
|
||||
showsel(4);
|
||||
}
|
||||
function qyfhorder(t) {
|
||||
var status = $("#status_" + orderid);
|
||||
var cz = $("#cz_" + orderid);
|
||||
var body = fTrim($("#txtBody1").val());
|
||||
var kdcompay = fTrim($("#kdcompay1").val());
|
||||
var bz = fTrim($("#txtBZContent1").val());
|
||||
if (kdcompay == "") {
|
||||
tishi3("快递公司必须选择!");
|
||||
$("#kdcompay1").focus();
|
||||
return false;
|
||||
}
|
||||
if (body == "") {
|
||||
tishi3("快递单号不能为空!");
|
||||
$("#txtBody1").focus();
|
||||
return false;
|
||||
}
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: "/apiajax.ashx?ifweb=1",
|
||||
data: { action: "qyfhorder", userId: userId, LoginId: LoginId, orderid: orderid, kdcompay: kdcompay, body: body, bz: bz },
|
||||
dataType: "json",
|
||||
error: function (xhr) {
|
||||
tishi3("发生错误:" + JSON.stringify(xhr));
|
||||
},
|
||||
success: function (data) {
|
||||
if (data.status == 1) {
|
||||
$(cz).html("发货成功");
|
||||
hideshowthjto(t);
|
||||
setlocalStorage("mybusiness_refresh", 1);
|
||||
rdata(1);
|
||||
/*var closeInterval0 = setInterval(function () {
|
||||
clearInterval(closeInterval0);
|
||||
closeWin();
|
||||
}, 500);*/
|
||||
} else {
|
||||
tishi3(data.msg);
|
||||
}
|
||||
layer.close(index_);
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
function qyeditwl(t) {
|
||||
var status = $("#status_" + orderid);
|
||||
var cz = $("#cz_" + orderid);
|
||||
var body = fTrim($("#txtBody2").val());
|
||||
var kdcompay = fTrim($("#kdcompay2").val());
|
||||
var bz = fTrim($("#txtBZContent2").val());
|
||||
if (kdcompay == "") {
|
||||
tishi3("快递公司必须选择!");
|
||||
$("#kdcompay2").focus();
|
||||
return false;
|
||||
}
|
||||
if (body == "") {
|
||||
tishi3("快递单号不能为空!");
|
||||
$("#txtBody0").focus();
|
||||
return false;
|
||||
}
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: "/apiajax.ashx?ifweb=1",
|
||||
data: { action: "editwl", userId: userId, LoginId: LoginId, orderid: orderid, kdcompay: kdcompay, body: body, bz: bz },
|
||||
dataType: "json",
|
||||
error: function (xhr) {
|
||||
tishi3("发生错误:" + JSON.stringify(xhr));
|
||||
},
|
||||
success: function (data) {
|
||||
if (data.status == 1) {
|
||||
$(cz).html("修改物流成功");
|
||||
hideshowthjto(t);
|
||||
setlocalStorage("mybusiness_refresh", 1);
|
||||
rdata(1);
|
||||
/*var closeInterval0 = setInterval(function () {
|
||||
clearInterval(closeInterval0);
|
||||
closeWin();
|
||||
}, 500);*/
|
||||
} else {
|
||||
tishi3(data.msg);
|
||||
}
|
||||
layer.close(index_);
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
function qycancelfh(t) {
|
||||
var status = $("#status_" + orderid);
|
||||
var cz = $("#cz_" + orderid);
|
||||
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: "/apiajax.ashx?ifweb=1",
|
||||
data: { action: "cancelfh", userId: userId, LoginId: LoginId, orderid: orderid },
|
||||
dataType: "json",
|
||||
error: function (xhr) {
|
||||
tishi3("发生错误:" + JSON.stringify(xhr));
|
||||
},
|
||||
success: function (data) {
|
||||
if (data.status == 1) {
|
||||
$(cz).html("取消发货成功");
|
||||
hideshowthjto(t);
|
||||
setlocalStorage("mybusiness_refresh", 1);
|
||||
rdata(1);
|
||||
/*var closeInterval0 = setInterval(function () {
|
||||
clearInterval(closeInterval0);
|
||||
closeWin();
|
||||
}, 500);*/
|
||||
} else {
|
||||
tishi3(data.msg);
|
||||
}
|
||||
layer.close(index_);
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
function qyeditaddress(t) {
|
||||
var status = $("#status_" + orderid);
|
||||
var cz = $("#cz_" + orderid);
|
||||
var name = fTrim($("#txt_Name").val());
|
||||
var phone = fTrim($("#txt_Phone").val());
|
||||
//var province = fTrim($("#Province").val());
|
||||
//var city = fTrim($("#City").val());
|
||||
//var county = fTrim($("#County").val());
|
||||
var address = fTrim($("#txt_Address").val());
|
||||
if (name == "") {
|
||||
tishi3("联系人不能为空!");
|
||||
$("#txt_Name").focus();
|
||||
return false;
|
||||
}
|
||||
if (phone == "") {
|
||||
tishi3("联系电话不能为空!");
|
||||
$("#txt_Phone").focus();
|
||||
return false;
|
||||
}
|
||||
/*if (province == "") {
|
||||
tishi3("所在省份必须选择!");
|
||||
return false;
|
||||
}
|
||||
if (city == "") {
|
||||
tishi3("所在城市必须选择!");
|
||||
return false;
|
||||
}*/
|
||||
|
||||
if (address == "") {
|
||||
tishi3("邮寄地址不能为空!");
|
||||
$("#txt_Address").focus();
|
||||
return false;
|
||||
}
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: "/apiajax.ashx?ifweb=1",
|
||||
data: { action: "editaddress", userId: userId, LoginId: LoginId, orderid: orderid, name: name, phone: phone, address: address },
|
||||
dataType: "json",
|
||||
error: function (xhr) {
|
||||
tishi3("发生错误:" + JSON.stringify(xhr));
|
||||
},
|
||||
success: function (data) {
|
||||
if (data.status == 1) {
|
||||
$(cz).html("修改地址成功");
|
||||
hideshowthjto(t);
|
||||
setlocalStorage("mybusiness_refresh", 1);
|
||||
rdata(1);
|
||||
/*var closeInterval0 = setInterval(function () {
|
||||
clearInterval(closeInterval0);
|
||||
closeWin();
|
||||
}, 500);*/
|
||||
} else {
|
||||
tishi3(data.msg);
|
||||
}
|
||||
layer.close(index_);
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
function qxorder(orderid) {
|
||||
var index_ = layer.confirm('此操作不可恢复,您确认要取消订单吗?', {
|
||||
title: "确认选择",
|
||||
btn: ['是的', '我点错了'] //按钮
|
||||
}, function () {
|
||||
|
||||
var status = $("#status_" + orderid);
|
||||
var cz = $("#cz_" + orderid);
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: "/apiajax.ashx?ifweb=1",
|
||||
data: { "action": "CancelOrder", "userId": userId, "LoginId": LoginId, "orderid": orderid },
|
||||
dataType: "json",
|
||||
error: function (xhr) {
|
||||
tishi3("发生错误:" + JSON.stringify(xhr));
|
||||
},
|
||||
success: function (data) {
|
||||
if (data.status == 1) {
|
||||
$(cz).html("取消成功");
|
||||
rdata(1);
|
||||
} else {
|
||||
tishi3(data.msg);
|
||||
}
|
||||
layer.close(index_);
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
);
|
||||
}
|
||||
function getcity() {
|
||||
var showqy = $("#Province").val() + "," + $("#City").val() + "," + $("#County").val();
|
||||
setlocalStorage("showqy", showqy);
|
||||
layer.open({
|
||||
type: 2,
|
||||
title: false,
|
||||
closeBtn: false,
|
||||
content: "address_selectqy.html",
|
||||
area: ['100%', '100%']
|
||||
|
||||
});
|
||||
}
|
||||
function showaddress(Province, City, County) {
|
||||
$('#Province').val(Province);
|
||||
$('#City').val(City);
|
||||
$('#County').val(County);
|
||||
$('#txt_area').val(getname(Province, City, County));
|
||||
}
|
||||
function onkdchange(t) {
|
||||
|
||||
if ($('#kdcompay' + t).val() == "auto") {
|
||||
$("#kddh_box" + t).hide();
|
||||
} else {
|
||||
$("#kddh_box" + t).show();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
</head>
|
||||
|
||||
<body class="wrap">
|
||||
<header>
|
||||
<div class="ub">
|
||||
<div class="nav-btn" id="nav-left" style=" margin:0; padding:0; padding-top:0.2em; min-width:3em" onclick="closeWin()">
|
||||
|
||||
<img src="../image/faifei.png" style="margin-left:0; margin-top:0em; height:1.2em;width:1.2em;" />
|
||||
|
||||
|
||||
</div>
|
||||
<h1 class="ub-f1"></h1>
|
||||
<div class="nav-btn blue" id="nav-right" style=" margin:0; padding:0; min-width:3em; ">
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<section class="ub-f1" id="wrapper">
|
||||
|
||||
<div style="background-color:#31343D">
|
||||
<div class="tab flex-around">
|
||||
<a class="on">全部</a><a>待发货</a><a>待收货</a><a>已完成</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
<div style="padding:0.8em;">
|
||||
|
||||
<div class="Orders_List" id="sysnew"> </div>
|
||||
<div class="clear"></div>
|
||||
<div class="more_box"></div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<div class="ajaxLoader ub ub-ac uhide" onclick="reload()">
|
||||
<div class="ub ub-ac ub-ver"><img src="image/load.gif" /><br>正在加载...</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="showthjto uhide" id="showthjto1" onclick='hideshowthjto(1);'>
|
||||
<div class="showthjto_box" onclick="stopPropagation(event)">
|
||||
<h3><span>确认发货</span><span class="close" onclick='hideshowthjto(1);'><img src="../image/close.png" /></span></h3>
|
||||
<div class="ub ub-ac" style="background-color: #FFFFFF;margin-top: .8em;margin-bottom: .8em;">
|
||||
您确认要发货吗?
|
||||
|
||||
</div>
|
||||
<div class="ub ub-ac" style="">
|
||||
<label><font color="red">*</font>快递公司:</label><p>
|
||||
<select id="kdcompay1" onchange="onkdchange(1)">
|
||||
<option value="sto">申通</option>
|
||||
<option value="auto">自提</option>
|
||||
<option value="sf">顺丰</option>
|
||||
<option value="jt">极兔</option>
|
||||
<option value="yt">圆通</option>
|
||||
<option value="yd">韵达</option>
|
||||
<option value="tt">天天</option>
|
||||
<option value="ems">EMS</option>
|
||||
<option value="zto">中通</option>
|
||||
<option value="ht">百世快递</option>
|
||||
<option value="qf">全峰</option>
|
||||
<option value="db">德邦</option>
|
||||
<option value="gt">国通</option>
|
||||
<option value="rfd">如风达</option>
|
||||
<option value="jd">京东快递</option>
|
||||
<option value="zjs">宅急送</option>
|
||||
<option value="emsg">EMS国际</option>
|
||||
<option value="fedex">Fedex国际</option>
|
||||
<option value="yzgn">邮政国内(挂号信)</option>
|
||||
<option value="ups">UPS国际快递</option>
|
||||
<option value="ztky">中铁快运</option>
|
||||
|
||||
</select>
|
||||
</p>
|
||||
</div>
|
||||
<div class="ub ub-ac uinput11" id="kddh_box1" style="margin:0.8em 0;">
|
||||
<label><font color="red">*</font>快递单号:</label><p>
|
||||
<input id="txtBody1" type="text" />
|
||||
</p>
|
||||
</div>
|
||||
<div class="ub ub-ac" style="">
|
||||
<label>备注信息:</label><p>
|
||||
<textarea id="txtBZContent1" style="width:15.8em;height:5em;"></textarea>
|
||||
</p>
|
||||
</div>
|
||||
<div class="ub ub-ac ub-pc">
|
||||
<input type="button" class="mybtn btntj" id="btntj1" value="确认" onclick='qyfhorder(1)' />
|
||||
<input type="button" class="mybtn hovered btnqx" id="btnqx1" value="取消" onclick='hideshowthjto(1);' />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="showthjto uhide" id="showthjto2" onclick='hideshowthjto(2);'>
|
||||
<div class="showthjto_box" onclick="stopPropagation(event)">
|
||||
<h3><span>修改物流</span><span class="close" onclick='hideshowthjto(2);'><img src="../image/close.png" /></span></h3>
|
||||
<div class="ub ub-ac" style="background-color: #FFFFFF;margin-top: .8em;margin-bottom: .8em;">
|
||||
|
||||
</div>
|
||||
<div class="ub ub-ac" style="">
|
||||
<label><font color="red">*</font>快递公司:</label><p>
|
||||
<select id="kdcompay2" onchange="onkdchange(2)">
|
||||
<option value="sto">申通</option>
|
||||
<option value="auto">自提</option>
|
||||
<option value="sf">顺丰</option>
|
||||
<option value="jt">极兔</option>
|
||||
<option value="yt">圆通</option>
|
||||
<option value="yd">韵达</option>
|
||||
<option value="tt">天天</option>
|
||||
<option value="ems">EMS</option>
|
||||
<option value="zto">中通</option>
|
||||
<option value="ht">百世快递</option>
|
||||
<option value="qf">全峰</option>
|
||||
<option value="db">德邦</option>
|
||||
<option value="gt">国通</option>
|
||||
<option value="rfd">如风达</option>
|
||||
<option value="jd">京东快递</option>
|
||||
<option value="zjs">宅急送</option>
|
||||
<option value="emsg">EMS国际</option>
|
||||
<option value="fedex">Fedex国际</option>
|
||||
<option value="yzgn">邮政国内(挂号信)</option>
|
||||
<option value="ups">UPS国际快递</option>
|
||||
<option value="ztky">中铁快运</option>
|
||||
|
||||
</select>
|
||||
</p>
|
||||
</div>
|
||||
<div class="ub ub-ac uinput11" id="kddh_box2" style="margin:0.8em 0">
|
||||
<label><font color="red">*</font>快递单号:</label><p>
|
||||
<input id="txtBody2" type="text" />
|
||||
</p>
|
||||
</div>
|
||||
<div class="ub ub-ac" style="">
|
||||
<label>备注信息:</label><p>
|
||||
<textarea id="txtBZContent2" style="width:15.8em;height:5em;"></textarea>
|
||||
</p>
|
||||
</div>
|
||||
<div class="ub ub-ac ub-pc">
|
||||
<input type="button" class="mybtn btntj" id="btntj2" value="确认" onclick='qyeditwl(2)' />
|
||||
<input type="button" class="mybtn hovered btnqx" id="btnqx2" value="取消" onclick='hideshowthjto(2);' />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="showthjto uhide" id="showthjto3" onclick='hideshowthjto(3);'>
|
||||
<div class="showthjto_box" onclick="stopPropagation(event)">
|
||||
<h3><span>取消发货</span><span class="close" onclick='hideshowthjto(3);'><img src="../image/close.png" /></span></h3>
|
||||
<div class="ub ub-ac" style="background-color: #FFFFFF;margin-top: .8em;margin-bottom: .8em;">
|
||||
|
||||
</div>
|
||||
<div class="ub ub-ac" style="">
|
||||
<label>快递公司:</label><p id="kdcompay3">
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<div class="ub ub-ac" style="margin:0.8em 0;">
|
||||
<label>快递单号:</label><p id="txtBody3">
|
||||
</p>
|
||||
</div>
|
||||
<div class="ub ub-ac" style="">
|
||||
<label>备注:</label><p id="txtBZContent3">
|
||||
</p>
|
||||
</div>
|
||||
<div class="ub ub-ac ub-pc">
|
||||
<input type="button" class="mybtn btntj" id="btntj3" value="确认" onclick='qycancelfh(3)' />
|
||||
<input type="button" class="mybtn hovered btnqx" id="btnqx3" value="取消" onclick='hideshowthjto(3);' />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="showthjto uhide" id="showthjto4" onclick='hideshowthjto(4);'>
|
||||
<div class="showthjto_box" onclick="stopPropagation(event)">
|
||||
<h3><span>修改配送地址</span><span class="close" onclick='hideshowthjto(4);'><img src="../image/close.png" /></span></h3>
|
||||
<div class="ub ub-ac" style="background-color: #FFFFFF;margin-top: .8em;margin-bottom: .8em;">
|
||||
|
||||
</div>
|
||||
<div class="ub ub-ac uinput11" style="">
|
||||
<label><font color="red">*</font>联系姓名:</label><p>
|
||||
<input id="txt_Name" style="" type="text" />
|
||||
</p>
|
||||
</div>
|
||||
<div class="ub ub-ac uinput11" style="margin:0.8em 0;">
|
||||
<label><font color="red">*</font>联系电话:</label><p>
|
||||
<input id="txt_Phone" style="" type="text" />
|
||||
</p>
|
||||
</div>
|
||||
<!--<div class="ub ub-ac" style="">
|
||||
<label><font color="red">*</font>所在城市:</label>
|
||||
<div class="ub ub-f1" style="">
|
||||
<input id="txt_area" />
|
||||
</div>
|
||||
<div class="ub" style="width:auto;" onclick="getcity()">
|
||||
<div class="ub ub-ac ub-pc" style="margin-right: 0; margin-top:0em; width: 1.2em; height:1.2em;"><img style="width: 1.2em;" src="../image/faifeito.png" /></div>
|
||||
</div>
|
||||
</div>-->
|
||||
<div class="ub ub-ac uinput11" style="margin:0.8em 0;">
|
||||
<label><font color="red">*</font>邮寄地址:</label>
|
||||
<p>
|
||||
<input id="txt_Address" style="" />
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class="ub ub-ac ub-pc">
|
||||
<input type="button" class="mybtn btntj" id="btntj4" value="确认" onclick='qyeditaddress(4)' />
|
||||
<input type="button" class="mybtn hovered btnqx" id="btnqx4" value="取消" onclick='hideshowthjto(4);' />
|
||||
</div>
|
||||
</div>
|
||||
<input id="Province" type="hidden" />
|
||||
<input id="City" type="hidden" />
|
||||
<input id="County" type="hidden" />
|
||||
</div>
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user