tiny-vue_version0/examples/sites/demos/pc/app/pop-upload/before-upload.vue

29 lines
662 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<tiny-pop-upload :action="action" :before-upload="handleUpload"></tiny-pop-upload>
</template>
<script lang="jsx">
import { PopUpload, Modal } from '@opentiny/vue'
export default {
components: {
TinyPopUpload: PopUpload
},
data() {
return {
action: 'http://localhost:3000/api/upload'
}
},
methods: {
handleUpload(file) {
// return false 支持同步返回 也支持 Promise异步返回
return new Promise((resolve, reject) => {
Modal.confirm(`确定上传 ${file.name}`).then((res) => {
res === 'confirm' ? resolve() : reject(new Error())
})
})
}
}
}
</script>