|
@@ -982,6 +982,35 @@ if(eid == '2' || eid == '64')//联邦的话替换签名选项
|
|
|
{
|
|
|
$("select[name='js']").html('<option value="0" selected="selected">无</option>');//<option value="1">需要</option>
|
|
|
}
|
|
|
+
|
|
|
+ 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();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
if($("select[name='express']").find("option:selected").val() == '24' || $("select[name='express']").find("option:selected").val() == '31')//联邦的话替换签名选项11
|
|
|
{
|