');
} else {
if (row.limited == 1) {
html.push('
');
} else {
if (row.state == "1") {
html.push('
' + value + '
');
} else {
html.push('
当前链接已失效,请禁止使用
' + value + '
');
}
}
}
}
return html.join('
');
},
entry_page: function (value, row, index) {
var html = [];
if (row.type == 1) {
html.push('
' + row.book_name + '');
html.push(row.chapter_name);
if (row.guide_chapter_idx) {
html.push('关注章节:' + row.guide_chapter_idx);
} else {
html.push('关注章节:默认');
}
} else if (row.type == 3) {
html.push('落地页推广');
html.push('
' + row.book_name + '');
html.push(row.chapter_name);
if (row.guide_chapter_idx) {
html.push('关注章节:' + row.guide_chapter_idx);
} else {
html.push('关注章节:默认');
}
} else {
html.push('书城首页推广');
}
return html.join('
');
},
index_operate: function (value, row, index) {
var row_id = row.id
return
}
}
};
return Controller;
});