信呼OA版本v2.3.8

This commit is contained in:
雨中磐石
2022-08-14 16:47:40 +08:00
parent 4640677d27
commit e3fcd913e3
1405 changed files with 133635 additions and 73 deletions

View File

@@ -0,0 +1,28 @@
<?php
class agent_jiankongClassModel extends agentModel
{
public function initModel()
{
$this->settable('flow_bill');
}
protected function agentdata($uid, $lx)
{
$rows = m('flowbill')->getrecord($uid, $lx, $this->page, $this->limit);
$modearr= array();
if($this->loadci==1){
$modeids = '0';
$rows1 = m('view')->getjilu($uid);
foreach($rows1 as $k1=>$rs1){
$modeids.=','.$rs1['modeid'].'';
}
$modearr = m('mode')->getmodemyarr(0,'and `id` in('.$modeids.')');
}
return array(
'rows' =>$rows,
'modearr' =>$modearr,
);
}
}