提交 f5426b74 authored 作者: weiyn's avatar weiyn

更改固定资产页面状态颜色

上级 fe364cab
<?php
class flow_assetmnewClassModel extends flowModel
{
public function initModel()
{
$this->statearr = c('array')->strtoarray('blue|闲置,#ff6600|在用,red|维修,gray|报废,gray|丢失');
}
public function flowrsreplace($rs)
{
if (isset($rs['typeid'])) $rs['typeid'] = $this->db->getmou('[Q]option', 'name', "`id`='" . $rs['typeid'] . "'");
if (isset($this->statearr[$rs['state']])) {
$b = $this->statearr[$rs['state']];
$rs['state'] = '<font color="' . $b[0] . '">' . $b[1] . '</font>';
}
return $rs;
}
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论