[外掛擴充套件]外掛開發過程中 模型欄位定義

發表於2020-04-04
public $_fields = array(
        'id' => array(
            'name' => 'id', //欄位名
            'title' => 'ID', //顯示標題
            'type' => 'num', //欄位型別
            'remark' => '', // 備註,相當於配置裡的tip
            'is_show' => 3, // 1-始終顯示 2-新增顯示 3-編輯顯示 0-不顯示
            'value' => 0, //預設值
        ),
可用欄位型別
num,string,textarea,datetime,bool,select,radio,checkbox,editor,picture,file
回覆

相關文章