lvhao 1 day ago
parent
commit
0c48e07b06
2 changed files with 6 additions and 6 deletions
  1. 4 4
      template/erp/js/fullorder-addedit.js
  2. 2 2
      template/erp/js/tishi/mTips.js

+ 4 - 4
template/erp/js/fullorder-addedit.js

@@ -1897,14 +1897,14 @@ function showExpressTiShi(msg){
 	$('#show_express').off();
 	$('#show_express').on('mouseenter', function(e) {
 		//显示提示
-		mTips.c.x = 30;
-		mTips.c.y = 30;
+		mTips.c.x = 0;
+		mTips.c.y = 0;
 		mTips.s('<h1>'+msg+'</h1>', 'success');
 	});
 
 	$('#show_express').on('mouseleave', function(e) {
 		mTips.h();
-		mTips.c.x = 10;
-		mTips.c.y = 10;
+		mTips.c.x = 0;
+		mTips.c.y = 0;
 	});
 }

+ 2 - 2
template/erp/js/tishi/mTips.js

@@ -2,8 +2,8 @@
 var mTips = {
 	c: {
 		//配置项
-		x: 10, //x偏移量,相对于鼠标
-		y: 10, //y偏移量,相对于鼠标
+		x: 0, //x偏移量,相对于鼠标
+		y: 0, //y偏移量,相对于鼠标
 
 		style: {
 			'position': 'fixed',