HTML
暂无相关动态~
wx:if="{{item.pLpre==0||idx
JS
showpraiseData: function(e) {
var index = e.currentTarget.dataset.index;
var list = this.data.list;
if (list[index].showpraiseData)
list[index].showpraiseData = false;
else
list[index].showpraiseData = true;
this.setData({
list: list
})
},
zankai: function(e) {
var index = e.currentTarget.dataset.index;
var list = this.data.list;
list[index].showmore = true;
this.setData({
list: list
})
},
shouqi: function(e) {
var index = e.currentTarget.dataset.index;
var list = this.data.list;
list[index].showmore = false;
this.setData({
list: list
})
},
plClick: function(e) {
var self = this;
console.log(e)
self.setData({
dcn_id: 0,
focus: true,
pldcnid: e.currentTarget.dataset.id,
plindex: e.currentTarget.dataset.index,
iipuHeight: e.detail.height ? e.detail.height : 0
})
},
zanClick: function(e) {
var self = this,
ispraise = e.currentTarget.dataset.ispraise,
dcn_id = e.currentTarget.dataset.id,
index = parseInt(e.currentTarget.dataset.index);
self.setData({
dcn_id: 0,
})
var list = self.data.list;
console.log(list[index])
var les = {'dcnp_dcn_id': "146",
'dcnp_mi_headerimg': "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132",
'dcnp_mi_id': "1283913",
'dcnp_mi_nickname': "灯-灯-灯灯"
}
console.log(list[index].praiseData)
if (list[index].isPraise==0){
list[index].praiseData.push(les)
}else{
list[index].praiseData.pop()
}
console.log(list[index].praiseData)
list[index].isPraise = ispraise == 0 ? 1 : 0
list[index].dcn_praise_count = parseInt(list[index].dcn_praise_count) + (ispraise == 0 ? 1 : -1)
console.log(list)
self.setData({
list: list
})
},
removeClick: function(e) {
var self = this,
dcn_id = e.currentTarget.dataset.id,
index = e.currentTarget.dataset.index;
wx.showModal({
title: '提示',
content: '是否立即删除该内容?',
success(res) {
if (res.confirm) {
self.setData({
dcn_id: 0,
})
var list = self.data.list;
list.splice(index, 1);
self.setData({
list: list
})
} else if (res.cancel) {
console.log('用户点击取消')
}
}
})
},
jpclick: function() {
console.info("sssssssss")
var self = this;
var text = self.data.pltext;
if (!text || text.length <= 0) {
wx.showToast({
title: '您没有输入要评论的内容!',
icon: 'none',
duration: 2000
})
return;
}
self.setData({
dcn_id: 0
})
wx.showToast({
title: '评论成功',
icon: 'none',
duration: 2000
})
var list = self.data.list;
var les = {
"dcnc_id": Math.floor(Math.random() * 100),
"dcnc_dcn_id": Math.floor(Math.random() * 100),
"dcnc_pid": "0",
"dcnc_mi_id": "1276072",
"dcnc_mi_nickname": "本人",
"dcnc_reply_mi_id": "0",
"dcnc_reply_mi_nickname": "",
"dcnc_text": text,
"dcnc_addtime": new Date(),
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/ajNVdqHZLLDb3Ncf6m5tLeWIqxZj5SYGL0Cjwago7IuDrH4LnZ03ollJI6MBvMmt6cVmibk08myiaaMb4o7nQmJA/132"
}
console.log(les)
list[parseInt(self.data.plindex)].commentDataJson.push(les);
list[parseInt(self.data.plindex)].dcn_comment_count = parseInt(list[parseInt(self.data.plindex)].dcn_comment_count) + 1
self.setData({
list: list,
focus: false,
})
},
inputFun: function(e) {
var self = this;
self.setData({
pltext: e.detail.value,
})
},
blurClick: function(e) {
var self = this;
self.setData({
pltext: e.detail.value,
})
setTimeout(function() {
self.setData({
focus: false,
})
}, 500)
},
previewImage: function(e) {
console.log(e)
var self = this
wx.previewImage({
current: self.data.list[e.currentTarget.dataset.arr].dcn_imgs[e.currentTarget.dataset.index], // 当前显示图片的http链接
urls: self.data.list[e.currentTarget.dataset.arr].dcn_imgs // 需要预览的图片http链接列表
})
},
showpraiseData: function(e) {
var index = e.currentTarget.dataset.index;
var list = this.data.list;
if (list[index].showpraiseData)
list[index].showpraiseData = false;
else
list[index].showpraiseData = true;
this.setData({
list: list
})
},
css
/* pages/index/discor.wxss */
.scrtionList {
margin-top: 20rpx;
}
.scrtionListItem {
margin-top: 50rpx;
border-bottom: 1px solid #f1f1f1;
padding: 0 30rpx;
padding-bottom: 28rpx;
}
.scrtionListItemTop {
display: flex;
}
.scrtionListItemTopIMg {
margin-right: 20rpx;
}
.scrtionListItemTop image {
width: 80rpx;
height: 80rpx;
border-radius: 50%;
}
.scrtionListItemTopTXT28 {
font-size: 28rpx;
color: #333;
}
.scrtionListItemTopTXT20 {
font-size: 20rpx;
color: #999;
margin-top: 10rpx;
}
.scrtionListItemTopTXT20 text {
padding-left: 30rpx;
}
.scrtionListItemTxtV {
margin-left: 100rpx;
color: #333;
font-size: 30rpx;
}
.scrtionListItemImgV {
margin-top: 10rpx;
}
.vertical {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
}
.scrtionListItemImgV view {
float: left;
width: 170rpx;
height: 170rpx;
overflow: hidden;
margin-right: 10rpx;
margin-bottom: 10rpx;
line-height: 170rpx;
}
.scrtionListItemImgV view.img1 {
height: auto;
}
.scrtionListItemImgV view.img4 {
width: 180rpx;
height: 180rpx;
}
.scrtionListItemImgV view.img4 image {
width: 180rpx;
height: 180rpx;
}
.scrtionListItemImgV image {
display: block;
width: 100%;
min-height: 180rpx;
}
.scrtionListItemImgV image:nth-child(3), .scrtionListItemImgV image:nth-child(6),
.scrtionListItemImgV image:nth-child(9) {
margin-right: 0rpx;
}
.scrtionListItemTxtVBtom {
margin-top: 10rpx;
display: flex;
font-size: 20rpx;
justify-content: space-between;
height: 38rpx;
line-height: 38rpx;
color: #999;
}
.scrtionListItemTxtVBtomTxtViewLIetemznca {
color: #3c8cd5;
text-align: center;
height: 30rpx;
line-height: 30rpx;
margin-top: 20rpx;
padding: 15rpx 0;
border-top: 1rpx solid rgb(221, 220, 220);
font-size: 24rpx;
}
.scrtionListItemTxtVBtom text {
color: #3c8cd5;
padding-left: 30rpx;
}
.scrtionListItemTxtVBtomIMgV {
position: relative;
}
.scrtionListItemTxtVBtomIMgV image {
width: 58rpx;
height: 38rpx;
}
.scrtionListItemTxtVBtomIMgVSon {
background: url('http://web.wddcn.com/wddxcx/dzd/images/faxian/icon_zan_pl.png') no-repeat;
background-size: 100%;
width: 325rpx;
height: 70rpx;
line-height: 68rpx;
position: absolute;
left: -335rpx;
top: -8px;
display: flex;
font-size: 28rpx;
color: #fff;
}
.scrtionListItemTxtVBtomIMgVSon view {
display: flex;
width: 50%;
justify-content: center;
}
.scrtionListItemTxtVBtomIMgVSon image {
width: 29rpx;
height: 26rpx;
margin-top: 22rpx;
}
.fixed {
position: fixed;
right: 30rpx;
bottom: 30rpx;
z-index: 100;
}
.fixed image {
width: 100rpx;
height: 100rpx;
}
.scrtionListItemImgV .clear {
display: block;
clear: both;
}
.scrtionListItemTxtVBtomImgView {
background: #f3f3f4;
padding: 10rpx 16rpx 10rpx;
box-sizing: border-box;
}
.scrtionListItemTxtVBtomImgViewHers {
/* height: 130rpx; */
}
.scrtionListItemTxtVBtomImgView image {
width: 50rpx;
height: 50rpx;
border-radius: 50%;
margin-right: 7rpx;
margin-left: 7rpx;
}
.scrtionListItemTxtVBtomTxtView {
background: #f3f3f4;
border-top: 1rpx solid #c5c5c5;
padding: 0 20rpx 20rpx;
}
.scrtionListItemTxtVBtomTxtViewLIetem {
padding: 10rpx 0 0;
font-size: 24rpx;
color: #333;
letter-spacing: 1px;
}
.scrtionListItemTxtVBtomTxtViewLIetemBlue {
color: #3c8cd5;
}
.jpfixed {
background: #fafafa;
display: flex;
padding: 10rpx;
position: fixed;
z-index: 1001;
bottom: 0;
width: 100%;
}
.jpfixed input {
width: 75.5%;
background: #fff;
margin-right: 16rpx;
height: 80rpx;
line-height: 80rpx;
box-sizing: border-box;
padding: 0 20rpx;
}
.jpfixedBtn {
width: 20%;
height: 80rpx;
line-height: 80rpx;
color: #000;
font-size: 32rpx;
text-align: center;
border-radius: 5px;
background: #adb4bd;
}
.static{
position: absolute;
}
.fixedposition{
position: fixed;
top:0px;
}
.shangxueyuan{
width:92%;
padding: 0 30rpx;
}
.shangxueyuan .sxyitem{
margin-top: 50rpx;
width:100%;
}
.shangxueyuan .sxyitem text{
width:92%;
margin-top: 5px;
overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2;
display:-webkit-box;
}
.Topfixed{
position: fixed;
top: 0;
z-index: 111101;
width: 100%;
background: #fff;
}
.scrtionListItemTxtVBtomIMgVSons{
display: flex;
margin-top: 4rpx;
justify-content: space-between;
padding: 10rpx;
}
.scrtionListItemTxtVBtomIMgVSons>view{
width: 33.3%;
position: relative;
text-align: center;
display: flex;
justify-content: center;
}
.scrtionListItemTxtVBtomIMgVs image{
width: 34rpx;
height: 34rpx;
margin-top:4rpx;
margin-right: 10rpx;
}
.scrtionListItemTxtVBtomIMgVs .scrtionListItemTxtVBtomIMgVSons{
background: #F7F7F7;
color: #333;
}
.share{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
border: 0;
opacity: 0;
}
movable-area{
animation: movablearea 2s;
}
@keyframes movablearea
{
0% {opacity: 0;}
80% {opacity: 0;}
100% {opacity: 1;}
}
.tabrItemtwo{
display: flex;
}
.tabrItemtwoImg{
position: relative;
width: 240rpx;
height: 240rpx;margin-right: 20rpx;
}
.tabrItemtwoImgimage{
width: 240rpx;
height: 240rpx;
}
.tabrItemtwoImgZt{
position: absolute;
top: 4px;
left: 0;
display: flex;
color: #fff;
font-size: 22rpx;
background: rgba(0, 0, 0, 0.2);
padding: 8rpx;
border-bottom-right-radius: 2px;
border-top-right-radius: 2px;
}
.tabrItemtwoImgZtyan{
width: 16rpx;
height: 16rpx;
border-radius: 50%;
background: red;
margin-right: 10rpx;
margin-top:6rpx;
}
.ches{
background: #D4D4D4;
}
.tabrItemtwoImgBo{
position: absolute;
bottom: 0;
left: 5%;
width:90%;
display: flex;
justify-content: space-between;
}
.tabrItemtwoBo{
width: 63%;
}
.tabrItemtwoBoTit{
font-size: 30rpx;
color: #333;padding-top: 8rpx;
padding-bottom: 8rpx;
}
.tabrItemtwoBodz{
display: flex;
font-size: 26rpx;
justify-content: space-between;
color: #999;
}
.tabrItemtwoBoImgs{
margin-top: 30rpx;
display: flex;
}
.tabrItemtwoBoImgs image{
width: 70rpx;
height: 70rpx;
border-radius: 5px;
margin-right: 12rpx;
}
.tabrItemtwoBoImgsIv{
width: 70rpx;
height: 70rpx;line-height: 70rpx;
text-align: center;background: #FFF7F7;
border-radius: 5px;font-size: 24rpx;color: #F38D8C;
}
.lefImg{
display: flex;
}
.lefImg image{
width: 8px;
height: 11px;
margin-top: 3px;margin-right: 4px;
}
.tabrItemtwoImgBo{
color: #fff;
padding: 8rpx 0;
font-size: 24rpx;
}
.tabrItemtwoImgBo .lefImg image{
width: 8px;
height: 8px;
margin-top: 4px;margin-right: 4px;
}
.mb_1 {
height: 80rpx;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
list数据
list: [{
"row": "1",
"mi_name": "TM四百",
"mi_userheader": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132",
"dcn_id": "152",
"dcn_mi_id": "1283938",
"dcn_msg": "反反复复发",
"dcn_imgs": "",
"dcn_addtime": "2019-05-31 18:08:15",
"dcn_praise_count": "0",
"dcn_comment_count": "8",
"dcn_province": "",
"dcn_city": "",
"dcn_province_id": "0",
"dcn_city_id": "0",
"dcn_address": "",
"dcn_recommend_gid": "0",
"dcn_show_addr": "0",
"dcn_recommend_glink": "",
"dcn_state": "0",
"dcn_type": "0",
"dcn_lat": "0.00000000",
"dcn_lng": "0.00000000",
"dcn_video_imgurl": "",
"dcn_mid": "957",
"dcn_storename": "",
"dcn_storeid": "0",
"dcn_channel": "0",
"glink": "",
"gtitle": "",
"gprice": "",
"gimg": "",
"isPraise": "0",
"user_lat": "0",
"user_lng": "0",
"praiseData": [],
"commentDataJson": [{
"dcnc_id": "236",
"dcnc_dcn_id": "152",
"dcnc_pid": "0",
"dcnc_mi_id": "1283938",
"dcnc_mi_nickname": "TM四百",
"dcnc_reply_mi_id": "0",
"dcnc_reply_mi_nickname": "",
"dcnc_text": "瓜分掉",
"dcnc_addtime": "2019-05-31 18:09:20",
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132"
}, {
"dcnc_id": "237",
"dcnc_dcn_id": "152",
"dcnc_pid": "236",
"dcnc_mi_id": "1283784",
"dcnc_mi_nickname": "AAA佐道。",
"dcnc_reply_mi_id": "1283938",
"dcnc_reply_mi_nickname": "TM四百",
"dcnc_text": "控制住",
"dcnc_addtime": "2019-06-01 00:29:26",
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/ajNVdqHZLLCcU3ADutsiarROC9GdJpVnGl9rcMv4VeuCyK433unH8nbBDCibu4K0JUFRDLGPqV0a6kYlc85ybfZA/132"
}, {
"dcnc_id": "238",
"dcnc_dcn_id": "152",
"dcnc_pid": "236",
"dcnc_mi_id": "1283784",
"dcnc_mi_nickname": "AAA佐道。",
"dcnc_reply_mi_id": "1283938",
"dcnc_reply_mi_nickname": "TM四百",
"dcnc_text": "土象星座",
"dcnc_addtime": "2019-06-01 00:29:39",
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/ajNVdqHZLLCcU3ADutsiarROC9GdJpVnGl9rcMv4VeuCyK433unH8nbBDCibu4K0JUFRDLGPqV0a6kYlc85ybfZA/132"
}, {
"dcnc_id": "239",
"dcnc_dcn_id": "152",
"dcnc_pid": "236",
"dcnc_mi_id": "1283784",
"dcnc_mi_nickname": "AAA佐道。",
"dcnc_reply_mi_id": "1283938",
"dcnc_reply_mi_nickname": "TM四百",
"dcnc_text": "ssssss",
"dcnc_addtime": "2019-06-01 00:30:11",
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/ajNVdqHZLLCcU3ADutsiarROC9GdJpVnGl9rcMv4VeuCyK433unH8nbBDCibu4K0JUFRDLGPqV0a6kYlc85ybfZA/132"
}, {
"dcnc_id": "247",
"dcnc_dcn_id": "152",
"dcnc_pid": "236",
"dcnc_mi_id": "1283784",
"dcnc_mi_nickname": "AAA佐道。",
"dcnc_reply_mi_id": "1283938",
"dcnc_reply_mi_nickname": "TM四百",
"dcnc_text": "uuuuu",
"dcnc_addtime": "2019-06-01 00:43:01",
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/ajNVdqHZLLCcU3ADutsiarROC9GdJpVnGl9rcMv4VeuCyK433unH8nbBDCibu4K0JUFRDLGPqV0a6kYlc85ybfZA/132"
}, {
"dcnc_id": "248",
"dcnc_dcn_id": "152",
"dcnc_pid": "239",
"dcnc_mi_id": "1283913",
"dcnc_mi_nickname": "灯-灯-灯灯",
"dcnc_reply_mi_id": "1283784",
"dcnc_reply_mi_nickname": "AAA佐道。",
"dcnc_text": "来看看",
"dcnc_addtime": "2019-06-03 13:30:44",
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132"
}, {
"dcnc_id": "249",
"dcnc_dcn_id": "152",
"dcnc_pid": "239",
"dcnc_mi_id": "1283913",
"dcnc_mi_nickname": "灯-灯-灯灯",
"dcnc_reply_mi_id": "1283784",
"dcnc_reply_mi_nickname": "AAA佐道。",
"dcnc_text": "痛苦",
"dcnc_addtime": "2019-06-03 13:32:18",
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132"
}, {
"dcnc_id": "250",
"dcnc_dcn_id": "152",
"dcnc_pid": "249",
"dcnc_mi_id": "1283777",
"dcnc_mi_nickname": "~桂 林~",
"dcnc_reply_mi_id": "1283913",
"dcnc_reply_mi_nickname": "灯-灯-灯灯",
"dcnc_text": "22",
"dcnc_addtime": "2019-06-05 00:07:53",
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83er07iaHv6icae0O4jxrKUcH50xUbkthTnULlEGwCF8BWXqQJQDh6ibbQncf6mxNQxEgnShU4zkmp5taw/132"
}],
"date": "2019-05-31 18:08",
"far": "",
"showmore": false,
"pLpre": 10
}, {
"row": "2",
"mi_name": "TM四百",
"mi_userheader": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132",
"dcn_id": "151",
"dcn_mi_id": "1283938",
"dcn_msg": "吞吞吐吐",
"dcn_imgs": "",
"dcn_addtime": "2019-05-31 18:07:33",
"dcn_praise_count": "0",
"dcn_comment_count": "0",
"dcn_province": "",
"dcn_city": "",
"dcn_province_id": "0",
"dcn_city_id": "0",
"dcn_address": "",
"dcn_recommend_gid": "0",
"dcn_show_addr": "0",
"dcn_recommend_glink": "",
"dcn_state": "0",
"dcn_type": "0",
"dcn_lat": "0.00000000",
"dcn_lng": "0.00000000",
"dcn_video_imgurl": "",
"dcn_mid": "957",
"dcn_storename": "",
"dcn_storeid": "0",
"dcn_channel": "0",
"glink": "",
"gtitle": "",
"gprice": "",
"gimg": "",
"isPraise": "0",
"user_lat": "0",
"user_lng": "0",
"praiseData": [],
"commentDataJson": [],
"date": "2019-05-31 18:07",
"far": "",
"showmore": false,
"pLpre": 10
}, {
"row": "3",
"mi_name": "TM四百",
"mi_userheader": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132",
"dcn_id": "150",
"dcn_mi_id": "1283938",
"dcn_msg": "摇一摇",
"dcn_imgs": "",
"dcn_addtime": "2019-05-31 18:07:00",
"dcn_praise_count": "0",
"dcn_comment_count": "0",
"dcn_province": "",
"dcn_city": "",
"dcn_province_id": "0",
"dcn_city_id": "0",
"dcn_address": "",
"dcn_recommend_gid": "0",
"dcn_show_addr": "0",
"dcn_recommend_glink": "",
"dcn_state": "0",
"dcn_type": "0",
"dcn_lat": "0.00000000",
"dcn_lng": "0.00000000",
"dcn_video_imgurl": "",
"dcn_mid": "957",
"dcn_storename": "",
"dcn_storeid": "0",
"dcn_channel": "0",
"glink": "",
"gtitle": "",
"gprice": "",
"gimg": "",
"isPraise": "0",
"user_lat": "0",
"user_lng": "0",
"praiseData": [],
"commentDataJson": [],
"date": "2019-05-31 18:07",
"far": "",
"showmore": false,
"pLpre": 10
}, {
"row": "4",
"mi_name": "",
"mi_userheader": "",
"dcn_id": "149",
"dcn_mi_id": "29335822",
"dcn_msg": "1111111",
"dcn_imgs": "",
"dcn_addtime": "2019-05-31 17:42:02",
"dcn_praise_count": "0",
"dcn_comment_count": "0",
"dcn_province": "",
"dcn_city": "",
"dcn_province_id": "0",
"dcn_city_id": "0",
"dcn_address": "",
"dcn_recommend_gid": "0",
"dcn_show_addr": "0",
"dcn_recommend_glink": "",
"dcn_state": "0",
"dcn_type": "0",
"dcn_lat": "0.00000000",
"dcn_lng": "0.00000000",
"dcn_video_imgurl": "",
"dcn_mid": "957",
"dcn_storename": "",
"dcn_storeid": "0",
"dcn_channel": "0",
"glink": "",
"gtitle": "",
"gprice": "",
"gimg": "",
"isPraise": "0",
"user_lat": "0",
"user_lng": "0",
"praiseData": [],
"commentDataJson": [],
"date": "2019-05-31 17:42",
"far": "",
"showmore": false,
"pLpre": 10
}, {
"row": "5",
"mi_name": "灯-灯-灯灯",
"mi_userheader": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132",
"dcn_id": "148",
"dcn_mi_id": "1283913",
"dcn_msg": "亏丢",
"dcn_imgs": "",
"dcn_addtime": "2019-05-31 17:39:38",
"dcn_praise_count": "0",
"dcn_comment_count": "0",
"dcn_province": "",
"dcn_city": "",
"dcn_province_id": "0",
"dcn_city_id": "0",
"dcn_address": "",
"dcn_recommend_gid": "0",
"dcn_show_addr": "0",
"dcn_recommend_glink": "",
"dcn_state": "0",
"dcn_type": "0",
"dcn_lat": "0.00000000",
"dcn_lng": "0.00000000",
"dcn_video_imgurl": "",
"dcn_mid": "957",
"dcn_storename": "",
"dcn_storeid": "0",
"dcn_channel": "0",
"glink": "",
"gtitle": "",
"gprice": "",
"gimg": "",
"isPraise": "0",
"user_lat": "0",
"user_lng": "0",
"praiseData": [],
"commentDataJson": [],
"date": "2019-05-31 17:39",
"far": "",
"showmore": false,
"pLpre": 10
}, {
"row": "6",
"mi_name": "灯-灯-灯灯",
"mi_userheader": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132",
"dcn_id": "147",
"dcn_mi_id": "1283913",
"dcn_msg": "很久",
"dcn_imgs": "",
"dcn_addtime": "2019-05-31 17:39:04",
"dcn_praise_count": "0",
"dcn_comment_count": "0",
"dcn_province": "",
"dcn_city": "",
"dcn_province_id": "0",
"dcn_city_id": "0",
"dcn_address": "",
"dcn_recommend_gid": "0",
"dcn_show_addr": "0",
"dcn_recommend_glink": "",
"dcn_state": "0",
"dcn_type": "0",
"dcn_lat": "24.72529800",
"dcn_lng": "118.60746800",
"dcn_video_imgurl": "",
"dcn_mid": "957",
"dcn_storename": "微商二",
"dcn_storeid": "70985",
"dcn_channel": "0",
"glink": "",
"gtitle": "",
"gprice": "",
"gimg": "",
"isPraise": "0",
"user_lat": "0",
"user_lng": "0",
"praiseData": [],
"commentDataJson": [],
"date": "2019-05-31 17:39",
"far": "",
"showmore": false,
"pLpre": 10
}, {
"row": "7",
"mi_name": "灯-灯-灯灯",
"mi_userheader": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132",
"dcn_id": "146",
"dcn_mi_id": "1283913",
"dcn_msg": "扣款",
"dcn_imgs":[],
// ["http://file.wddcn.com/wddwechatshop/weixinapp/2019/5/62483bfe8f3f4a409a6c5d272cf91a368.jpg", "http://file.wddcn.com/wddwechatshop/weixinapp/2019/5/054f307d72cf46fe81bcea72da0b6a385.jpg", "http://file.wddcn.com/wddwechatshop/weixinapp/2019/5/db02290f7a484454a31f06c2472be1d63.jpg", "http://file.wddcn.com/wddwechatshop/weixinapp/2019/5/749bc7b061e84851a176ec6bdb726da34.jpg", "http://file.wddcn.com/wddwechatshop/weixinapp/2019/5/799331b1203f471d9a65d810e1f3d4f64.jpg", "http://file.wddcn.com/wddwechatshop/weixinapp/2019/5/ba4c07e68e5c490c853daf39c345c6618.jpg", "http://file.wddcn.com/wddwechatshop/weixinapp/2019/5/089225e297e84e0b846c300e3fff39822.jpg", "http://file.wddcn.com/wddwechatshop/weixinapp/2019/5/42a6fda145f244b9bd6609f4b5ba56130.jpg", "http://file.wddcn.com/wddwechatshop/weixinapp/2019/5/5e76e310fc5d49e8a52528ee1532cd324.jpg"],
"dcn_addtime": "2019-05-31 17:23:31",
"dcn_praise_count": "1",
"dcn_comment_count": "5",
"dcn_province": "",
"dcn_city": "",
"dcn_province_id": "0",
"dcn_city_id": "0",
"dcn_address": "",
"dcn_recommend_gid": "0",
"dcn_show_addr": "0",
"dcn_recommend_glink": "",
"dcn_state": "0",
"dcn_type": "1",
"dcn_lat": "24.72529800",
"dcn_lng": "118.60746800",
"dcn_video_imgurl": "",
"dcn_mid": "957",
"dcn_storename": "微商二",
"dcn_storeid": "70985",
"dcn_channel": "0",
"glink": "",
"gtitle": "",
"gprice": "",
"gimg": "",
"isPraise": "0",
"user_lat": "0",
"user_lng": "0",
"praiseData": [{
"dcnp_mi_id": "1283913",
"dcnp_mi_nickname": "灯-灯-灯灯",
"dcnp_dcn_id": "146",
"dcnp_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132"
}],
"commentDataJson": [{
"dcnc_id": "230",
"dcnc_dcn_id": "146",
"dcnc_pid": "0",
"dcnc_mi_id": "1283913",
"dcnc_mi_nickname": "灯-灯-灯灯",
"dcnc_reply_mi_id": "0",
"dcnc_reply_mi_nickname": "",
"dcnc_text": "哦提后",
"dcnc_addtime": "2019-05-31 17:25:05",
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132"
}, {
"dcnc_id": "232",
"dcnc_dcn_id": "146",
"dcnc_pid": "230",
"dcnc_mi_id": "1276232",
"dcnc_mi_nickname": "Allen",
"dcnc_reply_mi_id": "1283913",
"dcnc_reply_mi_nickname": "灯-灯-灯灯",
"dcnc_text": "合格后",
"dcnc_addtime": "2019-05-31 17:28:39",
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": ""
}, {
"dcnc_id": "233",
"dcnc_dcn_id": "146",
"dcnc_pid": "232",
"dcnc_mi_id": "1283913",
"dcnc_mi_nickname": "灯-灯-灯灯",
"dcnc_reply_mi_id": "1276232",
"dcnc_reply_mi_nickname": "Allen",
"dcnc_text": "可吃",
"dcnc_addtime": "2019-05-31 17:34:18",
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132"
}, {
"dcnc_id": "234",
"dcnc_dcn_id": "146",
"dcnc_pid": "0",
"dcnc_mi_id": "1283913",
"dcnc_mi_nickname": "灯-灯-灯灯",
"dcnc_reply_mi_id": "0",
"dcnc_reply_mi_nickname": "",
"dcnc_text": "咯出来",
"dcnc_addtime": "2019-05-31 17:34:29",
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132"
}, {
"dcnc_id": "235",
"dcnc_dcn_id": "146",
"dcnc_pid": "0",
"dcnc_mi_id": "1283913",
"dcnc_mi_nickname": "灯-灯-灯灯",
"dcnc_reply_mi_id": "0",
"dcnc_reply_mi_nickname": "",
"dcnc_text": "博时",
"dcnc_addtime": "2019-05-31 17:38:55",
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132"
}],
"date": "2019-05-31 17:23",
"far": "",
"showmore": false,
"pLpre": 10
}, {
"row": "8",
"mi_name": "黑虎",
"mi_userheader": "https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIrpnDbfoibPIx4YbzfU1GkozRibgdTHAOLE8TabbhFGYicVaA3KC3uA28v11gYbicl6BBKFcZ3d63ndA/132",
"dcn_id": "144",
"dcn_mi_id": "1277600",
"dcn_msg": "this is a moni",
"dcn_imgs": ["http://file.wddcn.com/wddwechatshop/weixinapp/2019/5/41866b5efb0542bf911d35e7a13a69255.jpg", "http://file.wddcn.com/wddwechatshop/weixinapp/2019/5/222960f822094a4e9c36620cbe0081d48.jpg"],
"dcn_addtime": "2019-05-30 14:08:32",
"dcn_praise_count": "2",
"dcn_comment_count": "0",
"dcn_province": "",
"dcn_city": "",
"dcn_province_id": "0",
"dcn_city_id": "0",
"dcn_address": "",
"dcn_recommend_gid": "0",
"dcn_show_addr": "0",
"dcn_recommend_glink": "",
"dcn_state": "0",
"dcn_type": "1",
"dcn_lat": "0.00000000",
"dcn_lng": "0.00000000",
"dcn_video_imgurl": "",
"dcn_mid": "957",
"dcn_storename": "",
"dcn_storeid": "0",
"dcn_channel": "0",
"glink": "",
"gtitle": "",
"gprice": "",
"gimg": "",
"isPraise": "0",
"user_lat": "0",
"user_lng": "0",
"praiseData": [{
"dcnp_mi_id": "1277600",
"dcnp_mi_nickname": "黑虎",
"dcnp_dcn_id": "144",
"dcnp_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIrpnDbfoibPIx4YbzfU1GkozRibgdTHAOLE8TabbhFGYicVaA3KC3uA28v11gYbicl6BBKFcZ3d63ndA/132"
}, {
"dcnp_mi_id": "1283913",
"dcnp_mi_nickname": "灯-灯-灯灯",
"dcnp_dcn_id": "144",
"dcnp_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaELabChK5ldZrWWhLlzcYfGWgMSFUib8bxss47U0zU9yAhaPeIX7MLyVZ871jSNJ0X63pQscI88B3ew/132"
}],
"commentDataJson": [],
"date": "2019-05-30 14:08",
"far": "",
"showmore": false,
"pLpre": 10
}, {
"row": "9",
"mi_name": "黑虎2",
"mi_userheader": "https://wx.qlogo.cn/mmopen/vi_32/ajNVdqHZLLDb3Ncf6m5tLeWIqxZj5SYGL0Cjwago7IuDrH4LnZ03ollJI6MBvMmt6cVmibk08myiaaMb4o7nQmJA/132",
"dcn_id": "137",
"dcn_mi_id": "1276072",
"dcn_msg": "啦咯啦咯啦咯啦咯啦咯啦",
"dcn_imgs": ["http://file.wddcn.com/wddwechatshop/weixinapp/2019/3/3135733034944157ae9dfb2e79db46fc3.jpg", "http://file.wddcn.com/wddwechatshop/weixinapp/2019/3/ec31943dd7214beba4785c2e7f6579087.jpg", "http://file.wddcn.com/wddwechatshop/weixinapp/2019/3/b9db3f5f7be742b784376d5f89d2c62e3.jpg", "http://file.wddcn.com/wddwechatshop/weixinapp/2019/3/4233d2bd4f8242799b1944bee33a64cb7.jpg"],
"dcn_addtime": "2019-03-27 16:06:08",
"dcn_praise_count": "1",
"dcn_comment_count": "1",
"dcn_province": "",
"dcn_city": "",
"dcn_province_id": "0",
"dcn_city_id": "0",
"dcn_address": "",
"dcn_recommend_gid": "",
"dcn_show_addr": "0",
"dcn_recommend_glink": "",
"dcn_state": "0",
"dcn_type": "1",
"dcn_lat": "",
"dcn_lng": "",
"dcn_video_imgurl": "",
"dcn_mid": "957",
"dcn_storename": "黑虎开发222",
"dcn_storeid": "70637",
"dcn_channel": "2",
"glink": "",
"gtitle": "",
"gprice": "",
"gimg": "",
"isPraise": "0",
"user_lat": "0",
"user_lng": "0",
"praiseData": [{
"dcnp_mi_id": "1277600",
"dcnp_mi_nickname": "黑虎",
"dcnp_dcn_id": "137",
"dcnp_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTIrpnDbfoibPIx4YbzfU1GkozRibgdTHAOLE8TabbhFGYicVaA3KC3uA28v11gYbicl6BBKFcZ3d63ndA/132"
}],
"commentDataJson": [{
"dcnc_id": "226",
"dcnc_dcn_id": "137",
"dcnc_pid": "0",
"dcnc_mi_id": "1283784",
"dcnc_mi_nickname": "AAA佐道。",
"dcnc_reply_mi_id": "0",
"dcnc_reply_mi_nickname": "",
"dcnc_text": "仔仔细细我",
"dcnc_addtime": "2019-05-28 22:04:14",
"dcnc_be_repli_mi_id": "",
"dcnc_channel": "0",
"dcnc_mi_headerimg": "https://wx.qlogo.cn/mmopen/vi_32/ajNVdqHZLLCcU3ADutsiarROC9GdJpVnGl9rcMv4VeuCyK433unH8nbBDCibu4K0JUFRDLGPqV0a6kYlc85ybfZA/132"
}],
"date": "2019-03-27 16:06",
"far": "",
"showmore": false,
"pLpre": 10
}, {
"row": "10",
"mi_name": "黑虎2",
"mi_userheader": "https://wx.qlogo.cn/mmopen/vi_32/ajNVdqHZLLDb3Ncf6m5tLeWIqxZj5SYGL0Cjwago7IuDrH4LnZ03ollJI6MBvMmt6cVmibk08myiaaMb4o7nQmJA/132",
"dcn_id": "76",
"dcn_mi_id": "1276072",
"dcn_msg": "",
"dcn_imgs": ["http://file.wddcn.com/wddwechatshop/weixinapp/2019/1/933a2f498a034448bb930e30022e15745.jpg", "http://file.wddcn.com/wddwechatshop/weixinapp/2019/1/1ad514db76ff458784f3155623b206860.jpg"],
"dcn_addtime": "2019-01-30 17:47:29",
"dcn_praise_count": "0",
"dcn_comment_count": "0",
"dcn_province": "",
"dcn_city": "",
"dcn_province_id": "0",
"dcn_city_id": "0",
"dcn_address": "",
"dcn_recommend_gid": "0",
"dcn_show_addr": "0",
"dcn_recommend_glink": "",
"dcn_state": "0",
"dcn_type": "1",
"dcn_lat": "24.74489400",
"dcn_lng": "118.69248100",
"dcn_video_imgurl": "",
"dcn_mid": "957",
"dcn_storename": "cmy门店01001",
"dcn_storeid": "46080",
"dcn_channel": "0",
"glink": "",
"gtitle": "",
"gprice": "",
"gimg": "",
"isPraise": "0",
"user_lat": "0",
"user_lng": "0",
"praiseData": [],
"commentDataJson": [],
"date": "2019-01-30 17:47",
"far": "",
"showmore": false,
"pLpre": 10
}]