摘要: 动态节点事件 $("#addPopuForm").on("click", '.del-card', function () { $(this).parent().remove(); }); 事件 focus 获取焦点事件 blur 失去焦点事件 hover 鼠标悬停事件 mouseleave 鼠标移 阅读全文
posted @ 2020-07-22 14:49 王的孤傲 阅读(970) 评论(1) 推荐(0) 编辑
摘要: { field: 'title', title: __('标题'), formatter: function(value){ if(value.length > 20){ return value.toString().substr(0, 20) + '...'; }else{ return val 阅读全文
posted @ 2020-07-16 09:26 王的孤傲 阅读(870) 评论(0) 推荐(0) 编辑
摘要: commonSearch: false, visible: false, showToggle: false, showColumns: false, search:false, showExport: false, 阅读全文
posted @ 2020-07-16 09:12 王的孤傲 阅读(1811) 评论(0) 推荐(1) 编辑
摘要: 上传方法内设置 Config::set('default_return_type', 'json'); 阅读全文
posted @ 2020-07-15 15:17 王的孤傲 阅读(1367) 评论(0) 推荐(0) 编辑
摘要: {field: 'url', title: __('Url'), formatter: Table.api.formatter.url}, 阅读全文
posted @ 2020-07-03 16:05 王的孤傲 阅读(1218) 评论(0) 推荐(0) 编辑
摘要: {field: 'createtime', title: __('Createtime'), sortable:true, operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime}, 如上加 阅读全文
posted @ 2020-07-03 16:00 王的孤傲 阅读(2042) 评论(0) 推荐(0) 编辑
摘要: {field: 'id', title: __('网站地址'), formatter: function(value, row, index){ return '<span data-url="//' + row["ip"] + ':' + row["port"] + '" ' + 'class=" 阅读全文
posted @ 2020-07-03 15:57 王的孤傲 阅读(5021) 评论(0) 推荐(0) 编辑
摘要: 在js文件中修改字段 {field: 'id', title: __('序号'), formatter: function(value, row, index){ return ++index; }}, 阅读全文
posted @ 2020-07-03 15:15 王的孤傲 阅读(1036) 评论(0) 推荐(0) 编辑
摘要: 首先在方法开始处开启关联查询 $this->relationSearch = true; //开启关联查询 然后在模型里面添加方法 public function adminInfo(){ return $this->belongsTo('Admin', 'uid', 'id', [], 'LEFT 阅读全文
posted @ 2020-07-03 15:12 王的孤傲 阅读(2613) 评论(0) 推荐(0) 编辑
摘要: @ini_set("memory_limit",'-1'); 阅读全文
posted @ 2020-07-02 15:03 王的孤傲 阅读(998) 评论(0) 推荐(0) 编辑