index.js 21.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
//index.js
//获取应用实例
const app = getApp();

import mock from './mock.js'//拿到的数据
var getLocation = function (self) {//当第一次未授权时需要重新调用此接口
    wx.getLocation({
        type: 'wgs84',
        success: function (res) {
            console.log('再次授权结果', res);
            self.setData({
                lat: res.latitude,
                lng: res.longitude
            });
        },
        fail: function () {
            wx.showToast({
                title: '授权失败',
                icon: 'none',
                duration: 1000
            })
        }
    })
}


Page({
    data: {
        is_show_city: false,
        items: [],
        slide: [],
        cate: [],
        meal_banner: [],
        currentBannerIndex: 0,
        tabcurrent: {tab: 0, bubble: ''},
        noticeList: [],
        is_showAnswer: false,
        is_showUserInfo: false,
        is_showRelease: false,
        is_showResult:false,
        is_write: 2,//1:已填写,2:未填写
        is_answer: false,
        current_swiper: 0,
        page_number: 1,
        cityList: [],
        addr: '', //切换地址
        img_heights: [], //图片宽度
        img_width: 750, //默认

        motto: 'Hello World',
        userInfo: {},
        hasUserInfo: false,
        canIUse: wx.canIUse('button.open-type.getUserInfo')
    },
    //banner跳转
    navigator() {
        // if() {}
    },
    //关闭金火柴勋章弹框
    close() {
        this.setData({show_gold_modal: false, show_normal_modal: false,is_showResult:false});
        try {
            wx.removeStorageSync('score');
            // console.log('删除后score', wx.getStorageSync('score'));
        } catch (e) {
            // Do something when catch error
        }
    },
    swiperChange(e) {
        this.setData({current_swiper: e.detail.current})
    },
    //发布拼活动
    releaseActivity() {
        this.setData({is_showRelease: false,});
        wx.navigateTo({
            url: '/pages/activity/activity',
        });
    },
    //发布拼餐
    releaseMeal() {
        this.setData({is_showRelease: false,});
        wx.navigateTo({
            url: '/pages/meal/meal',
        })
    },
    //完善个人信息
    goUserInfo() {
        this.setData({is_showUserInfo: false});
        wx.navigateTo({
            url: '/pages/my/edit-info/edit-info',
        })
    },
    //去答题
    goAnswer() {
        this.setData({is_showAnswer: false});
        wx.navigateTo({
            url: '/pages/index/answer-question/answer-question',
        })
    },
    disableScroll() {
    },
    handleBackground() {
        this.setData({
            is_showAnswer: false,
            is_showUserInfo: false,
            is_showRelease: false,
            is_showResult: false,
            is_show_city: false,
        })
    },
    //进入分类详情
    goTypeDetail(e) {
        const id = +e.currentTarget.dataset.id;
        const name = e.currentTarget.dataset.name;
        let city = null;
        if (this.data.is_city_change) {
            city = JSON.stringify({
                // name:this.data.cityList[this.data.current_city].title,
                name: this.data.addr,
                lat: this.data.lat,
                lng: this.data.lng,
            })
        }
        wx.navigateTo({
            url: '/pages/index/type-detail/type-detail?id=' + id + '&name=' + name + '&city=' + city,
        })
    },
    //进入号外公告详情
    goNotice(e) {
        const id = e.currentTarget.dataset.id;
        wx.navigateTo({
            url: '/pages/index/notice-detail/notice-detail?id=' + id,
        })
    },
    //查看更多
    goMore() {
        let city = null;
        if (this.data.is_city_change) {
            city = JSON.stringify({
                // name:this.data.cityList[this.data.current_city].title,
                name: this.data.addr,
                lat: this.data.lat,
                lng: this.data.lng,
            })
        }
        wx.navigateTo({
            url: '/pages/index/tandian-list/tandian-list?city=' + city,
        })
    },
    //进入拼餐详情
    goMealDetail(e) {
        // console.log('拼餐详情e', e);
        const id = e.currentTarget.dataset.id;
        wx.navigateTo({
            url: '/pages/meal/detail/detail?id=' + id,
        })
    },
    //进入拼活动详情
    goActivityDetail(e) {
        // console.log('活动详情e', e);
        const id = e.detail.activity_id;
        wx.navigateTo({
            url: '/pages/activity/detail/detail?id=' + id,
        })
    },
    //搜索
    search() {
        wx.navigateTo({
            url: '/pages/search/search',
        })
    },
    bannerChange(e) {
        // console.log(e, 'current', current);
        const current = e.detail.current;
        this.setData({currentBannerIndex: current})
    },

    //事件处理函数
    bindViewTap: function () {
        wx.navigateTo({
            url: '../logs/logs'
        })
    },

    onReachBottom: function () {
        // this._doAppendMasonry(this.data.items)
    },

    _doRefreshMasonry(items) {
        this.masonryListComponent = this.selectComponent('#masonry');
        this.masonryListComponent.start(items).then(() => {
            // console.log('refresh completed')
        })
    },

    _doAppendMasonry(items) {
        this.masonryListComponent = this.selectComponent('#masonry');
        // 获取接口数据后使用瀑布流组件append方法,当append完成后调用then,是否可触底价在的标志位可以在这里处理
        this.masonryListComponent.append(items).then(() => {
            // console.log('refresh completed,加载更多')
        })
    },
    //首页-导航
    service(e) {
        var tindex = e.currentTarget.dataset.tindex;
        var tabcurrent = this.data.tabcurrent.tab;
        if (tabcurrent == tindex) {
            // console.log('点击本页');
            return false
        } else {
            // console.log('其他页');
            this.setData({
                tabcurrent: tindex
            })
            wx.redirectTo({
                url: '/pages/index/index',
            })
        }
    },
    //拼单-导航
    consult(e) {
        var tindex = e.currentTarget.dataset.tindex
        var tabcurrent = this.data.tabcurrent.tab
        if (tabcurrent == tindex) {
            return false
        } else {
            this.setData({
                tabcurrent: tindex
            })
            // wx.showToast({
            //     title: '该功能正在开发中',
            //     icon: 'none'
            // })
            wx.redirectTo({
                url: '/pages/spell-list/spell-list',
            })
        }
    },
    //发布按钮
    release(e) {
      console.log(1)
        // console.log('发布', app.globalData.isLogin);
        const self = this;
        // self.setData({
        //     is_showAnswer: true, //弹出 去答题弹框
        //     is_showRelease:false,
        // });
        if (!app.globalData.isLogin) {
            wx.showToast({
                title: '还没登录,先去登录吧~', icon: 'none',
                success: function () {
                    setTimeout(function () {
                        wx.navigateTo({
                          url: '/pages/my/my'})
                    }, 500)
                }
            });
        } else {
          console.log(self.data.is_answer, self.data.is_canSend, self.data.is_write)
            if (+self.data.is_write == 2 && wx.getStorageSync('is_canSend') == 2) { //没填写个人信息并且不可以发布 =>去填写
                self.setData({
                    is_showUserInfo: true //弹出 去填写个人信息弹框
                });

            } else if (+self.data.is_write == 1 && wx.getStorageSync('is_answer') == 2) { //已填写且不能发布=>去答题
                self.setData({
                    is_showAnswer: true, //弹出 去答题弹框
                    is_showRelease: false,
                });
            } else if (+self.data.is_write == 1 && wx.getStorageSync('is_canSend') == 1 && wx.getStorageSync('is_answer') == 1) { //已填写且可以发布 =>去发布
                // console.log('可以发布');
                self.setData({
                    is_showRelease: true //弹出 发布弹框
                });
            } else if (self.data.is_write == 1 && wx.getStorageSync('is_canSend') == 2 && wx.getStorageSync('is_answer') == 1) {
                // wx.showToast({title: '等级不够,无法使用发布功能', icon: 'none'});
                self.setData({
                    is_showResult: true //弹出 提示框
                });
            }
        }
    },
    //订单-导航
    wish(e) {
        var tindex = e.currentTarget.dataset.tindex
        var tabcurrent = this.data.tabcurrent.tab
        if (tabcurrent == tindex) {
            return false
        } else {
            this.setData({
                tabcurrent: tindex
            })
            // wx.showToast({
            //     title: '该功能正在开发中',
            //     icon: 'none'
            // })
            wx.redirectTo({
                url: '/pages/order/order',
            })
        }
    },
    //我的-导航
    my(e) {
        var tindex = e.currentTarget.dataset.tindex
        var tabcurrent = this.data.tabcurrent.tab
        if (tabcurrent == tindex) {
            return false
        } else {
            this.setData({
                tabcurrent: tindex
            })
            wx.redirectTo({
                url: '/pages/my/my',
            })
        }
    },
    //打开城市列表页面
    chooseCity() {
        // this.setData({is_show_city:!this.data.is_show_city})
        wx.navigateTo({url: '/pages/index/city-list/city-list'})
    },
    //切换城市
    // cityPickerChange(e) {
    //     this.setData({
    //         current_city: e.detail.value,
    //         is_city_change: true
    //     });
    //     const lat = this.data.cityList[e.detail.value].latng.split(',')[1];
    //     const lng = this.data.cityList[e.detail.value].latng.split(',')[0];
    //     this.setData({lat: lat, lng: lng,addr:this.data.cityList[e.detail.value].title});
    //     // console.log('lat', 'lng',lat,lng);
    //     this.getIndex();
    // },
    getPosition() {
        const self = this;
        // console.log('2获取当前经纬度');
        wx.getLocation({  //获取当前经纬度
            type: 'wgs84', //返回可以用于wx.openLocation的经纬度,官方提示bug: iOS 6.3.30 type 参数不生效,只会返回 wgs84 类型的坐标信息
            success: function (res) {
                // console.log('获取当前经纬度', res);
                self.setData({lat: res.latitude, lng: res.longitude});
                // app.loginCallback();
                // app.loginCallback = res => {
                //     console.log('show-callback-res', res);
                app.getLogin().then(function (res) {
                    // console.log('res', res);
                    // console.log('1');
                    self.getIndex(res.token);//获取首页
                    self.getIsWrite(); //判断是否已填写个人信息
                });
                // };
            },
            fail: function (res) {
                // console.log('定位失败', res)
                console.log('重新调起授权,获取当前城市');
                wx.getSetting({
                    success: (res) => {
                        // console.log('成功');
                        if (res.authSetting['scope.userLocation'] != undefined && res.authSetting['scope.userLocation'] != true) {//非初始化进入该页面,且未授权
                            console.log('非初始化进入该页面,且未授权');
                            wx.showModal({
                                title: '是否授权当前位置',
                                content: '需要获取您的地理位置,请确认授权,否则无法加载内容',
                                success: function (res) {
                                    if (res.cancel) {
                                        self.setData({
                                            isshowCIty: false
                                        })
                                        wx.showToast({
                                            title: '授权失败',
                                            icon: 'none',
                                            duration: 1000
                                        })
                                    } else if (res.confirm) {
                                        wx.openSetting({
                                            success: function (dataAu) {
                                                if (dataAu.authSetting["scope.userLocation"] == true) {
                                                    wx.showToast({
                                                        title: '授权成功',
                                                        icon: 'success',
                                                        duration: 1000
                                                    })
                                                    //再次授权,调用getLocationt的API
                                                    getLocation(self);
                                                } else {
                                                    wx.showToast({
                                                        title: '授权失败',
                                                        icon: 'none',
                                                        duration: 1000
                                                    })
                                                }
                                            }
                                        })
                                    }
                                }
                            })
                        } else if (res.authSetting['scope.userLocation'] == undefined) {//初始化进入
                            console.log('初始化进入');
                            getLocation(self);
                        } else { //授权后默认加载
                            console.log('授权后默认加载');
                            getLocation(self);
                        }
                    }
                })
            }
        })
    },
    //获取经纬度
    getLat() {
        const self = this;
        // console.log('没有经纬度', wx.getStorageSync('lat') === '');
        if (wx.getStorageSync('lat') !== '' &&
            wx.getStorageSync('lng') !== '' &&
            wx.getStorageSync('addr') !== '') {
            return
        } else {
            // console.log('1获取当前经纬度');
            self.getPosition()
        }
        // wx.setStorageSync('score',30);
        // console.log('score', wx.getStorageSync('score'));
        if (wx.getStorageSync('score') !== '' && wx.getStorageSync('score') >= 80) {
            self.setData({show_gold_modal: true,});
        } else if (wx.getStorageSync('score') !== '' && wx.getStorageSync('score') < 80) {
            self.setData({show_normal_modal: true})
        }
    },
    //获取首页内容
    getIndex(res) {
        // console.log('token', res, wx.getStorageSync('token'));
        const self = this;
        let url = '/portal/Index/index';
        let params = {
            lat: self.data.lat,
            lng: self.data.lng,
            token: wx.getStorageSync('token'),
            page: self.data.page_number,
            addr: self.data.addr,
        };
        let header = {
            "token": wx.getStorageSync('token')
        };
        app.post(url, params, {}).then((res) => {
            // console.log('获取首页', res);
            if (+res.code === 1) {
                wx.hideLoading();
                self.setData({
                    slide: res.data.banner,
                    cate: res.data.cate,
                    city: res.data.city,
                    noticeList: res.data.extra,
                    meal_banner: res.data.meal,
                    items: res.data.active,
                    is_canSend: res.data.is_canSend,
                });
                // console.log('meal',res.data.meal);
                wx.setStorageSync('is_canSend', res.data.is_canSend);//1:可以发布2:不可以发布
                wx.setStorageSync('is_answer', res.data.is_answer);//1:已答题2:未答题
                // is_answer
                self._doRefreshMasonry(res.data.active);
                // console.log(this.data.this_week_test_info);
            }
        })
    },
    //是否填写个人信息
    getIsWrite() {
        const self = this;
        let url = '/portal/Send/isWrite';
        let params = {
            token: wx.getStorageSync('token'),
        };
        let header = {
            "token": wx.getStorageSync('token')
        };
        app.post(url, params, {}).then((res) => {
            // console.log('是否填写个人信息', res);
            if (+res.code === 1) {
                self.setData({
                    is_write: res.data.is_write,//1:已填写2:未填写
                });
                wx.setStorageSync('is_write', res.data.is_write);//1:已填写2:未填写
                // console.log(this.data.this_week_test_info);
            }
        })
    },
    onLoad: function () {
        // this.getCityList();
        // this.getAbroadList();
        this._doRefreshMasonry(this.data.items);
        // this.getPosition()
        //     this.getLat();//获取经纬度
    },
    onShow() {
      if (!app.globalData.isLogin){
        wx.getSetting({
          success(res) {
            if (!res.authSetting['scope.userInfo']) {
              app.globalData.isLogin = false;
              wx.showToast({
                title: '您还没登录,请登录后操作',
                icon: 'none'
              })
              setTimeout(() => {
                wx.navigateTo({
                  url: '/pages/my/my', //跳转到授权页面
                })
              }, 1500)
            }
          }
        })
      }

        wx.showLoading({title:'加载中',mask:true});
        if (wx.getStorageSync('isLogin')) {
            this.getLat();//获取经纬度
        }
        if (wx.getStorageSync('lat') !== '' &&
            wx.getStorageSync('lng') !== '' &&
            wx.getStorageSync('addr') !== '') {
            // console.log('已选择城市');
            this.setData({
                is_city_change: true,
                lat: wx.getStorageSync('lat'),
                lng: wx.getStorageSync('lng'),
                addr: wx.getStorageSync('addr'),
            });
            this.getIndex()
        }
        setTimeout(function () {
            wx.hideLoading()
        }, 2000);
        // wx.chooseLocation({
        //     success(res) {
        //         console.log(res);
        //         self.setData({address_position: res.address,lat:res.latitude,lng:res.longitude})
        //     },
        // })
        // wx.openLocation({//​使用微信内置地图查看位置。
        //     latitude: 39.02934,//要去的纬度-地址
        //     longitude: 117.0212,//要去的经度-地址
        //     name: "",
        //     address: ""
        // })
        // console.log('index-show-isLogin', wx.getStorageSync('isLogin'));
        // console.log(app.globalData.userInfo);
    },
    onPageScroll(e) {
        // console.log('页面滚动', e);
        if (e.scrollTop > 140) {
            this.setData({hidden_top: true})
        } else if (e.scrollTop <= 140) {
            this.setData({hidden_top: false})
        }
    },
    /**
     * 用户点击右上角分享
     */
    onShareAppMessage: function () {
        let self = this;
        self.setData({show_gold_modal: false});
        // 设置菜单中的转发按钮触发转发事件时的转发内容
        var shareObj = {
            title: '火柴西路', // 默认是小程序的名称(可以写slogan等)
            path: '', // 默认是当前页面,必须是以‘/’开头的完整路径
            imageUrl: '', //自定义图片路径,可以是本地文件路径、代码包文件路径或者网络图片路径,支持PNG及JPG,不传入 imageUrl 则使用默认截图。显示图片长宽比是 5:4
            success: function (res) {
                if (res.errMsg == 'shareAppMessage:ok') {
                }
            },
            fail: function () {
                // 转发失败之后的回调
                if (res.errMsg == 'shareAppMessage:fail cancel') {
                    // 用户取消转发
                } else if (res.errMsg == 'shareAppMessage:fail') {
                    // 转发失败,其中 detail message 为详细失败信息
                }
            },
            complete: function () {
                // 转发结束之后的回调(转发成不成功都会执行)
            }
        }
    },
    // onReady() {
    //     console.log('进入onReady');
    //     if (wx.getStorageSync('isLogin')) {
    //         this.getLat();//获取经纬度
    //     }
    //     wx.openSetting({
    //         success: function (dataAu) {
    //             console.log('进入onReady拉起授权',dataAu);
    //             if (dataAu.authSetting["scope.userLocation"]) {
    //                 wx.showToast({
    //                     title: '授权成功',
    //                     icon: 'success',
    //                     duration: 1000
    //                 })
    //                 //再次授权,调用getLocationt的API
    //                 getLocation(self);
    //             } else {
    //                 wx.showToast({
    //                     title: '授权失败',
    //                     icon: 'none',
    //                     duration: 1000
    //                 })
    //             }
    //         }
    //     })
    // },
});