浏览代码

carousel!

master
Pascal Gloor 5 年前
父节点
当前提交
08ec24c231
共有 1 个文件被更改,包括 16 次插入4 次删除
  1. 16
    4
      www/js/autodoc.js

+ 16
- 4
www/js/autodoc.js 查看文件

@@ -239,11 +239,23 @@ function page_load_home() {
function page_load_document() {
var docid = $('#autodoc_tab_document').data('docid');
console.log(docid);

if ( docid ) {
$('.autodoc_document_empty').addClass('d-none');
$('.autodoc_document_body').removeClass('d-none');
if ( !docid ) {
return false;
}
$('.autodoc_document_empty').addClass('d-none');
$('.autodoc_document_body').removeClass('d-none');

$.getJSON(
conf.openapi + "/documents/" + docid,
function(doc) {
for(var i=0; doc.pageId.length; i++) {
var item = '<div><img /></div>';
$(item).find('img').attr('src', conf.openpi + "/pages/" + doc.pageId[i] + "/images?maxWidth=100");
$('.autodoc_document_carousel').append(item);
}
}
)
}

function page_load_upload() {

正在加载...
取消
保存