|
@@ -715,6 +715,36 @@ if($("select[name='express']").find("option:selected").val() == '24' || $("selec
|
|
|
}
|
|
|
}
|
|
|
console.log("--------------------------")
|
|
|
+
|
|
|
+ var eid = $("select[name='express']").children("option:selected").val();
|
|
|
+ if(eid*1 > 0 ){
|
|
|
+
|
|
|
+
|
|
|
+ $.ajax({
|
|
|
+ url: "/express/read",
|
|
|
+ data: "id="+eid,
|
|
|
+ type: "POST",
|
|
|
+ dataType: "json",
|
|
|
+ success: function(a) {
|
|
|
+ layx.destroy('loadId');
|
|
|
+ if (a && a.success) {
|
|
|
+
|
|
|
+ //$('#tipdata').attr('title', a.msg);
|
|
|
+ $(".expressfa .expressfa2").html(a.msg);
|
|
|
+ $(".expressfa i").show();
|
|
|
+ layx.tip($(".expressfa").find(".expressfa1").html(),document.getElementById('tipdata'),'bottom');
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ //$('#tipdata').attr('title',"");
|
|
|
+ $(".expressfa .expressfa2").html("");
|
|
|
+ $(".expressfa i").hide();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
});
|
|
|
function custom() {
|
|
|
var num = $('.packing .datatitle tr').children().length;
|