|
@@ -223,6 +223,30 @@ $(window).on('click', function (e) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * 获取客服二维码
|
|
|
|
+ */
|
|
|
|
+window.kefu = {
|
|
|
|
+ name: '',
|
|
|
|
+ remark: "专属客服",
|
|
|
|
+ wxer: ''
|
|
|
|
+}
|
|
|
|
+function getKefuInfo () {
|
|
|
|
+ $.ajax({
|
|
|
|
+ type: 'post',
|
|
|
|
+ url: '/bigmember/use/getCustom',
|
|
|
|
+ data: { type: "kf" },
|
|
|
|
+ success: function (res) {
|
|
|
|
+ if (res && res.data) {
|
|
|
|
+ const resData = res.data || {}
|
|
|
|
+ window.kefu = resData
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+}
|
|
|
|
+getKefuInfo()
|
|
|
|
+
|
|
$(function () {
|
|
$(function () {
|
|
function getDomScreenHeight () {
|
|
function getDomScreenHeight () {
|
|
var clientHeight = [document.documentElement.clientHeight, document.body.clientHeight, window.screen.availHeight, window.screen.height]
|
|
var clientHeight = [document.documentElement.clientHeight, document.body.clientHeight, window.screen.availHeight, window.screen.height]
|
|
@@ -302,6 +326,14 @@ $(function () {
|
|
},function() {
|
|
},function() {
|
|
$('.right-side-box .kf-phone').hide()
|
|
$('.right-side-box .kf-phone').hide()
|
|
})
|
|
})
|
|
|
|
+
|
|
|
|
+ // 右侧客服企微
|
|
|
|
+ $('.right-side-wework').hover(function(e) {
|
|
|
|
+ $('.right-side-box .kf-wework img').attr('src', window.kefu.wxer)
|
|
|
|
+ $('.right-side-box .kf-wework').show()
|
|
|
|
+ },function() {
|
|
|
|
+ $('.right-side-box .kf-wework').hide()
|
|
|
|
+ })
|
|
});
|
|
});
|
|
;(function(){
|
|
;(function(){
|
|
// 动态设置copyright
|
|
// 动态设置copyright
|
|
@@ -350,6 +382,8 @@ $(function () {
|
|
stypesearch(stype);
|
|
stypesearch(stype);
|
|
})
|
|
})
|
|
})();
|
|
})();
|
|
|
|
+
|
|
|
|
+
|
|
function zbsqClose(){
|
|
function zbsqClose(){
|
|
$("#bidcommunity").modal("hide");
|
|
$("#bidcommunity").modal("hide");
|
|
}
|
|
}
|
|
@@ -456,4 +490,4 @@ function renderBottomCustomer (obj) {
|
|
}
|
|
}
|
|
$('.config_classify_r_box').append(html)
|
|
$('.config_classify_r_box').append(html)
|
|
}
|
|
}
|
|
-/** SEO优化-pcbottom.html内js迁移 END */
|
|
|
|
|
|
+/** SEO优化-pcbottom.html内js迁移 END */
|