index.vue 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <view class="page-container">
  3. <u-navbar title="团餐活动" :autoBack="true" :placeholder="true"></u-navbar>
  4. <image class="bg" src="/static/groupMeal/bg_baoming.png" mode="widthFix"></image>
  5. <view class="content">
  6. <view class="title">尊敬的餐饮行业合作伙伴:</view>
  7. <view>当上班族的午餐需求突破千万单 / 日,当校园、企业、事业单位的团餐采购量逐年攀升,一个规模超万亿的黄金赛道正等你来开拓!为搭建优质团餐供需对接平台,现正式启动 2025 年度团餐合作商家招募,诚邀具备品质实力与服务能力的餐饮企业携手同行,共享市场红利。​</view>
  8. <view class="title">为什么选择与我们合作?​</view>
  9. <view>稳定订单保障:覆盖 200 + 企业、50 + 校园及事业单位客户,单月团餐需求总量超 10 万份,签约即享长期稳定订单,告别 “淡季焦虑”;​ 品牌曝光加持:通过官方平台、合作机构渠道及线下活动,为合作商家提供品牌宣传机会,助力提升区域知名度与客户信任度;​ 一站式运营支持:提供专业的团餐配送路线规划、食品安全溯源系统接入、客户反馈实时处理等服务,降低运营成本,提升服务效率;​ 灵活合作模式:可根据商家资质与能力,选择 “全品类供应”“特色餐品定制”“应急餐储备” 等多种合作形式,满足不同发展需求。 商家们踊跃报名参加吧!</view>
  10. </view>
  11. <!-- 底部操作栏 -->
  12. <view class="footer-bar">
  13. <u-button
  14. shape="circle"
  15. @click="onSubmit"
  16. >立即报名</u-button>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. query: {
  25. activityId: ''
  26. },
  27. };
  28. },
  29. onLoad(query) {
  30. if (query.activityId) {
  31. this.query.activityId = query.activityId;
  32. }
  33. },
  34. onShow() {
  35. },
  36. methods: {
  37. // 按钮点击事件
  38. onSubmit() {
  39. let url = `/pages/groupMeal/goods/list`;
  40. uni.navigateTo({
  41. url
  42. });
  43. },
  44. }
  45. };
  46. </script>
  47. <style lang="scss" scoped>
  48. .page-container {
  49. min-height: 100vh;
  50. background: #F7F8FC;
  51. position: relative;
  52. .bg {
  53. width: 100vw;
  54. height: 100vh;
  55. }
  56. .content {
  57. font-weight: 400;
  58. font-size: 26rpx;
  59. color: #666666;
  60. padding: 0 76rpx;
  61. line-height: 1.5;
  62. text-align: justify;
  63. position: absolute;
  64. top: 520rpx;
  65. z-index: 1;
  66. .title {
  67. font-weight: 500;
  68. font-size: 28rpx;
  69. color: #444444;
  70. padding: 12rpx 0;
  71. }
  72. }
  73. }
  74. .footer-bar {
  75. ::v-deep .u-btn {
  76. width: 100%;
  77. height: 76rpx;
  78. font-weight: 500;
  79. font-size: 28rpx;
  80. color: #FFFFFF;
  81. border: none;
  82. background: linear-gradient(90deg, #77B6FF 0%, #449AFF 100%);
  83. }
  84. }
  85. </style>