1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
epp/miniprogram/pages/apply/applyReplay.js

137 lines
2.6 KiB
JavaScript

const app = getApp()
const baseUrl = app.globalData.baseUrl
// console.log("baseUrl", baseUrl)
Page({
/**
* 页面的初始数据
*/
data: {
List: '',
replay: [],
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
doReplay: function (e) {
this.setData({
replay: e.detail.value
})
},
agree: function (event) {
var that = this
wx.request({
url: `${baseUrl}/apply/applyReplay`,
data: {
id: event.target.dataset.id,
replay: event.target.dataset.replay,
reasonId: 99
},
success: function (d) {
wx.showToast({
title: d.data.msg,
icon: 'success',
duration: 2000,
success: function () {}
})
that.onShow();
}
})
},
disagree: function (event) {
var that = this
wx.showActionSheet({
itemList: ['格式错误', '出行地点不允许', '时间填写错误'],
success: function (res) {
if (!res.cancel) {
wx.request({
url: `${baseUrl}/apply/applyReplay`,
data: {
id: event.target.dataset.id,
replay: event.target.dataset.replay,
reasonId: res.tapIndex,
},
success: function (d) {
wx.showToast({
title: d.data.msg,
icon: 'success',
duration: 2000,
success: function () {
that.onShow();
}
})
}
})
}
}
})
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
var that = this;
wx.request({
url: `${baseUrl}/apply/applyListNoReplay`,
success: function (d) {
that.setData({
List: d.data.data
})
}
})
},
// replay: function (event) {
// var that = this
// console.log(event.target.dataset)
// wx.request({
// url: `${baseUrl}/apply/applyListNoReplay`,
// })
// },
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})