Эх сурвалжийг харах

Merge branch 'dev/4.9.43_zsy' of qmx/jy into feature/v4.9.43

zhangsiya 1 жил өмнө
parent
commit
473d75fcb2

+ 3 - 3
src/web/staticres/js/login.js

@@ -173,10 +173,10 @@ function toggleLoginDom (type) {
     $("#public-nav .work-link").show()
     $("#public-nav .fl").addClass('fix-work')
     // 客服入口显示
-    $('#go-customer-4').show()
+    // $('#go-customer-4').show()
     // 客服企微展示
     $('#customer-wework').show()
-    $('#right-side-kfrx').removeClass('b-bottom-left-r')
+    $('#go-customer-4').removeClass('b-bottom-left-r')
   } else {
     $("#public-nav .nav-avatar").hide()
     $("#public-nav .work-link").hide()
@@ -186,7 +186,7 @@ function toggleLoginDom (type) {
     // $('#go-customer-4').hide()
     // 客服企微隐藏
     $('#customer-wework').hide()
-    $('#right-side-kfrx').addClass('b-bottom-left-r')
+    $('#go-customer-4').addClass('b-bottom-left-r')
   }
 }
 //

+ 3 - 0
src/web/staticres/public-pc/css/pc-bottom.css

@@ -300,6 +300,9 @@
 .right-side-box .b-bottom-left-r {
     border-bottom-left-radius: 10px
 }
+.right-side-box .b-bottom-left-r  .hover-open-box{
+    border-bottom-left-radius: 10px
+}
 
 .right-side-box .right-side-pop:hover::after,
 .right-side-box .right-side-pop:hover::before {

+ 9 - 8
src/web/staticres/public-pc/js/pc-bottom.js

@@ -87,17 +87,18 @@ function goCustomerUrl (conf) {
 
 /**
  * 前往客服页面 (兼容旧业务逻辑,检查登录状态)
+ * P570改为未登录也可以以游客状态进入客服
  */
 function checkCustomerService () {
   // 登录判断
-  if (!loginflag) {
-    if (location.pathname === '/') {
-      // 首页登陆跳转工作桌面
-      return openLoginDig(true)
-    } else {
-      return openLoginDig()
-    }
-  }
+  // if (!loginflag) {
+  //   if (location.pathname === '/') {
+  //     // 首页登陆跳转工作桌面
+  //     return openLoginDig(true)
+  //   } else {
+  //     return openLoginDig()
+  //   }
+  // }
   goCustomerUrl()
 }