2022年5月29日 从svn移到git

This commit is contained in:
daihh
2022-05-29 18:59:24 +08:00
parent 9580ff8c9b
commit faa7afb65f
897 changed files with 171836 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<template>
<view>
<u-upload :fileList="fileList" @afterRead="afterRead" @delete="deletePic" name="coverImg" :maxCount="1">
<image :src="coverImage==''? '/static/temp/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>