init version kelfy-mini for new gitea
This commit is contained in:
85
pages/departmentChoose/departmentChoose.js
Normal file
85
pages/departmentChoose/departmentChoose.js
Normal file
@@ -0,0 +1,85 @@
|
||||
// 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() {
|
||||
|
||||
}
|
||||
})
|
||||
3
pages/departmentChoose/departmentChoose.json
Normal file
3
pages/departmentChoose/departmentChoose.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
||||
7
pages/departmentChoose/departmentChoose.wxml
Normal file
7
pages/departmentChoose/departmentChoose.wxml
Normal file
@@ -0,0 +1,7 @@
|
||||
<view class="main">
|
||||
<view class="container">
|
||||
<van-cell-group inset wx:for="{{deptList}}">
|
||||
<van-cell title="{{item.ejks_mc}}" is-link data-ejks_id="{{item.ejks_id}}" bindtap="navigateToDept" />
|
||||
</van-cell-group>
|
||||
</view>
|
||||
</view>
|
||||
1
pages/departmentChoose/departmentChoose.wxss
Normal file
1
pages/departmentChoose/departmentChoose.wxss
Normal file
@@ -0,0 +1 @@
|
||||
/* pages/departmentChoose/departmentChoose.wxss */
|
||||
Reference in New Issue
Block a user