diff --git a/app.json b/app.json index a966075..4a170e8 100644 --- a/app.json +++ b/app.json @@ -14,7 +14,8 @@ "pages/chat/index", "pages/chat-detail/index", "pages/message-list/index", - "pages/customer-service/index" + "pages/customer-service/index", + "pages/cooperation/index" ], "subpackages": [ { diff --git a/pages/cooperation/index.js b/pages/cooperation/index.js new file mode 100644 index 0000000..cda09b9 --- /dev/null +++ b/pages/cooperation/index.js @@ -0,0 +1,110 @@ +// pages/cooperation/index.js +Page({ + /** + * 页面的初始数据 + */ + data: { + // 页面数据可以在这里定义 + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad: function (options) { + // 页面加载时的初始化操作 + console.log('招商合作页面加载'); + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady: function () { + // 页面初次渲染完成时的操作 + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow: function () { + // 页面显示时的操作 + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide: function () { + // 页面隐藏时的操作 + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload: function () { + // 页面卸载时的操作 + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh: function () { + // 下拉刷新时的操作 + wx.stopPullDownRefresh(); + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom: function () { + // 上拉触底时的操作 + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage: function () { + // 分享时的配置 + return { + title: '招商合作 - 又鸟蛋平台', + path: '/pages/cooperation/index', + imageUrl: '' + }; + }, + + /** + * 拨打电话 + */ + makePhoneCall: function () { + wx.makePhoneCall({ + phoneNumber: '138XXXXXXXX', + success: function () { + console.log('拨打电话成功'); + }, + fail: function (error) { + console.error('拨打电话失败:', error); + wx.showToast({ + title: '拨打电话失败,请稍后重试', + icon: 'none' + }); + } + }); + }, + + /** + * 跳转到立即合作页面 + */ + navigateToSettlement: function () { + wx.navigateTo({ + url: '/pages/settlement/index', + success: function () { + console.log('成功跳转到立即合作页面'); + }, + fail: function (error) { + console.error('跳转到立即合作页面失败:', error); + wx.showToast({ + title: '跳转失败,请稍后重试', + icon: 'none' + }); + } + }); + } +}); \ No newline at end of file diff --git a/pages/cooperation/index.json b/pages/cooperation/index.json new file mode 100644 index 0000000..4180a8f --- /dev/null +++ b/pages/cooperation/index.json @@ -0,0 +1,4 @@ +{ + "navigationBarTitleText": "招商合作", + "usingComponents": {} +} \ No newline at end of file diff --git a/pages/cooperation/index.wxml b/pages/cooperation/index.wxml new file mode 100644 index 0000000..a329862 --- /dev/null +++ b/pages/cooperation/index.wxml @@ -0,0 +1,93 @@ + + + + 招商合作 + + + + + + 诚邀合作伙伴 + + + + 🤝 + + 成为我们的供应商 + 加入我们的供应链体系,共享平台资源,实现互利共赢 + + + + 📈 + + 海量订单支持 + 平台拥有稳定的客户群体,为您提供持续的订单保障 + + + + 🚚 + + 完善的物流体系 + 专业的物流配送团队,确保货物安全及时送达 + + + + 📊 + + 数据分析支持 + 提供详细的销售数据和市场分析,助力您的业务决策 + + + + + + + + 合作优势 + + + 💪 + 品牌支持 + + + 💰 + 灵活结算 + + + 📱 + 智能管理 + + + 👥 + 专属客服 + + + + + + + 联系方式 + + + 联系电话: + 138-XXXX-XXXX + + + 电子邮箱: + cooperation@example.com + + + 联系地址: + 上海市浦东新区XX路XX号 + + + + + + + + + + 如有任何疑问,欢迎随时联系我们 + + \ No newline at end of file diff --git a/pages/cooperation/index.wxss b/pages/cooperation/index.wxss new file mode 100644 index 0000000..d598363 --- /dev/null +++ b/pages/cooperation/index.wxss @@ -0,0 +1,207 @@ +/* 页面容器 */ +.cooperation-container { + padding: 20rpx; + background-color: #f5f5f5; + min-height: 100vh; +} + +/* 页面标题 */ +.page-title { + text-align: center; + font-size: 36rpx; + font-weight: bold; + color: #333; + margin: 30rpx 0; +} + +/* 广告区域 */ +.ad-section { + background-color: #fff; + border-radius: 16rpx; + padding: 30rpx; + margin-bottom: 20rpx; + box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1); +} + +.ad-title { + font-size: 32rpx; + font-weight: bold; + color: #ff6b81; + margin-bottom: 20rpx; + text-align: center; +} + +.ad-content { + display: flex; + flex-direction: column; + gap: 20rpx; +} + +.ad-item { + display: flex; + align-items: flex-start; + gap: 20rpx; + padding: 20rpx; + background-color: #f9f9f9; + border-radius: 12rpx; +} + +.ad-icon { + font-size: 48rpx; + margin-top: 8rpx; +} + +.ad-text { + flex: 1; +} + +.ad-item-title { + font-size: 28rpx; + font-weight: bold; + color: #333; + margin-bottom: 8rpx; +} + +.ad-item-desc { + font-size: 24rpx; + color: #666; + line-height: 1.5; +} + +/* 合作优势区域 */ +.advantage-section { + background-color: #fff; + border-radius: 16rpx; + padding: 30rpx; + margin-bottom: 20rpx; + box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1); +} + +.section-title { + font-size: 30rpx; + font-weight: bold; + color: #333; + margin-bottom: 20rpx; + text-align: center; +} + +.advantage-grid { + display: grid; + grid-template-columns: repeat(2, 1fr); + gap: 20rpx; +} + +.advantage-item { + display: flex; + flex-direction: column; + align-items: center; + gap: 10rpx; + padding: 20rpx; + background-color: #f9f9f9; + border-radius: 12rpx; + transition: transform 0.3s ease; +} + +.advantage-item:active { + transform: scale(0.98); +} + +.advantage-icon { + font-size: 48rpx; +} + +.advantage-text { + font-size: 24rpx; + color: #333; + font-weight: 500; +} + +/* 联系方式区域 */ +.contact-section { + background-color: #fff; + border-radius: 16rpx; + padding: 30rpx; + margin-bottom: 20rpx; + box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1); +} + +.contact-info { + display: flex; + flex-direction: column; + gap: 16rpx; + margin-bottom: 30rpx; +} + +.contact-item { + display: flex; + align-items: center; + gap: 12rpx; + padding: 16rpx; + background-color: #f9f9f9; + border-radius: 12rpx; +} + +.contact-label { + font-size: 26rpx; + color: #666; + width: 180rpx; +} + +.contact-value { + font-size: 26rpx; + color: #333; + flex: 1; +} + +.contact-value:active { + color: #ff6b81; +} + +/* 立即合作按钮 */ +.cooperate-btn { + background-color: #ff6b81; + color: #fff; + font-size: 28rpx; + font-weight: bold; + border-radius: 50rpx; + height: 80rpx; + line-height: 80rpx; + margin: 0; + box-shadow: 0 4rpx 12rpx rgba(255, 107, 129, 0.3); +} + +.cooperate-btn:active { + background-color: #ff526c; + transform: scale(0.98); +} + +/* 底部提示 */ +.bottom-tip { + text-align: center; + font-size: 22rpx; + color: #999; + margin: 30rpx 0; +} + +/* 响应式设计 */ +@media (max-width: 768rpx) { + .advantage-grid { + grid-template-columns: 1fr; + } + + .ad-item { + flex-direction: column; + align-items: center; + text-align: center; + } + + .contact-item { + flex-direction: column; + align-items: flex-start; + gap: 8rpx; + } + + .contact-label { + width: auto; + } +} \ No newline at end of file diff --git a/pages/index/index.js b/pages/index/index.js index cb00483..26c9e7c 100644 --- a/pages/index/index.js +++ b/pages/index/index.js @@ -79,15 +79,15 @@ Page({ }); }, - // 跳转到立即入驻页面 + // 跳转到我要卖蛋页面 navigateToSettlement() { wx.navigateTo({ url: '/pages/settlement/index', success: function() { - console.log('成功跳转到立即入驻页面'); + console.log('成功跳转到我要卖蛋页面'); }, fail: function(error) { - console.error('跳转到立即入驻页面失败:', error); + console.error('跳转到我要卖蛋页面失败:', error); wx.showToast({ title: '跳转失败,请稍后重试', icon: 'none' @@ -536,13 +536,20 @@ Page({ }) }, - // 跳转到入驻页面 + // 跳转到我要卖蛋页面 navigateToSettlement: function() { wx.navigateTo({ url: '/pages/settlement/index' }) }, - + + // 跳转到招商合作页面 + navigateToCooperation: function() { + wx.navigateTo({ + url: '/pages/cooperation/index' + }) + }, + // 预览图片 previewImage: function(e) { // 阻止事件冒泡,避免触发商品点击事件 diff --git a/pages/index/index.wxml b/pages/index/index.wxml index 70db257..51238c3 100644 --- a/pages/index/index.wxml +++ b/pages/index/index.wxml @@ -112,13 +112,9 @@ 🏠 - 立即入驻 + 我要卖蛋 - - 🤝 - 成为供应商 - - + 📢 招商合作