0.1.10 • Published 7 months ago

@moment-design/material-library v0.1.10

Weekly downloads
-
License
MIT
Repository
-
Last release
7 months ago

素材库组件

使用组件

安装依赖

npm install @moment-design/material-library --save

使用组件

import MaterialLibrary from "@moment-design/material-library"

<MaterialLibrary
  ref="refLMaterialLibrary"
  :config="config"
  @choose="(v) => (chooseDatas = v)"
></MaterialLibrary>

API

Props

参数名描述类型默认值
fileType素材类型限制number1图片,2文档,3视频,4音乐
max素材最大数量number10
dialog列表、弹窗样式DialogConfig{}
scroll左侧分组、右侧内容滚动条高度ScrollConfig{}
apis素材库相关接口ApisConfig{}
customValidate自定义校验函数(datas) => (true 或 报错信息)-

DialogConfig

参数名描述类型默认值
title弹窗标题string选择素材
visible列表(false)、弹窗(true)样式booleanfalse
width弹出框宽度number1160

ScrollConfig

参数名描述类型默认值
left左侧分组滚动条高度string'430px'
right右侧内容滚动条高度string'430px'

ApisConfig

参数名描述类型默认值
getGroupList获取分组列表api-
postGroup新增、编辑分组api-
deleteGroup删除分组api-
getFileList获取分组下素材列表api-
deleteFile删除分组下的素材api-
moveFile移动分组api-
uploadFile上传素材api-

Events

事件名描述参数
choose选中的素材(datas: any[])

Expose

事件名描述参数
open主动触发打开选择素材库-

示例数据

const config = {
  dialog: {
    visible: false,
    title: '选择素材',
    width: 1160,
  },
  scroll: {
    left: '560px',
    right: '560px',
  },
  fileType: 1,
  apis: useMaterialApis(),
};

const useMaterialApis = {
  getGroupList,
  postGroup,
  deleteGroup,
  getFileList,
  deleteFile,
  moveFile,
  uploadFile,
};

Interface

export interface IMaterialLibrary {
  dialog: {
    visible: boolean,
    title?: string,
    width?: number,
  };
  scroll?: {
    left?: string,
    right?: string,
  };
  fileType?: 1 | 2 | 3 | 4;
  apis: {
    getGroupList: any,
    postGroup: any,
    deleteGroup: any,
    getFileList: any,
    deleteFile: any,
    moveFile: any,
    uploadFile: any,
  };
}
0.1.10

7 months ago

0.1.9

8 months ago

0.1.8

8 months ago

0.1.7

8 months ago

0.1.6

8 months ago

0.1.5

8 months ago

0.1.4

8 months ago

0.1.3

8 months ago

0.1.2

9 months ago

0.1.1

9 months ago

0.1.0

9 months ago

0.0.23

9 months ago

0.0.22

10 months ago

0.0.21

10 months ago

0.0.20

10 months ago

0.0.19

10 months ago

0.0.18

10 months ago

0.0.17

10 months ago

0.0.16

10 months ago

0.0.15

10 months ago

0.0.14

10 months ago

0.0.13

10 months ago

0.0.12

10 months ago

0.0.11

11 months ago

0.0.10

11 months ago

0.0.9

11 months ago

0.0.8

11 months ago

0.0.7

11 months ago

0.0.6

11 months ago

0.0.5

11 months ago

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago