export const groupInit = (that) => {
  that.setData({
    groupData: {
      title: '关注'
    }
  })
  //请求数据封装
  that.more = function () {
    wx.navigateTo({
      url: '/pages/groupPage/discount-group/discount-group'
    })
    wx.setNavigationBarTitle({
      title: '限量优惠团购'
    })
  }
}