分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 代码编程

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

发布时间:2023-09-06 02:23责任编辑:赖小花关键词:暂无标签
// 滚动切换标签样式
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)
},
});
},

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

原文地址:https://www.cnblogs.com/isuansuan/p/9990452.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved