You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
1.9 KiB
JavaScript
100 lines
1.9 KiB
JavaScript
|
2 years ago
|
// pages/withdrawDetail/index.js
|
||
|
|
var common = require("../../utils/commonUtil.js");
|
||
|
|
const app = getApp();
|
||
|
|
Page({
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 页面的初始数据
|
||
|
|
*/
|
||
|
|
data: {
|
||
|
|
recordList: [],
|
||
|
|
},
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 生命周期函数--监听页面加载
|
||
|
|
*/
|
||
|
|
onLoad: function (options) {
|
||
|
|
this.getList();
|
||
|
|
},
|
||
|
|
getList: function() {
|
||
|
|
var that = this;
|
||
|
|
wx.request({
|
||
|
|
url: app.globalData.ip + "/wallet/withdrawal/list",
|
||
|
|
data: {
|
||
|
|
},
|
||
|
|
header: app.globalData.header,
|
||
|
|
method: "GET",
|
||
|
|
success: function(res) {
|
||
|
|
console.log(res)
|
||
|
|
if(res.data.status == 200) {
|
||
|
|
console.log(res);
|
||
|
|
//绑定成功
|
||
|
|
if(res.data.data.list.length > 0){
|
||
|
|
res.data.data.list.forEach(item => {
|
||
|
|
item.money = new Number(item.money).toFixed(2);
|
||
|
|
})
|
||
|
|
}
|
||
|
|
that.setData({
|
||
|
|
recordList: res.data.data.list,
|
||
|
|
});
|
||
|
|
} else {
|
||
|
|
wx.showToast({
|
||
|
|
icon: "none",
|
||
|
|
title: res.data.msg,
|
||
|
|
})
|
||
|
|
}
|
||
|
|
},
|
||
|
|
fail: function(res) {
|
||
|
|
console.log("操作失败");
|
||
|
|
}
|
||
|
|
})
|
||
|
|
},
|
||
|
|
/**
|
||
|
|
* 生命周期函数--监听页面初次渲染完成
|
||
|
|
*/
|
||
|
|
onReady: function () {
|
||
|
|
|
||
|
|
},
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 生命周期函数--监听页面显示
|
||
|
|
*/
|
||
|
|
onShow: function () {
|
||
|
|
|
||
|
|
},
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 生命周期函数--监听页面隐藏
|
||
|
|
*/
|
||
|
|
onHide: function () {
|
||
|
|
|
||
|
|
},
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 生命周期函数--监听页面卸载
|
||
|
|
*/
|
||
|
|
onUnload: function () {
|
||
|
|
|
||
|
|
},
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 页面相关事件处理函数--监听用户下拉动作
|
||
|
|
*/
|
||
|
|
onPullDownRefresh: function () {
|
||
|
|
|
||
|
|
},
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 页面上拉触底事件的处理函数
|
||
|
|
*/
|
||
|
|
onReachBottom: function () {
|
||
|
|
|
||
|
|
},
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 用户点击右上角分享
|
||
|
|
*/
|
||
|
|
// onShareAppMessage: function () {
|
||
|
|
|
||
|
|
// }
|
||
|
|
})
|