mui.plusReady(function () {
var userId="";
var shopName="";
// 获取数据
JZL.ajax(qlgUrl('app/users/familyInvestmentList'),{},function (data ) {
console.log(data);
var html ="";
if (1 == data.status){
var data = data.data
$.each(data,function () {
html+='
'+this.companyName+'
合作人'+this.count +'人
'+formatDate(new Date(this.createTime*1000))+'创建
'
})
$('.con').append(html)
}
})
$("body").on("tap",".con_",function () {
userId=$(this).attr("data-id")
shopName=$(this).attr("data-shopName")
JZL.openWindow('investdetail.html', 'investdetail.html',{userId : userId,shopName:shopName})
})
})