123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- // pages/loadAppoint/index.js
- const app = getApp();
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- str:' ',
- loginStatus: wx.getStorageSync('loginStatus') ? wx.getStorageSync('loginStatus') : false,
- roleCodeList: wx.getStorageSync('roleCodeList') ? wx.getStorageSync('roleCodeList') : '',
- searchVal: '',
-
- //分页
- limit: 10,
- requestStatu: '加载中...',
- page: 1,
- totalPages: 1,
- more: false,
- nomore: '',
- resData:[],
- showOver: false,
- showFill: false,
- endReason:'',//结束说明
- fillWeight:'',//填报重量
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad(options) {
- //预约审核状态
- let treeData = app.globalData.treeArr
- for (const element of treeData) {
- let arrStr;
- switch (element.dictValue) {
- case 'arrive_status':
- arrStr = "arriveStatusArray";
- break;
- }
- let getArray =[{
- dictValue: "",
- dictLabel: "全部状态"
- }]
- this.setData({
- [arrStr]: getArray.concat(element.children)
- })
- }
- this.setData({
- safeAreaHeight: app.globalData.windowInfo.screenHeight - app.globalData.systemInfo.safeArea.bottom
- })
- // 使用选择器选择节点
- this.getFilterHeight()
- //获取页面高度设置新增按钮的初始位置
- var that = this;
- wx.getSystemInfo({
- success: function (res) {
- // 高度,宽度 单位为px
- that.setData({
- windowHeight: res.windowHeight, //屏幕宽度、高度
- windowWidth: res.windowWidth,
- buttonTop: res.windowHeight * 0.8 - that.data.safeAreaHeight-50, //这里定义按钮的初始位置
- buttonLeft: res.windowWidth * 0.80, //这里定义按钮的初始位置
- })
- }
- })
- },
- //获取顶部筛选区域的高度
- getFilterHeight:function(){
- let that = this;
- // 使用顶部筛选高度选择器选择节点的高度
- const query = wx.createSelectorQuery();
- query.select('.topSeach').boundingClientRect(function (rect) {
- if(rect){
- that.setData({
- filterWidth: rect.width,
- filterHeight: rect.height,
- });
- }
- }).exec();
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady() {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow() {
- const roleCodeList = wx.getStorageSync('roleCodeList')
- let loginStatus = wx.getStorageSync('loginStatus')
- this.setData({
- searchVal: '',
- roleCodeList: roleCodeList ? roleCodeList : '',
- loginStatus: loginStatus ? loginStatus : false
- })
- if(wx.getStorageSync('loginStatus')){
- this.getListFun();
- }
- },
- //页面跳转
- toLink: function (e) {
- let { url } = e.currentTarget.dataset
- wx.navigateTo({
- url: url
- })
- },
- //搜索框请求S
- onChange(e) {
- this.setData({
- searchVal: e.detail,
- });
- },
- onSearch: function (event) {
- this.setData({
- searchVal: event.detail
- })
- this.getListFun();
- },
- onCancel: function () {
- this.setData({})
- },
- toSearch: function (event) {
- this.getListFun();
- },
- //列表
- getListFun: function () {
- this.setData({
- page: 1
- })
- let params = {
- current : this.data.page,
- size : this.data.limit,
- loadNumber: this.data.searchVal
- }
- app.request.pageFirst({
- url: app.API.bizloadappointPage,
- page: this,
- params: params,
- })
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide() {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload() {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- this.setData({
- searchVal: ''
- })
- if (wx.getStorageSync('loginStatus')) {
- this.getListFun();
- } else {
- wx.stopPullDownRefresh();
- }
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- this.data.page++;
- let params = {
- current: this.data.page,
- size: this.data.limit,
- loadNumber:this.data.searchVal,
- }
- app.request.pageOther({
- url: app.API.appointmentList,
- page: this,
- params: params,
- loadType: true //加载类型,是否是下拉加载
- });
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage() {
- },
- // 结束endLoad
- showPopupOver(e) {
- let { id } = e.currentTarget.dataset
- this.setData({
- showOver : true,
- id : id
- });
- },
- onCloseOver() {
- this.setData({
- showOver: false,
- id: '',
- endReason: ''
- });
- },
- // 结束表单提交
- formSubmitOver: function ({detail:{value}}) {
- let _this = this
- var warn = ""; //弹框时提示的内容
- if (value.endReason == '') {
- warn = "请输入结束说明!";
- }
- if (warn != '') {
- app.util.checkForm(warn);
- } else {
- app.request.POST({
- url: app.API.endLoad,
- params: value,
- page: this,
- isLoadingTxt: '提交中...',
- isSubmitting: true,
- successFun: true
- }).then(res => {
- wx.showToast({
- title: '订单结束成功',
- icon: 'success',
- duration: 1000,
- mask: true
- })
- _this.onCloseOver()
- _this.getListFun(); //刷新列表
- })
- }
- },
- // 填报
- showPopupFill(e) {
- let { id } = e.currentTarget.dataset
- this.setData({
- showFill : true,
- id : id
- });
- },
- onCloseFill() {
- this.setData({
- showFill: false,
- id: '',
- fillWeight: ''
- });
- },
- // 填报表单提交
- formSubmitFill: function ({detail:{value}}) {
- let _this = this
- var warn = ""; //弹框时提示的内容
- if (value.fillWeight == '') {
- warn = "请输入填报重量!";
- }
- if (warn != '') {
- app.util.checkForm(warn);
- } else {
- app.request.POST({
- url: app.API.fillLoad,
- params: value,
- page: this,
- isLoadingTxt: '提交中...',
- isSubmitting: true,
- successFun: true
- }).then(res => {
- wx.showToast({
- title: '填报成功',
- icon: 'success',
- duration: 1000,
- mask: true
- })
- _this.onCloseFill()
- _this.getListFun(); //刷新列表
- })
- }
- },
- })
|