com-serp-common-components
Version:
``` formJson: { inline: false, // 是否inline展示 labelPosition: "right", // 标题位置(左,右,居中) labelWidth: "", // 标题宽度 (可在单行上定义) statusIcon: true, formItemList: [ // 表单配置项 { type: "slot", slotName: "upload", label: "上传", // 中文名或标题 pro
10 lines (9 loc) • 343 B
JavaScript
export const ACCEPT_CONFIG = {
image: ['png', 'jpg', 'jpeg', 'gif', 'bmp'],
// video: ['mp4', 'rmvb', 'mkv', 'wmv', 'flv'],
// document: ['doc', 'docx', 'xls', 'xlsx', 'ppt', 'pptx', 'pdf', 'txt', 'tif', 'tiff', 'rar', 'zip'],
getAll () {
// return [...this.image, ...this.video, ...this.document]
return [...this.image]
}
}