修改问题

This commit is contained in:
wanggeng888 2021-06-11 11:48:28 +08:00
parent 8f1bb085df
commit 00e01b50d7
2 changed files with 9 additions and 2 deletions

View File

@ -16,7 +16,7 @@ import java.util.Map;
* @Date: 2020-04-03 15:37 * @Date: 2020-04-03 15:37
* @Version: 1.0 * @Version: 1.0
**/ **/
public interface IContentDataAuthService extends IArticleCheckService { public interface IContentDataAuthService {
/** /**
* 文章内容列表 * 文章内容列表

View File

@ -82,7 +82,7 @@
{field:'userName', width:140, title: '昵称', align:'center'}, {field:'userName', width:140, title: '昵称', align:'center'},
{field:'userSort', width:140, title: '排序', align:'center', {field:'userSort', width:140, title: '排序', align:'center',
templet: function(item) { templet: function(item) {
return item.userSort; return '<a href="javascript:void(0);" lay-event="sortEvent"'+ item.userSort +'</a>';
} }
}, },
{field:'userPhone', width:140, title: '手机', align:'center', {field:'userPhone', width:140, title: '手机', align:'center',
@ -264,6 +264,13 @@
} }
} }
}); });
table.on('tool(dataTable)', function(obj) {
var data = obj.data;
var event = obj.event;
if(event === 'sortEvent') {
}
});
}); });
</script> </script>
</body> </body>