上一页 1 2 3 4 5 6 7 8 ··· 69 下一页
摘要: 如果mysql服务因为某些原因意外停止的话,可以通过宝塔面板加一个定时任务,让服务自动恢复,以免影响服务正常运行。 脚本代码: ps=`ps -efl|grep mysqld|grep -v $0|grep -v grep|wc -l` if [ $ps -eq 0 ]; then echo -e 阅读全文
posted @ 2024-07-20 09:26 温柔的风 阅读(119) 评论(0) 推荐(0)
摘要: php实现amr转成mp3的方法:1、在服务器安装ffmpeg;2、使用“ffmpeg -i”指令来转换amr为mp3格式;3、在网页端使用html5的audio标签来播放mp3文件即可。 思路 服务器安装ffmpeg 使用ffmpeg -i 指令来转换amr为mp3格式(这个到时候写在PHP代码中 阅读全文
posted @ 2024-06-23 20:14 温柔的风 阅读(167) 评论(0) 推荐(0)
摘要: 源安装第一种方式:首先需要安装yum源: 这个源安装的ffmpeg版本是3.4 yum install epel-release yum install -y https://mirrors.ustc.edu.cn/rpmfusion/free/el/rpmfusion-free-release-7 阅读全文
posted @ 2024-06-23 19:45 温柔的风 阅读(1634) 评论(0) 推荐(0)
摘要: $(".layui-tab-title li").click(function(){ var my_clue_detail_tab_index = $(this).index(); sessionStorage.setItem("my_clue_detail_tab_index",my_clue_d 阅读全文
posted @ 2024-05-13 11:44 温柔的风 阅读(86) 评论(0) 推荐(0)
摘要: 使用php类库PHP QRCode 地址:http://phpqrcode.sourceforge.net/ 下载:http://sourceforge.net/projects/phpqrcode/ 下载官网提供的类库后,只需要使用phpqrcode.php就可以生成二维码了,当然您的PHP环境必 阅读全文
posted @ 2024-01-16 10:58 温柔的风 阅读(75) 评论(0) 推荐(0)
摘要: 比如在操作完某个事件的时候需要刷新一下页面表格,原生的js刷新效果感觉不太好,尝试静默刷新,比较ok。 上代码 parent.$("#my_customer").bootstrapTable('refresh', { silent: true //静默刷新 }); 补充: setInterval(( 阅读全文
posted @ 2024-01-06 22:16 温柔的风 阅读(423) 评论(0) 推荐(0)
摘要: max-width:160px;white-space:nowrap;overflow: hidden; text-overflow: ellipsis;-o-text-overflow: ellipsis 阅读全文
posted @ 2024-01-06 20:25 温柔的风 阅读(30) 评论(0) 推荐(0)
摘要: js报错:Uncaught SyntaxError: Unexpected identifier 'Object' (at my_customer_index?addtabs=1:1:28) 开发遇到的是用onmouseover传递对象参数时(easyui传递一行数据时),会报Sncaught Sy 阅读全文
posted @ 2024-01-06 14:55 温柔的风 阅读(1811) 评论(0) 推荐(1)
摘要: if (Config.auth_is_super_admin false){ //如果不是超级管理员 table.bootstrapTable('hideColumn', 'organise_name'); //隐藏其中的 “organise_name” 列 $("li[role='menuitem 阅读全文
posted @ 2024-01-01 19:50 温柔的风 阅读(927) 评论(0) 推荐(0)
摘要: 一、隐藏修改,删除按钮(隐藏所有行) 隐藏前 修改代码 var Controller = { index: function () { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'department/index/index', add_u 阅读全文
posted @ 2023-12-20 08:30 温柔的风 阅读(940) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 69 下一页