codecamp

destoon_mall_stat-评分统计

destoon_mall_stat-评分统计


字段名 注释 备注 类型
mallid 商品ID
seller 卖家
scomment 卖家评论
s1 卖家差评
s2 卖家中评
s3 卖家好评
buyer 买家
bcomment 买家评论
b1 买家差评
b2 买家中评
b3 买家好评
destoon_mall_order-商城定单
destoon_member-会员
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

二次开发指南

数据字典

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }