17 lines
289 B
PHP
Executable File
17 lines
289 B
PHP
Executable File
<?php
|
|
namespace app\model;
|
|
|
|
use think\Model;
|
|
|
|
class Form extends Model {
|
|
|
|
public $status = array(
|
|
1 => '开启',
|
|
0 => '关闭'
|
|
);
|
|
|
|
|
|
public function getStatusTextAttr($value, $data){
|
|
return isset($this->status[$data['status']]) ? $this->status[$data['status']] : '未知';
|
|
}
|
|
} |