Files
kelfy-mini/pages/departmentChoose/departmentChoose.js

85 lines
1.3 KiB
JavaScript
Raw Permalink Normal View History

2025-11-13 13:38:59 +08:00
// pages/departmentChoose/departmentChoose.js
Page({
/**
* 页面的初始数据
*/
data: {
deptList: []
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
wx.setNavigationBarTitle({
title: '选择部门',
})
},
getDeptCategoryList() {
wx.request({
url: 'https://fy.btlsoln.com:8443/hisViewSearch/getHisDeptList',
method: "GET",
success: (res) => {
console.log(res)
this.setData({
deptList: res.data.data
})
}
})
},
navigateToDept(val) {
const deptId = val.currentTarget.dataset.ejks_id
wx.navigateTo({
url: '/pages/selectDepartment/selectDepartment?deptId=' + deptId,
})
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady() {
},
/**
* 生命周期函数--监听页面显示
*/
onShow() {
this.getDeptCategoryList()
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide() {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload() {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh() {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom() {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage() {
}
})