You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
436 lines
11 KiB
JavaScript
436 lines
11 KiB
JavaScript
// pages/myAgent/index.js
|
|
const app = getApp();
|
|
import dateUtil from "../../utils/dateUtil";
|
|
Page({
|
|
|
|
/**
|
|
* 页面的初始数据
|
|
*/
|
|
data: {
|
|
chaShowed: false,
|
|
openText: "最近维护",
|
|
chooseActive: 1,
|
|
isOpen: false,
|
|
isTrigger: false,
|
|
pageBean: {},
|
|
inputShowed: false,
|
|
inputVal: "搜索姓名",
|
|
recordList: [],
|
|
currIndex: '0',
|
|
phoneDialog: false,
|
|
searchKeyFlag: false,
|
|
searchParam: {
|
|
pageNum: 1,
|
|
pageSize: 20,
|
|
keys: '',
|
|
searchTag: 1,
|
|
status: 40,
|
|
sortField: 'updateTime',
|
|
sortType: 'desc',
|
|
},
|
|
isLoading: true,
|
|
hasMoreData: false,
|
|
hasChange: false
|
|
},
|
|
closeChoose () {
|
|
this.setData({
|
|
isOpen: false
|
|
})
|
|
},
|
|
openChoose () {
|
|
if (this.data.isOpen) {
|
|
this.setData({
|
|
isOpen: false
|
|
})
|
|
} else {
|
|
this.setData({
|
|
isOpen: true
|
|
})
|
|
}
|
|
|
|
},
|
|
changeOpenMenu (e) {
|
|
var that = this;
|
|
setTimeout(function () {
|
|
that.closeChoose()
|
|
}, 500)
|
|
let param = this.data.searchParam;
|
|
if (e.currentTarget.dataset.id == 1) {//最近维护
|
|
param.sortField = "updateTime";
|
|
param.sortType = "desc";
|
|
} else {
|
|
if (this.data.currIndex == 0) {//当前在职
|
|
param.sortField = "entryTime";
|
|
} else if (this.data.currIndex == 1) {//准备离职
|
|
param.sortField = "willLeaveTime";
|
|
} else if (this.data.currIndex == 2) {//最近离职
|
|
param.sortField = "leaveTime";
|
|
}
|
|
param.sortType = e.currentTarget.dataset.id == 2 ? "desc" : "asc";
|
|
}
|
|
|
|
this.setData({
|
|
chooseActive: e.currentTarget.dataset.id,
|
|
openText: e.currentTarget.dataset.text,
|
|
recordList: [],
|
|
searchParam: param
|
|
})
|
|
this.getList();
|
|
},
|
|
onScrollToLower: function () {
|
|
this.data.searchParam.pageNum = this.data.searchParam.pageNum + 1;
|
|
this.getList();
|
|
},
|
|
changeMenu (e) {
|
|
var that = this;
|
|
wx.showLoading({
|
|
title: '加载中...',
|
|
});
|
|
that.data.searchParam.pageNum = 1;
|
|
that.data.searchParam.searchTag = e.currentTarget.dataset.id;
|
|
|
|
if (e.currentTarget.dataset.id == 0) {
|
|
this.data.searchParam.status = 40;
|
|
} else if (e.currentTarget.dataset.id == 1) {
|
|
this.data.searchParam.status = 48;
|
|
} else {
|
|
this.data.searchParam.status = 50;
|
|
}
|
|
|
|
|
|
this.setData({
|
|
currIndex: e.currentTarget.dataset.id,
|
|
recordList: [],
|
|
searchParam: this.data.searchParam
|
|
})
|
|
this.getList();
|
|
|
|
},
|
|
onScrollRefresh () {
|
|
this.data.recordList = [];
|
|
this.data.searchParam.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
searchKey: function (e) {
|
|
console.log(e, this.data.inputVal);
|
|
this.data.recordList = [];
|
|
this.data.searchParam.pageNum = 1;
|
|
this.data.searchParam.keys = this.data.inputVal;
|
|
this.getList();
|
|
},
|
|
|
|
showInput: function () {
|
|
this.setData({
|
|
inputShowed: true
|
|
});
|
|
},
|
|
hideInput: function () {
|
|
this.setData({
|
|
inputVal: "",
|
|
inputShowed: false
|
|
});
|
|
},
|
|
clearInput: function () {
|
|
console.log(123);
|
|
this.setData({
|
|
inputVal: "搜索姓名",
|
|
chaShowed: false,
|
|
});
|
|
this.data.recordList = [];
|
|
this.data.searchParam.keys = '';
|
|
this.data.searchParam.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
inputTyping: function (e) {
|
|
console.log(e.detail.value);
|
|
this.setData({
|
|
inputVal: e.detail.value
|
|
});
|
|
if (this.data.inputVal == '') {
|
|
|
|
this.data.searchParam.keys = '';
|
|
this.data.searchParam.pageNum = 1;
|
|
this.getList();
|
|
}
|
|
},
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
*/
|
|
onLoad: function (options) {
|
|
//this.getLocation();
|
|
console.log(options.state);
|
|
var that = this;
|
|
this.setData({
|
|
currIndex: options.state
|
|
})
|
|
|
|
wx.showLoading({
|
|
title: '加载中...',
|
|
});
|
|
if (that.data.currIndex == 0) {
|
|
this.data.searchParam.status = 40;
|
|
} else if (that.data.currIndex == 1) {
|
|
this.data.searchParam.status = 48;
|
|
} else {
|
|
this.data.searchParam.status = 50;
|
|
}
|
|
this.setData({
|
|
recordList: [],
|
|
searchParam: this.data.searchParam
|
|
})
|
|
|
|
|
|
that.getList();
|
|
|
|
|
|
},
|
|
goSearch () {
|
|
wx.navigateTo({
|
|
url: '../search/index?from=townMan',
|
|
})
|
|
},
|
|
|
|
|
|
goDetail: function (e) {
|
|
var id = e.currentTarget.dataset.id;
|
|
wx.navigateTo({
|
|
// url: '/pages/editAgent/index?agencyId=' + id,
|
|
// url:'/pages/agentDetail/index?agencyId=' + id
|
|
url: '/pages/townsmanDetail/index?userId=' + id
|
|
})
|
|
},
|
|
|
|
getList: function () {
|
|
var that = this;
|
|
wx.showLoading({
|
|
title: '加载中...',
|
|
})
|
|
that.setData({
|
|
isLoading: true
|
|
});
|
|
that.data.searchParam.keys = that.data.inputVal == '搜索姓名' ? '' : that.data.inputVal;
|
|
wx.request({
|
|
url: app.globalData.ip + '/agency/user/list',
|
|
data: that.data.searchParam,
|
|
header: app.globalData.header,
|
|
method: "GET",
|
|
success: function (res) {
|
|
console.log(res.data);
|
|
console.log(res.data.data.recordList);
|
|
if (res.data.status == 200) {
|
|
that.setData({
|
|
isLoading: false,
|
|
searchKeyFlag: that.data.searchParam.keys ? true : false,
|
|
});
|
|
// if (res.data.data.recordList != null && res.data.data.recordList.length > 0) {
|
|
// res.data.data.recordList.forEach(item => {
|
|
// item['updateTimeStr'] = dateUtil.timeShowXXX(item.updateTime);
|
|
// if (app.isEmptyCheck(item.tel)) {
|
|
// item.tel = '';
|
|
// }
|
|
// if (app.isEmptyCheck(item.userName)) {
|
|
// item.userName = '';
|
|
// }
|
|
// });
|
|
// }
|
|
|
|
// res.data.data.recordList.forEach((item,index)=>{
|
|
// if (app.isNotEmptyCheck(item.userServeRecordDespLatest)) {
|
|
|
|
// if (item.userServeRecordDespLatest.indexOf('「协助报名」') == 0) {
|
|
// if (app.isNotEmptyCheck(item.agencyUserName)) {
|
|
// item.agencyUserName = '@' + item.agencyUserName;
|
|
// } else {
|
|
// item.agencyUserName = '';
|
|
// }
|
|
// }
|
|
|
|
// item.userServeRecordDespLatest = item.userServeRecordDespLatest.replace(/「/g, "<span style='color:#4DB54B;margin-right:4px;'>").replace(/」/g, "</span>" + item.agencyUserName);
|
|
// }
|
|
// })
|
|
res.data.data.recordList.forEach((item) => {
|
|
// console.log(item.nation.substr(item.nation.length-1,1));
|
|
if (item.nation.substr(item.nation.length - 1, 1) != '族' && item.nation.substr(item.nation.length - 1, 1) != '') {
|
|
item.nation = item.nation + '族'
|
|
}
|
|
})
|
|
|
|
if (res.data.data.recordList != null && res.data.data.recordList.length < 20) {
|
|
var recordListTemp = res.data.data.recordList;
|
|
that.data.recordList = that.data.recordList.concat(recordListTemp);
|
|
that.setData({
|
|
hasMoreData: false
|
|
});
|
|
} else {
|
|
var recordListTemp = res.data.data.recordList;
|
|
that.data.recordList = that.data.recordList.concat(recordListTemp);
|
|
that.setData({
|
|
hasMoreData: true
|
|
});
|
|
}
|
|
|
|
that.setData({
|
|
recordList: that.data.recordList,
|
|
isLoading: false,
|
|
isTrigger: false
|
|
});
|
|
|
|
if (res.data.data.recordList != null && res.data.data.recordList.length < 20) {
|
|
that.setData({
|
|
hasMoreData: false
|
|
});
|
|
} else {
|
|
that.setData({
|
|
hasMoreData: true
|
|
});
|
|
}
|
|
wx.hideLoading();
|
|
|
|
} else {
|
|
app.showTips(that, res.data.msg);
|
|
}
|
|
|
|
|
|
},
|
|
fail: function (res) {
|
|
console.log(res);
|
|
}
|
|
})
|
|
},
|
|
close: function () {
|
|
this.setData({
|
|
phoneDialog: false,
|
|
})
|
|
},
|
|
makePhone: function (e) {
|
|
var that = this;
|
|
|
|
// console.log(e);
|
|
// that.setData({
|
|
// phoneDialog:true,
|
|
// phone:e.currentTarget.dataset.phone
|
|
// })
|
|
|
|
wx.makePhoneCall({
|
|
phoneNumber: e.currentTarget.dataset.phone
|
|
});
|
|
},
|
|
makePhoneCall: function (e) {
|
|
var that = this;
|
|
wx.makePhoneCall({
|
|
phoneNumber: that.data.phone
|
|
});
|
|
},
|
|
bindCode: function (e) {
|
|
console.log(e)
|
|
wx.navigateToMiniProgram({
|
|
appId: 'wxb1f7c694803f6f00', //appid
|
|
path: '/pages/scanQrcode/index?agencyUserId=' + e.currentTarget.dataset.userid,//path
|
|
extraData: { //参数
|
|
agencyUserId: e.currentTarget.dataset.userid
|
|
},
|
|
envVersion: 'release', //develop 开发版 trial 体验版 release 正式版
|
|
success (res) {
|
|
console.log('成功')
|
|
// 打开成功
|
|
}
|
|
})
|
|
|
|
},
|
|
|
|
|
|
/**
|
|
* 生命周期函数--监听页面初次渲染完成
|
|
*/
|
|
onReady: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面显示
|
|
*/
|
|
onShow: function () {
|
|
// this.getList();
|
|
var that = this;
|
|
console.log(123);
|
|
console.log(wx.getStorageSync('TOWNSMAN_PAGE_CHANGE'));
|
|
if (wx.getStorageSync('TOWNSMAN_PAGE_CHANGE')) {
|
|
this.setData({
|
|
recordList: [],
|
|
searchParam: {...this.data.searchParam,pageNum:1}
|
|
})
|
|
that.getList();
|
|
wx.removeStorageSync('TOWNSMAN_PAGE_CHANGE')
|
|
}
|
|
if (that.data.inputVal == '搜索姓名') {
|
|
return
|
|
}
|
|
if (that.data.currIndex == 0) {
|
|
this.data.searchParam.status = 40;
|
|
} else if (that.data.currIndex == 1) {
|
|
this.data.searchParam.status = 48;
|
|
} else {
|
|
this.data.searchParam.status = 50;
|
|
}
|
|
|
|
|
|
try {//详情页修改完,在列表更新一下,不请求后台刷新列表
|
|
var value = wx.getStorageSync('storageSyncUpdateUserOfUserDetails');
|
|
if (value) {
|
|
for (var i = 0; i < that.data.recordList.length; i++) {
|
|
if (that.data.recordList[i].id == value.id) {
|
|
that.data.recordList[i].userName = value.userName;
|
|
that.setData({
|
|
recordList: that.data.recordList
|
|
});
|
|
|
|
try {
|
|
wx.removeStorageSync('storageSyncUpdateUserOfUserDetails')
|
|
} catch (e) {
|
|
console.log('详情页修改完,在列表更新一下,不请求后台刷新列表,删除缓存错误:', e);
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
} catch (e) {
|
|
console.log('详情页修改完,在列表更新一下,不请求后台刷新列表错误:', e);
|
|
}
|
|
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面隐藏
|
|
*/
|
|
onHide: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面卸载
|
|
*/
|
|
onUnload: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 页面相关事件处理函数--监听用户下拉动作
|
|
*/
|
|
onPullDownRefresh: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 页面上拉触底事件的处理函数
|
|
*/
|
|
onReachBottom: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 用户点击右上角分享
|
|
*/
|
|
onShareAppMessage: function () {
|
|
|
|
}
|
|
}) |