-
Notifications
You must be signed in to change notification settings - Fork 0
JUpload
xinwu-yang edited this page Mar 1, 2023
·
1 revision
上传组件。
<template>
<j-upload v-model="fileList" text="上传"></j-upload>
</template>
<script>
export default {
data() {
return {
fileList: []
}
}
}
</script>
属性 | 说明 | 类型 | 必填 | 默认值 |
---|---|---|---|---|
value(v-model) | 值 | string | array | ||
text | 按钮文字 | string | '点击上传' | |
fileType | 文件类型 | 'all' | 'image' | 'all' | |
bizPath | 文件上传的业务路径 | string | 'temp' | |
disabled | 是否禁用 | boolean | false | |
returnUrl | 是否返回 url | boolean | true | |
number | 上传文件数量 | number | 0,不限制 | |
buttonVisible | 按钮是否可见 | boolean | true |
事件名称 | 说明 | 回调参数 |
---|---|---|
change | 值发生变化时调用 | function(value) |