摘要: 在进行数据导出的时候,少量的数据可以使用phpexcel,但大量的数据用phpexcel就很消耗资源了。 在使用fastadmin做数据导出的时候,相关的代码请参考:https://blog.csdn.net/bingyu709/article/details/141949034 我自己这边因为数据 阅读全文
posted @ 2024-11-19 12:10 温柔的风 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 一、解压安装Kibana 同样的解压kibana-8.14.3-darwin-aarch64.tar.gz,在终端中进入Kibana解压路径/bin ,执行./kibana 二、浏览器访问。http://localhost:5601/?code=495918 然后还需要输入一下elastic的账号密 阅读全文
posted @ 2024-11-06 22:54 温柔的风 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 一、下载安装包(Kibana 的版本需要和 Elasticsearch 的版本一致。这是官方支持的配置。) 地址分别为: ElasticSearch:https://www.elastic.co/cn/downloads/elasticsearch kibana:https://www.elasti 阅读全文
posted @ 2024-11-06 22:33 温柔的风 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 一、列头对齐 {field: 'title', title: __('Title'), operate: 'LIKE',align:'left'}, 二、内容对齐 {field: 'title', title: __('Title'), operate: 'LIKE', cellStyle:func 阅读全文
posted @ 2024-10-06 22:50 温柔的风 阅读(18) 评论(0) 推荐(0) 编辑
摘要: <script> var wsUrl = "{$ws_url}"; var ws = null; // WebSocket 对象 var heartbeatTimer = null; // 心跳定时器 var isReconnect = true; // 是否自动重连 function create 阅读全文
posted @ 2024-10-05 22:00 温柔的风 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 一、安装 直接上命令 composer require topthink/think-worker 1.0.1 //因为fastadmin的tp版本是5,所以这里1.0.1 composer update --with-all-dependencies 找到根目录的composer.json修改制定 阅读全文
posted @ 2024-10-05 14:27 温柔的风 阅读(72) 评论(0) 推荐(0) 编辑
摘要: Form.api.bindevent($("form[role=form]"), function(data, ret){ //这里是表单提交处理成功后的回调函数,接收来自php的返回数据 //Fast.api.close(data); 关闭弹窗 }, function(data, ret){ // 阅读全文
posted @ 2024-09-27 21:24 温柔的风 阅读(270) 评论(0) 推荐(0) 编辑
摘要: //列表页click事件 $(document).on('click','#add_customer',function(){ var url = "ap/controller/add"; var data = { area:["1050px","588px"], resize:false, sha 阅读全文
posted @ 2024-09-10 11:25 温柔的风 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 父窗口中操作iframe:window.frames["iframeChild"].document //假如iframe的id为iframeChild 在子窗口中操作父窗口:window.parent.document 那么,用如果想用jquery的方法,我们怎么用jquery来获取iframe呢 阅读全文
posted @ 2024-09-07 17:45 温柔的风 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 一、layier.confirm用法 layer.confirm('纳尼?', { title: '<span class="confirm-title-style">操作提示</span>', icon: 0, closeBtn: 2, shade: [0.3, '#000'], shadeClo 阅读全文
posted @ 2024-09-05 10:40 温柔的风 阅读(36) 评论(0) 推荐(0) 编辑