0.1.2 • Published 8 months ago

@moment-design/upload-material v0.1.2

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

上传素材组件

使用组件

安装依赖

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

使用组件

<template>
  <!-- 按钮 -->
  <m-space>
    <m-button type="primary" @click="open">上传素材</m-button>
  </m-space>
  <!-- 组件 -->
  <UploadMaterial ref="refUploadMaterial" :config="config" @choose="choose"></UploadMaterial>
  <!-- 数据 -->
  <div style="margin-top: 16px">
    已选数据:
    {{ data }}
  </div>
</template>

<script setup lang="ts">
import { ref } from 'vue';
import UploadMaterial from '@moment-design/material-library';
import '@moment-design/material-library/dist/css/index.css';
import '@moment-design/material-library/dist/css/index.less';
import {deleteFile, deleteGroup, getFileList, getGroupList, moveFile, postGroup, uploadFile} from "./api";

const refUploadMaterial = ref();
const config = {
    apis: {
        getGroupList,
        deleteGroup,
        getFileList,
        postGroup,
        deleteFile,
        moveFile,
        uploadFile,
    },
};
const data = ref();
const open = () => {
  refUploadMaterial.value.open(data.value);
};
const choose = (v: any) => {
  data.value = v;
};
</script>

API

Props

参数名描述类型默认值
fileType素材类型限制number1图片,2文档,3视频,4音乐
tab指定显示图片、链接、视频number1图片,2链接,3视频
hideTab隐藏 tabsbooleanfalse
max选择素材最大数量number10
dialog列表、弹窗样式DialogConfig{}
scroll左侧分组、右侧内容滚动条高度ScrollConfig{}
apis素材库相关接口ApisConfig{}

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选中的数据(v: any[], item: any)

Expose

事件名描述参数
open主动触发打开弹窗默认数据:(datas: any[])
0.1.10

8 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.2

8 months ago

0.1.1

8 months ago

0.1.0

9 months ago

0.0.8

9 months ago

0.0.7

9 months ago

0.0.6

9 months ago

0.0.5

9 months ago

0.0.4

10 months ago

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago