del:function(e){
var that = this;
wx.showmodal({
title: '提示',
content: '确定要删除吗?',
success: function (sm) {
if (sm.confirm) {
// 用户点击了确定 可以调用删除方法了
wx.request({
url: 'https://m.*****.com/index.php/home/xiaoxxf/home_comment_del?c_id=' + e.currenttarget.dataset.cid, //删除房间评论
data: '',
header: {
'content-type': 'application/json'
},
method: 'get',
success: function (res) {
console.log(res);
wx.showtoast({
title: res.data, //数据返回提示,查看后台php
icon: 'success',
duration: 2000
})
/* 获取房间评论信息 -xzz 0714*/
getlist(that);
},
fail: function (res) { },
complete: function (res) { },
})
} else if (sm.cancel) {
}
}
})
}