12345678910111213141516171819202122232425262728293031 |
- function helpShowDetail(number) {
- var xml = "";
- $.ajax({
- async: false,
- url: "/a/sys/help/getEnableByNumber?number=" + number,
- type:"post",
- dataType: "json",
- success:function(data){
- if(1 === data.enable){
- xml += "<a href=\"#\" style='margin-left: 5px;background-color:rgba(255,255,255,0);color: #FFB800;' class=\"layui-icon layui-icon-tips\" onclick=\"helpDetails(\'" + number + "\')\"></a>"
- }
- }
- });
- return xml;
- }
- //打开对话框(查看)
- function helpDetails(number){
- $.ajax({
- url: "/a/sys/help/getByNumber?number=" + number,
- type:"post",
- dataType: "json",
- success:function(data){
- if(data.content){
- top.layer.open({
- title: data.title + "<span style='color: #9e9e9e;font-weight:normal;'> " + number + "</span>",
- content: data.content
- });
- }
- }
- });
- }
|