//查看班组详情,工程查询页面 function teamCountViewByPro(proId,subId) { localStorage.setItem("proId", proId); localStorage.setItem("subId", subId); layer.open({ title: ['班组', 'color:#3B70A1;background-color:#E8ECEB;font-size:20px'], type: 2, content: 'TeamByProList.html', area: ['95%', '95%'], maxmin: false }); } //查看人员详情,工程查询页面 function personCountViewByPro(proId,subId,teamId) { localStorage.setItem("proId", proId); localStorage.setItem("subId", subId); localStorage.setItem("teamId", teamId); layer.open({ title: ['人员', 'color:#3B70A1;background-color:#E8ECEB;font-size:20px'], type: 2, content: 'PersonByProList.html', area: ['95%', '95%'], maxmin: false }); } //查看班组详情,分包页面 function teamCountViewBySub(proId,subId) { localStorage.setItem("proId", proId); localStorage.setItem("subId", subId); layer.open({ title: ['班组', 'color:#3B70A1;background-color:#E8ECEB;font-size:20px'], type: 2, content: 'TeamBySubList.html', area: ['95%', '95%'], maxmin: false }); } //查看人员详,分包页面 function personCountViewBySub(proId,subId,teamId) { localStorage.setItem("proId", proId); localStorage.setItem("subId", subId); localStorage.setItem("teamId", teamId); layer.open({ title: ['人员', 'color:#3B70A1;background-color:#E8ECEB;font-size:20px'], type: 2, content: 'PersonBySubList.html', area: ['95%', '95%'], maxmin: false }); }