123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- const app = getApp()
- const util = require("../../../utils/util");
- const mallapi = require('../../../api/mall.js');
- var dateTimePicker = require('../../../utils/dateTimePicker.js')
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- leaveTypeList: [],
- subTypeList: [],
- arrnameA: ['请选择'],
- arrnameB: [],
- chooseLeaveTypeIndex: 0,
- chooseLeaveTypeValue: null,
- chooseLeaveSubIndex: 0,
- chooseLeaveSubValue: null,
- leaveStartTime: null,
- leaveEndTime: null,
- leaveReason: null,
- dateTimeKS: '', //插件日期
- dateTimeJS: '', //插件日期
- dateTimeArray: '', //插件日期
- // startT: '',
- picUrls: [],
- files: [],
- },
- bindPickerChange: function (e) {
- console.log('picker发送选择改变,携带值为', e.detail.value)
- let index = e.detail.value - 1;
- if (index == -1) {
- return;
- }
- let temparr = this.data.leaveTypeList[index].subList;
- let tempB = [];
- temparr.forEach(c => {
- tempB.push(c.typeName);
- })
- this.setData({
- chooseLeaveTypeValue: this.data.leaveTypeList[index].id,
- chooseLeaveTypeIndex: index + 1,
- subTypeList: temparr,
- arrnameB: tempB,
- chooseLeaveSubValue: temparr[0].id,
- })
- },
- bindPickerChangeB: function (e) {
- console.log('pickerB发送选择改变,携带值为', e.detail.value)
- this.setData({
- chooseLeaveSubValue: this.data.subTypeList[e.detail.value].id,
- chooseLeaveSubIndex:e.detail.value
- })
- },
- changeDateTime(e) {
- //获取时间日期
- // console.log(e.detail.value);
- let leaveStartTime = dateTimePicker.formatPickerDateTime(this.data.dateTimeArray, e.detail.value)
- this.setData({
- dateTimeKS:e.detail.value,
- leaveStartTime: leaveStartTime,
- })
- },
- changeDateTimeEnd(e) {
- //获取时间日期
- // console.log(e.detail.value);
- let leaveEndTime = dateTimePicker.formatPickerDateTime(this.data.dateTimeArray, e.detail.value)
- this.setData({
- dateTimeJS:e.detail.value,
- leaveEndTime: leaveEndTime,
- })
- },
- bindleaveReason(e){
- this.setData({
- leaveReason: e.detail.value,
- })
- },
- previewImage: function (e) {
- wx.previewImage({
- current: e.currentTarget.id, // 当前显示图片的http链接
- urls: this.data.files // 需要预览的图片http链接列表
- })
- },
- chooseImage: function (e) {
- if (this.data.files.length >= 4) {
- util.showErrorToast('只能上传四张图片')
- return false;
- }
- var that = this;
- wx.chooseImage({
- count: 1,
- sizeType: ['original', 'compressed'],
- sourceType: ['album', 'camera'],
- success: function (res) {
- that.setData({
- files: that.data.files.concat(res.tempFilePaths)
- });
- console.info(res.tempFilePaths[0])
- that.upload(res)
- }
- })
- },
- upload: function (res) {
- var that = this;
- const uploadTask = wx.uploadFile({
- url: mallapi.StorageUpload(),
- filePath: res.tempFilePaths[0],
- name: 'file',
- formData:{'X-JZ-Token':wx.getStorageSync('token')},
- success: function (res) {
- var _res = JSON.parse(res.data);
- if (_res.errno === 0) {
- var url = _res.data.fileUrl
- var pics = that.data.picUrls;
- pics.push(url);
- that.setData({
- hasPicture: true,
- picUrls: pics
- })
- }
- },
- fail: function (e) {
- wx.showModal({
- title: '错误',
- content: '上传失败',
- showCancel: false
- })
- },
- })
- // uploadTask.onProgressUpdate((res) => {
- // console.log('上传进度', res.progress)
- // console.log('已经上传的数据长度', res.totalBytesSent)
- // console.log('预期需要上传的数据总长度', res.totalBytesExpectedToSend)
- // })
- },
- commitLeave() {
- if (this.data.chooseLeaveSubValue == null || this.data.chooseLeaveSubValue == '') {
- this.myshowtost("请选择请假子类型")
- return;
- }
- if (this.data.leaveReason == null || this.data.leaveReason == '') {
- this.myshowtost("请输入请假原因")
- return;
- }
- let req = {
- "leaveTypeId": this.data.chooseLeaveSubValue,
- // "workerNo":"s0000464",
- "leaveStartTime": this.data.leaveStartTime,
- "leaveEndTime": this.data.leaveEndTime,
- "leaveReason": this.data.leaveReason,
- "leaveImages": this.data.picUrls.join(',')
- }
- console.log(req);
- let that=this;
- util.request(mallapi.SubmitLeave,req,"POST").then(function (res) {
- if (res.errno === 0) {
- that.myshowtost("提交成功");
- wx.navigateBack();
- }else{
- that.myshowtost(res.errmsg)
- }
- });
-
- },
-
-
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- this.getLeaveTypeList();
- var start =util.formatDate(new Date())+" 00:00"; //'2022-08-27 00:00:00'
- var obj = dateTimePicker.dateTimePicker(2022, 2030, start);
- this.setData({
- dateTimeKS: obj.dateTime,
- dateTimeJS: obj.dateTime,
- dateTimeArray: obj.dateTimeArray
- });
- var leaveStartTime = dateTimePicker.formatPickerDateTime(this.data.dateTimeArray, this.data.dateTimeKS)
- this.setData({
- leaveStartTime: leaveStartTime,
- leaveEndTime: leaveStartTime,
- })
- },
- getLeaveTypeList() {
- let that = this;
- util.request(mallapi.GetLeaveAllType, {}, 'GET').then(function (res) {
- if (res.errno === 0) {
- let arrname = ['请选择'];
- res.data.forEach(c => {
- arrname.push(c.typeName);
- })
- that.setData({
- leaveTypeList: res.data,
- arrnameA: arrname
- });
- }
- });
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- myshowtost: function (v) {
- wx.showToast({
- title: v,
- icon: 'none',
- duration: 2000
- })
- },
- })
|