1
0

yqhealthyModel.php 408 B

12345678910111213141516
  1. <?php
  2. //健康报备
  3. class flow_yqhealthyClassModel extends flowModel
  4. {
  5. public function flowrsreplace($rs, $lx=0)
  6. {
  7. $rs['stateval']=$rs['state'];
  8. if($rs['state']=='0')$rs['state']='<font color="green">绿码</font>';
  9. if($rs['state']=='1')$rs['state']='<font color="#ff6600">黄码</font>';
  10. if($rs['state']=='2')$rs['state']='<font color="red">红码</font>';
  11. return $rs;
  12. }
  13. }
粤ICP备19079148号