• php搜索附近人及显示男生女生分开


    // 滚动切换标签样式
    switchTab: function (e) {
    this.setData({
    currentTab: e.detail.current
    });
    this.checkCor();
    0 == e.detail.current ? this.setData({
    people: this.data.peopless
    }) : 1 == e.detail.current ? this.setData({
    people: this.data.people1
    }) : this.setData({
    people: this.data.people2
    })
    },
    // tab选项卡切换
    tabtoggle(e) {
    var cur = e.target.dataset.current;
    var currentTab = this.data.currentTab
    if (currentTab == cur) { return false; }
    else {
    this.setData({
    currentTab: cur
    })
    0 == cur ? this.setData({
    people: this.data.peopless
    }) : 1 == cur ? this.setData({
    people: this.data.people1
    }) : this.setData({
    people: this.data.people2
    })
    }
    },
     
     
     
    getFujin:function(la1, lo1){
    var that = this;
    app.util.request({
    'url': 'entry/wxapp/Fujin',
    data:{
    lat:la1,//自己的经纬度
    lo:lo1
    },
    success: function (res) {
    console.log(res.data.data);
    var people = res.data.data;
    var people1 = [], people2 = [], len = people.length; // 1 男 2 女
    for (var j = 0; j < people.length; j++) {
    that.distance(la1, lo1, people[j].latitude, people[j].longitude)
    people[j].juli = that.data.s.toFixed(2);
    }
    for (var i = 0; i < len;i++){
    if (people[i].x_sex == "0"){
    people1.push(people[i]);
    }else{
    people2.push(people[i]);
    }
    }
    console.log(people1);
    console.log(people2);
    that.setData({
    people: res.data.data,
    peopless: res.data.data,
    people1: people1,
    people2: people2,
    })
     
    },
    fail: function (err) {
    console.log(err)
    },
    });
    },
  • 相关阅读:
    css盒模型
    css构造块级元素
    后台数据能刷新,前台页面显示不刷新问题
    java的代理和动态代理简单测试
    基于Maven的S2SH(Struts2+Spring+Hibernate)框架搭建
    SSH框架中配置log4j的方法
    Spring声明式事务配置管理方法
    Hibernate关联关系配置(一对多、一对一和多对多)
    java递归和反向递归
    Java实现几种常见排序方法
  • 原文地址:https://www.cnblogs.com/isuansuan/p/9990452.html
Copyright © 2020-2023  润新知