<?php namespace App\Admin\Extensions\Show; use Dcat\Admin\Admin; use Dcat\Admin\Show\AbstractField; class Textarea extends AbstractField { // 这个属性设置为false则不会转义HTML代码 public $escape = false; public $border = false; public function render($arg = '') { Admin::script( <<<JS $('.custom-textarea').parent().parent().css('margin-left','-220px'); JS ); // 返回任意可被渲染的内容
return "<div class='box box-solid box-default no-margin box-show custom-textarea'><div class='box-body' style='min-height: 120px;'>$this->value</div></div>";
} }