gxd-file-preview
Version:
vue 文件在线预览展示功能,支持文件(PDF,PNG,JPEG,JPG,GIF,DOC,DOCX,PPT,PPTX,XLS,XLSX,JSON,TXT,JS,HTML,CSS)
19 lines (16 loc) • 471 B
JavaScript
;
import imgPreview from "./imageView";
import helper from "./helper";
/**
* @description 图片预览功能
* @param options {object}
* @param options.fid 文件ID,唯一id(必填)
* @param options.name 文件名称
* @param options.type 文件类型
* @param options.url //图片地址
* @param $vue Vue
*/
export default function (options, $vue) {
console.log('111,PDF预览功能');
helper.createElement(options, $vue, imgPreview);
}