...
|
...
|
@@ -10,22 +10,22 @@ Page({ |
|
|
datalist: [],
|
|
|
pageNum: 10,
|
|
|
cover_type: false,
|
|
|
input_bottom:0
|
|
|
input_bottom: 0
|
|
|
},
|
|
|
// 获取到焦点
|
|
|
focus: function (e) {
|
|
|
focus: function(e) {
|
|
|
this.setData({
|
|
|
input_bottom: 100
|
|
|
})
|
|
|
},
|
|
|
|
|
|
// 失去焦点
|
|
|
no_focus: function (e) {
|
|
|
no_focus: function(e) {
|
|
|
this.setData({
|
|
|
input_bottom: 0
|
|
|
})
|
|
|
},
|
|
|
// 输入信息
|
|
|
// 输入信息
|
|
|
get_word(e) {
|
|
|
this.setData({
|
|
|
word: e.detail.value
|
...
|
...
|
@@ -33,7 +33,7 @@ Page({ |
|
|
},
|
|
|
// 改变弹窗状态
|
|
|
change_cover(e) {
|
|
|
if (e.currentTarget.dataset.id){
|
|
|
if (e.currentTarget.dataset.id) {
|
|
|
this.setData({
|
|
|
index: e.currentTarget.dataset.index,
|
|
|
id: e.currentTarget.dataset.id
|
...
|
...
|
@@ -81,8 +81,8 @@ Page({ |
|
|
|
|
|
},
|
|
|
|
|
|
// 添加时间
|
|
|
add_time(){
|
|
|
// 添加时间
|
|
|
add_time() {
|
|
|
let that = this
|
|
|
if (!that.data.word) {
|
|
|
wx.showToast({
|
...
|
...
|
@@ -112,15 +112,15 @@ Page({ |
|
|
})
|
|
|
}
|
|
|
})
|
|
|
}).catch((err) => { })
|
|
|
}).catch((err) => {})
|
|
|
},
|
|
|
//通过
|
|
|
pass(e) {
|
|
|
this.update_status(e.currentTarget.dataset.id,e.currentTarget.dataset.index, 2)
|
|
|
this.update_status(e.currentTarget.dataset.id, e.currentTarget.dataset.index, 2)
|
|
|
},
|
|
|
//驳回
|
|
|
reject() {
|
|
|
if(!this.data.word){
|
|
|
if (!this.data.word) {
|
|
|
wx.showToast({
|
|
|
title: '请填写不通过原因',
|
|
|
icon: 'none',
|
...
|
...
|
@@ -128,10 +128,10 @@ Page({ |
|
|
})
|
|
|
return
|
|
|
}
|
|
|
this.update_status(this.data.id,this.data.index, 3)
|
|
|
this.update_status(this.data.id, this.data.index, 3)
|
|
|
},
|
|
|
// 通过,不通过接口
|
|
|
update_status(id,index, status) {
|
|
|
update_status(id, index, status) {
|
|
|
let that = this
|
|
|
let datalist = that.data.datalist
|
|
|
let url = 'index/member_center/update_status';
|
...
|
...
|
@@ -142,7 +142,7 @@ Page({ |
|
|
id: id,
|
|
|
status: status
|
|
|
}
|
|
|
if(status == 3){
|
|
|
if (status == 3) {
|
|
|
params.refund_reason = that.data.word
|
|
|
}
|
|
|
app.post(url, params, head).then((res) => {
|
...
|
...
|
@@ -165,9 +165,14 @@ Page({ |
|
|
* 生命周期函数--监听页面加载
|
|
|
*/
|
|
|
onLoad: function(options) {
|
|
|
console.log(options)
|
|
|
wx.setNavigationBarTitle({
|
|
|
title: options.type == 2 ? '志愿者工时管理' : '志愿者审核',
|
|
|
})
|
|
|
this.setData({
|
|
|
type: options.type
|
|
|
})
|
|
|
|
|
|
this.getdatalist()
|
|
|
|
|
|
},
|
...
|
...
|
|