|
@@ -634,12 +634,16 @@ $("#currency").change(function(){
|
|
|
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');
|
|
|
+ // $(".expressfa .expressfa2").html(a.msg);
|
|
|
+ // $(".expressfa i").show();
|
|
|
+ // layx.tip($(".expressfa").find(".expressfa1").html(),document.getElementById('tipdata'),'bottom');
|
|
|
+ $("#show_express").css("display","inline-block")
|
|
|
+
|
|
|
+ showExpressTiShi(a.msg)
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
+ $("#show_express").css("display","none")
|
|
|
//$('#tipdata').attr('title',"");
|
|
|
$(".expressfa .expressfa2").html("");
|
|
|
$(".expressfa i").hide();
|
|
@@ -1887,4 +1891,20 @@ function checkOrderShowNotice(f) {
|
|
|
zttj(f);
|
|
|
}
|
|
|
|
|
|
+}
|
|
|
+
|
|
|
+function showExpressTiShi(msg){
|
|
|
+ $('#show_express').off();
|
|
|
+ $('#show_express').on('mouseenter', function(e) {
|
|
|
+ //显示提示
|
|
|
+ mTips.c.x = 30;
|
|
|
+ mTips.c.y = 30;
|
|
|
+ mTips.s('<h1>'+msg+'</h1>', 'success');
|
|
|
+ });
|
|
|
+
|
|
|
+ $('#show_express').on('mouseleave', function(e) {
|
|
|
+ mTips.h();
|
|
|
+ mTips.c.x = 10;
|
|
|
+ mTips.c.y = 10;
|
|
|
+ });
|
|
|
}
|