Files
learning-system-mobile/components/image-upload/image-upload.vue
2022-05-30 23:03:25 +08:00

23 lines
478 B
Vue

<template>
<view>
<u-upload :fileList="fileList" @afterRead="afterRead" @delete="deletePic" name="coverImg" :maxCount="1">
<image :src="coverImage==''? '/static/images/uploading.png':coverImage" mode="widthFix" style="width: 150rpx;height: 150rpx;">
</image>
</u-upload>
</view>
</template>
<script>
import config from '@/config/index.js'
import uploadUtil from '@/utils/upload.js'
export default {
data() {
return {
}
}
}
</script>
<style>
</style>