摘要:
{field: 'url', title: __('Url'), formatter: Table.api.formatter.url}, 阅读全文
摘要:
{field: 'createtime', title: __('Createtime'), sortable:true, operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime}, 如上加 阅读全文
摘要:
{field: 'id', title: __('网站地址'), formatter: function(value, row, index){ return '<span data-url="//' + row["ip"] + ':' + row["port"] + '" ' + 'class=" 阅读全文
摘要:
在js文件中修改字段 {field: 'id', title: __('序号'), formatter: function(value, row, index){ return ++index; }}, 阅读全文
摘要:
首先在方法开始处开启关联查询 $this->relationSearch = true; //开启关联查询 然后在模型里面添加方法 public function adminInfo(){ return $this->belongsTo('Admin', 'uid', 'id', [], 'LEFT 阅读全文