add rule sort
This commit is contained in:
parent
7775095b0f
commit
c58a20b53c
@ -1,8 +1,8 @@
|
|||||||
# TaoLer
|
# TaoLer
|
||||||
|
|
||||||
版本:TaoLer 1.0.0
|
版本:TaoLer 1.0.0
|
||||||
日期:2020.1.1
|
日期:2020.1.1
|
||||||
官网:http://www.aieok.com
|
官网:http://www.aieok.com
|
||||||
|
|
||||||
#### 项目地址
|
#### 项目地址
|
||||||
|
|
||||||
@ -34,7 +34,7 @@ github https://www.github.com/taoser/TaoLer
|
|||||||
|
|
||||||
1. git下载:https://gitee.com/toogee/TaoLer
|
1. git下载:https://gitee.com/toogee/TaoLer
|
||||||
2. 官网下载:http://www.aieok.com
|
2. 官网下载:http://www.aieok.com
|
||||||
3. 解压后,项目绑定域名为public目录对外访问,首次安装,访问域名http://www.youdomain.com可自动跳转到/install.php/index进行引导安装,重新安装需删除根目录下install.lock。
|
3. 解压后,项目绑定域名为public目录对外访问,首次安装,访问域名http://www.youdomain.com可自动跳转到/install/index进行引导安装,重新安装需删除根目录下install.lock。
|
||||||
4. 安装前需要先创建mysql数据库(准备:数据库连接地址,数据库用户名,数据库密码,数据库端口,建好在数据库名)
|
4. 安装前需要先创建mysql数据库(准备:数据库连接地址,数据库用户名,数据库密码,数据库端口,建好在数据库名)
|
||||||
5. 请牢记安装设置的管理员用户名和密码,默认admin/123456。前后台的管理员密码一致。前后端管理员账户是独立的,前端主要对文章内容的审查管理等操作。
|
5. 请牢记安装设置的管理员用户名和密码,默认admin/123456。前后台的管理员密码一致。前后端管理员账户是独立的,前端主要对文章内容的审查管理等操作。
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<table id="LAY-user-auth-rule" lay-filter="LAY-user-auth-rule"></table>
|
<table id="LAY-user-auth-rule" lay-filter="LAY-user-auth-rule"></table>
|
||||||
<script type="text/html" id="rules-sort">
|
<script type="text/html" id="rules-sort">
|
||||||
<div class="layui-input-inline" style="width: 30px; high: 30">
|
<div class="layui-input-inline" style="width: 30px; high: 30">
|
||||||
<input type="text" name="sort" autocomplete="off" placeholder="排序" dataid="{{d.id}}" class="layui-input" value="{{d.sort}}">
|
<input type="text" name="sort" autocomplete="off" placeholder="排序" dataid="{{d.id}}" lay-filter="sort" class="layui-input" value="{{d.sort}}">
|
||||||
</div>
|
</div>
|
||||||
</script>
|
</script>
|
||||||
<script type="text/html" id="rules-title">
|
<script type="text/html" id="rules-title">
|
||||||
@ -45,10 +45,10 @@
|
|||||||
<script>
|
<script>
|
||||||
//排序
|
//排序
|
||||||
$(function(){
|
$(function(){
|
||||||
$('input[name=sort]').change(function(){
|
$('body').on('change','.layui-input',function(){
|
||||||
var id = $(this).attr('dataid'),
|
var id = $(this).attr('dataid'),
|
||||||
sort = $(this).val();
|
sort = $(this).val();
|
||||||
console.log(id);
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type:'post',
|
type:'post',
|
||||||
url:"{:url('admin/AuthRule/sort')}",
|
url:"{:url('admin/AuthRule/sort')}",
|
||||||
@ -60,7 +60,7 @@
|
|||||||
icon:6,
|
icon:6,
|
||||||
time:2000
|
time:2000
|
||||||
}
|
}
|
||||||
//,function(){location.reload();}
|
,function(){location.reload();}
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
layer.open({
|
layer.open({
|
||||||
@ -172,7 +172,8 @@
|
|||||||
//console.log(data.value); //开关value值,也可以通过data.elem.value得到
|
//console.log(data.value); //开关value值,也可以通过data.elem.value得到
|
||||||
//console.log(data.othis); //得到美化后的DOM对象
|
//console.log(data.othis); //得到美化后的DOM对象
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
//事件
|
//事件
|
||||||
var active = {
|
var active = {
|
||||||
batchdel: function(){
|
batchdel: function(){
|
||||||
|
Loading…
Reference in New Issue
Block a user