Commit bf12032e by yuzhenWang

换logo加客服

parent 8a87023f
......@@ -29,7 +29,7 @@ let companyInfo = {
appName: '银盾家办',
companyName: '银盾家办',
companyFullName: '银盾家办(广州)企业管理咨询有限公司',
companyLogo:'../../static/yd_Logo.png',
companyLogo:'../../static/logo2.png',
systemType: 'NoIOS'
}
const config = {
......
......@@ -173,7 +173,7 @@
<text class="iconfont icon-guanbi" @click="$refs.popup.close()"></text>
</view>
<view class="imageBox">
<image src="@/static/logo1.png" mode="widthFix" style="width: 120rpx !important;"></image>
<image src="@/static/logo2.png" mode="widthFix" style="width: 120rpx !important;"></image>
</view>
<view class="description">
{{cffpUserInfo.description}}
......
......@@ -46,7 +46,7 @@
return {
companyType:'',
areaName: companyInfo.companyName,
imgSrc:'../../static/yd_Logo.png',
imgSrc:'../../static/logo2.png',
//imgSrc: '../../static/cffp_logo.png',
liginName: '登录',
disabledSendBtn:false,
......
<template>
<view class="container">
<!-- 使用默认图标的悬浮按钮 -->
<FloatingButton ></FloatingButton>
<!-- <FloatingButton ></FloatingButton> -->
<view class="myHeader">
<view class="left" @click="userinfo()">
<view
......@@ -100,7 +100,7 @@
msgTotal:0,
messageInfo:[],
companyType : companyInfo.companyType,
companyLogo : '../../static/myteam/logo.png',
companyLogo : '../../static/logo2.png',
userId: uni.getStorageSync('cffp_userId'),
inviteEqrode:'',
currentPage:'personalCenter',
......@@ -162,6 +162,7 @@
{id:'02',categoryName:'帮助',
children:[
{title:'帮助中心',icon:'icon-wenhao1',link:'/pages/personalCenter/helpCenter',isOpen:true,isShow:true,islogin:true},
{title:'咨询客服',icon:'icon-kefu',link:'',isOpen:true,isShow:true,islogin:true,kefu:true},
],
},
],
......@@ -183,7 +184,7 @@
if(this.companyType == '1'){
this.companyLogo='../../static/myteam/Group1633.png';
}else if(this.companyType == '2'){
this.companyLogo='../../static/myteam/logo.png';
this.companyLogo='../../static/logo2.png';
}
this.queryInfo();
......@@ -276,6 +277,25 @@
},
// 菜单跳转页面
goDetail(item){
if(item.kefu){
// 现在还没转化成小程序,暂时放在这
// #ifdef MP-WEIXIN
uni.openCustomerServiceChat({
extInfo: {
url: 'https://work.weixin.qq.com/kfid/kfc08c55f4170e7fc9e'
},
corpId: 'ww43cac1cf9dd6a3d0', // 客服会话按钮打开后,在微信客服会话按钮处理的事件类型
showMessageCard: true,
sendMessageTitle: (uni.getStorageSync('hoservice_mobileNo')?(uni.getStorageSync('hoservice_mobileNo')+",") :"" ) + "进入个人中心-->咨询客服",
sendMessagePath: `/pages/index/mySelf.html`,
//sendMessageImg: cardItem.value['list'][0]['itemImg']
});
// #endif
// #ifndef MP-WEIXIN
window.open('https://work.weixin.qq.com/kfid/kfc08c55f4170e7fc9e')
// #endif
return
}
// 说明不需要登录就可以进
if(item.isLogin){
uni.navigateTo({
......@@ -524,9 +544,10 @@
margin-top: 30rpx;
display: flex;
align-items: center;
justify-content: space-between; /* 改为 space-between 或 space-evenly */
justify-content: flex-start; /* 保持 flex-start */
flex-wrap: wrap;
width: 100%;
gap: 20rpx; /* 替代 margin-right */
}
.kuaiItem {
......@@ -535,10 +556,9 @@
flex-direction: column;
margin-bottom: 40rpx;
font-size: 26rpx;
width: calc((100% - 25rpx * 3) / 4); /* 4个子项,3个间距 */
/* 或者使用 flex-grow 和 flex-basis */
/* flex-basis: calc(25% - 25rpx); */
/* flex-grow: 0; */
// width: calc(25% - 20rpx); /* 4个子项,每个占25%宽度减去边距 */
width: calc(25% - 15rpx); /* 调整计算方式 */
// margin-right: 20rpx; /* 设置右边距 */
}
/* 每行第4个子项去掉右侧间距 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment