diff --git a/pages/index/index.js b/pages/index/index.js index 8f660f4..5b0f6fc 100644 --- a/pages/index/index.js +++ b/pages/index/index.js @@ -29,6 +29,23 @@ Page({ }); }, + // 跳转到客服列表页面 + navigateToCustomerService() { + wx.navigateTo({ + url: '/pages/customer-service/index', + success: function() { + console.log('成功跳转到客服列表页面'); + }, + fail: function(error) { + console.error('跳转到客服列表页面失败:', error); + wx.showToast({ + title: '跳转失败,请稍后重试', + icon: 'none' + }); + } + }); + }, + onLoad() { console.log('首页初始化') }, diff --git a/pages/index/index.wxml b/pages/index/index.wxml index e8dd7b6..fe199f8 100644 --- a/pages/index/index.wxml +++ b/pages/index/index.wxml @@ -1,7 +1,10 @@ 中国最专业的鸡蛋现货交易平台 - + + + + diff --git a/pages/index/index.wxss b/pages/index/index.wxss index 2c0efed..46f69f2 100644 --- a/pages/index/index.wxss +++ b/pages/index/index.wxss @@ -68,11 +68,30 @@ page { background: rgba(76, 175, 80, 0.15); } +/* 按钮容器样式,用于并排显示按钮 */ +.btn-container { + display: flex; + flex-direction: row; + justify-content: space-around; + margin: 30rpx auto 0; + width: 80%; + gap: 20rpx; +} + /* 消息按钮样式 */ .message-btn { color: #FF6B6B; background: rgba(255, 107, 107, 0.15); - margin-top: 30rpx; + margin: 0; + width: 48%; +} + +/* 联系客服按钮样式 */ +.service-btn { + color: #1677ff; + background: rgba(22, 119, 255, 0.15); + margin: 0; + width: 48%; } /* 立即入驻按钮样式 */