group.js 340 B

12345678910111213141516
  1. export const groupInit = (that) => {
  2. that.setData({
  3. groupData: {
  4. title: '关注'
  5. }
  6. })
  7. //请求数据封装
  8. that.more = function () {
  9. wx.navigateTo({
  10. url: '/pages/discount-group/discount-group'
  11. })
  12. wx.setNavigationBarTitle({
  13. title: '限量优惠团购'
  14. })
  15. }
  16. }