2026-01-21 17:05:30 +08:00
|
|
|
import { loginStatus, post } from '@/utils/https';
|
|
|
|
|
import { getAuthInfo, getDataSet, toArray } from '@/utils/util';
|
2026-01-14 16:54:47 +08:00
|
|
|
|
|
|
|
|
Page({
|
|
|
|
|
/**
|
|
|
|
|
* 页面的初始数据
|
|
|
|
|
*/
|
|
|
|
|
data: {
|
2026-01-21 17:05:30 +08:00
|
|
|
process: [] as any[],
|
2026-01-14 16:54:47 +08:00
|
|
|
},
|
|
|
|
|
navDetail(e: any) {
|
2026-01-21 17:05:30 +08:00
|
|
|
const index = getDataSet(e).index.split(',');
|
2026-01-14 16:54:47 +08:00
|
|
|
const pProcess = this.data.process[index[0]];
|
|
|
|
|
const cProcess = pProcess.child[index[1]];
|
|
|
|
|
const { p_process_name, process_name, process_id } = cProcess;
|
|
|
|
|
const title = encodeURIComponent(`${p_process_name} - ${process_name}`);
|
2026-01-21 17:05:30 +08:00
|
|
|
|
2026-01-14 16:54:47 +08:00
|
|
|
wx.navigateTo({
|
|
|
|
|
url: `/pages/produce/processManageDetail/processManageDetail?process_id=${process_id}&title=${title}`,
|
|
|
|
|
});
|
|
|
|
|
},
|
2026-01-21 17:05:30 +08:00
|
|
|
handleLogin(e: any) {
|
|
|
|
|
this.setData({ isLogin: e.detail });
|
|
|
|
|
if (e.detail) {
|
|
|
|
|
this.init();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
init() {
|
|
|
|
|
this.setData({ authInfo: getAuthInfo() });
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
getList() {
|
|
|
|
|
post('CompanyProcessV2/getAllProcessNum').then((res: any) => {
|
|
|
|
|
this.setData({ process: toArray(res.data) });
|
|
|
|
|
});
|
|
|
|
|
},
|
2026-01-14 16:54:47 +08:00
|
|
|
/**
|
|
|
|
|
* 生命周期函数--监听页面加载
|
|
|
|
|
*/
|
2026-01-21 17:05:30 +08:00
|
|
|
onLoad() {
|
|
|
|
|
this.setData({ loading: true });
|
|
|
|
|
loginStatus()
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.setData({ isLogin: true, loading: false });
|
|
|
|
|
this.init();
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {
|
|
|
|
|
this.setData({ isLogin: false, loading: false });
|
|
|
|
|
console.log('调用登录状态请求失败', err);
|
|
|
|
|
});
|
|
|
|
|
},
|
2026-01-14 16:54:47 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 生命周期函数--监听页面初次渲染完成
|
|
|
|
|
*/
|
|
|
|
|
onReady() {},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 生命周期函数--监听页面显示
|
|
|
|
|
*/
|
|
|
|
|
onShow() {},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 生命周期函数--监听页面隐藏
|
|
|
|
|
*/
|
|
|
|
|
onHide() {},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 生命周期函数--监听页面卸载
|
|
|
|
|
*/
|
|
|
|
|
onUnload() {},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 页面相关事件处理函数--监听用户下拉动作
|
|
|
|
|
*/
|
|
|
|
|
onPullDownRefresh() {},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 页面上拉触底事件的处理函数
|
|
|
|
|
*/
|
|
|
|
|
onReachBottom() {},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 用户点击右上角分享
|
|
|
|
|
*/
|
|
|
|
|
onShareAppMessage() {},
|
|
|
|
|
});
|