You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.2 KiB
89 lines
2.2 KiB
var app = getApp()
|
|
var WXAPI = require('../../utils/server.js');
|
|
Page({
|
|
data: {
|
|
remind: '加载中',
|
|
},
|
|
//下拉刷新
|
|
onPullDownRefresh: function () {
|
|
wx.showNavigationBarLoading() //在标题栏中显示加载
|
|
this.footprint();
|
|
wx.hideNavigationBarLoading() //完成停止加载
|
|
wx.stopPullDownRefresh() //停止下拉刷新
|
|
},
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
*/
|
|
onLoad: function (options) {
|
|
this.footprint();
|
|
},
|
|
//页面加载完成函数
|
|
onReady: function () {
|
|
var that = this;
|
|
that.setData({
|
|
remind: ''
|
|
});
|
|
},
|
|
alldel: function () {
|
|
var that = this;
|
|
wx.showModal({
|
|
title: '提示',
|
|
content: '确定要清除全部商品吗?',
|
|
success: function (res) {
|
|
if (res.confirm) {
|
|
wx.request({
|
|
url: app.d.ceshiUrl + '&action=footprint&m=alldel',
|
|
method: 'post',
|
|
data: {
|
|
openid: app.globalData.userInfo.openid,
|
|
},
|
|
header: {
|
|
'Content-Type': 'application/x-www-form-urlencoded'
|
|
},
|
|
success: function (res) {
|
|
var status = res.data.status
|
|
if (status == 1) {
|
|
wx.showToast({
|
|
title: '清理成功!',
|
|
duration: 2000
|
|
});
|
|
that.setData({
|
|
arr: []
|
|
});
|
|
} else {
|
|
wx.showToast({
|
|
title: '清理失败!',
|
|
duration: 2000
|
|
});
|
|
}
|
|
},
|
|
error: function (e) {
|
|
wx.showToast({
|
|
title: '网络异常!',
|
|
duration: 2000
|
|
});
|
|
}
|
|
});
|
|
} else if (res.cancel) {
|
|
console.log('用户点击取消')
|
|
}
|
|
}
|
|
})
|
|
},
|
|
// 查看足迹
|
|
footprint: function(){
|
|
var that = this;
|
|
WXAPI.footprint({
|
|
accessId: app.globalData.accessId,
|
|
storeId: 239,
|
|
storeType: 1,
|
|
}).then(res => {
|
|
if (res.code == 200) {
|
|
var data = res.data
|
|
that.setData({
|
|
arr: data.arr
|
|
})
|
|
}
|
|
});
|
|
}
|
|
})
|