|
@@ -17,23 +17,54 @@
|
|
|
</div>
|
|
|
|
|
|
<!-- files show style -->
|
|
|
- <div class="source-listbox">
|
|
|
- <render-dom :vnode="vnodecom" />
|
|
|
+ <div class="source-listbox" v-if="isFs">
|
|
|
+ <ul class="files-container">
|
|
|
+ <li class="files-row flex flex-row flex-row-aic"
|
|
|
+ v-for="(file, index) in filelist"
|
|
|
+ :key="index"
|
|
|
+ >
|
|
|
+ <div class="icon">
|
|
|
+ <template v-if="['png', 'jpg', 'jpeg'].includes(file.type)">
|
|
|
+ <span>pic</span>
|
|
|
+ </template>
|
|
|
+ <span v-else-if="file.type === 'word'">word</span>
|
|
|
+ <span v-else-if="file.type === 'pdf'">pdf</span>
|
|
|
+ <span v-else-if="['xsl'].includes(file.type)">表格</span>
|
|
|
+ </div>
|
|
|
+ <div class="files-row__info">
|
|
|
+ <div class="files-name ellipsis">{{ file.name }}</div>
|
|
|
+ <div class="files-other-info flex flex-row flex-row-aic">
|
|
|
+ <div class="files-other-info__div flex flex-row">
|
|
|
+ <div class="size">{{ file.size }}</div>
|
|
|
+ <div class="review" @click="handleReviewFiles(file)">预览</div>
|
|
|
+ </div>
|
|
|
+ <van-icon
|
|
|
+ :size="20"
|
|
|
+ color="#A2A3A4"
|
|
|
+ name="clear"
|
|
|
+ @click="handleRemoveFile(file, index)"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
<van-uploader
|
|
|
v-show="filelist.length && !isFs"
|
|
|
ref="uploadFileRef"
|
|
|
v-model="filelist"
|
|
|
- :after-read="afterRead"
|
|
|
+ preview-size="48px"
|
|
|
:max-count="$attrs.maxCount"
|
|
|
- :before-read="beforeRead"
|
|
|
- @oversize="onOversize"
|
|
|
+ :max-size="maxSizeComp"
|
|
|
:show-upload="false"
|
|
|
:accept="acceptHandle"
|
|
|
:preview-image="!isFs"
|
|
|
- preview-size="48px"
|
|
|
- ></van-uploader>
|
|
|
+ :before-read="beforeRead"
|
|
|
+ :after-read="afterRead"
|
|
|
+ @oversize="onOversize"
|
|
|
+ >
|
|
|
+ </van-uploader>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -72,9 +103,11 @@
|
|
|
}
|
|
|
&__info {
|
|
|
flex: 1;
|
|
|
+ width: 0;
|
|
|
}
|
|
|
}
|
|
|
&-name {
|
|
|
+ width: 88%;
|
|
|
font-size: @font-size-common;
|
|
|
font-weight: 400;
|
|
|
color: #191A1E;
|
|
@@ -102,7 +135,17 @@
|
|
|
</style>
|
|
|
|
|
|
<script>
|
|
|
+import { ImagePreview } from 'vant';
|
|
|
import uploadFile from '@/utils/upload'
|
|
|
+import {
|
|
|
+ getStaticLinkInfo,
|
|
|
+ getByteShowSize
|
|
|
+} from '@/utils/util'
|
|
|
+
|
|
|
+import {
|
|
|
+ FileSize,
|
|
|
+ PicSize
|
|
|
+} from "@/utils/constant"
|
|
|
|
|
|
export default {
|
|
|
name: 'CFiles',
|
|
@@ -119,15 +162,19 @@ export default {
|
|
|
acceptHandle () { // 图片上传文件限制
|
|
|
return this.isFs ? "*" : "image/*"
|
|
|
},
|
|
|
- vnodecom () {
|
|
|
- return this.isFs ? this.handleRenderFiles() : null
|
|
|
- },
|
|
|
headerTitle () {
|
|
|
return this.isFs ? '附件' : '图片'
|
|
|
+ },
|
|
|
+ // 文件大小
|
|
|
+ maxSizeComp () {
|
|
|
+ let mb = 1 * 1024 * 1024;
|
|
|
+ return this.isFs ? FileSize * mb : PicSize * mb
|
|
|
}
|
|
|
},
|
|
|
+
|
|
|
data () {
|
|
|
return {
|
|
|
+ toastInstance: null,
|
|
|
filelist: []
|
|
|
}
|
|
|
},
|
|
@@ -135,92 +182,83 @@ export default {
|
|
|
methods: {
|
|
|
// 启动上传组件
|
|
|
handleLaunchUploadBox() {
|
|
|
- // console.log(this.$refs.uploadFileRef);
|
|
|
this.$refs.uploadFileRef.chooseFile()
|
|
|
},
|
|
|
|
|
|
- // 渲染文件
|
|
|
- handleRenderFiles() {
|
|
|
- let files = this.filelist
|
|
|
- return (
|
|
|
- <ul class="files-container">
|
|
|
- {
|
|
|
- files.map((file, index) => (
|
|
|
- <li class="files-row flex flex-row flex-row-aic">
|
|
|
- <div class="icon">
|
|
|
- <img src={file.url} ></img>
|
|
|
- </div>
|
|
|
- <div class="files-row__info">
|
|
|
- <div class="files-name">{ file.file.name }</div>
|
|
|
- <div class="files-other-info flex flex-row flex-row-aic">
|
|
|
- <div class="files-other-info__div flex flex-row">
|
|
|
- <div class="size">{ file.file.size }</div>
|
|
|
- <div class="review" onClick={this.handleReviewFiles.bind(this, file.file)}>预览</div>
|
|
|
- </div>
|
|
|
- <van-icon
|
|
|
- size={20}
|
|
|
- color="#A2A3A4"
|
|
|
- name="clear"
|
|
|
- onClick={this.handleRemoveFile.bind(this, file, index)}
|
|
|
- />
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </li>
|
|
|
- ))
|
|
|
- }
|
|
|
- </ul>
|
|
|
- )
|
|
|
- },
|
|
|
-
|
|
|
- // 渲染图片 采用组件自带图片渲染
|
|
|
- // handleRenderImages() {},
|
|
|
-
|
|
|
// @returns Boolean {true/false}
|
|
|
- beforeRead (file) {
|
|
|
- if ([].includes(file.ctype)) {
|
|
|
- console.log('before read', file);
|
|
|
- }
|
|
|
+ beforeRead () {
|
|
|
+ this.toastInstance = this.$toast.loading({
|
|
|
+ duration: 0,
|
|
|
+ message: '上传中'
|
|
|
+ })
|
|
|
+ // NOTE: 上传前的控制
|
|
|
+ // console.log('before read func>>', file);
|
|
|
+ // if ([].includes(file.ctype)) {
|
|
|
+ // console.log('before read', file);
|
|
|
+ // }
|
|
|
return true
|
|
|
},
|
|
|
|
|
|
// 自行上传文件
|
|
|
async afterRead (file, detail) {
|
|
|
- // 通过 status 属性可以标识上传状态,uploading 表示上传中,failed 表示上传失败,done 表示上传完成。
|
|
|
- // file.status = 'uploading';
|
|
|
- // file.message = '上传中...';
|
|
|
-
|
|
|
- // setTimeout(() => {
|
|
|
- // file.status = 'failed';
|
|
|
- // file.message = '上传失败';
|
|
|
- // }, 1000);
|
|
|
console.log('after read', file, detail)
|
|
|
try {
|
|
|
const url = await uploadFile(file.file)
|
|
|
-
|
|
|
- console.log('%c url >>>', 'background: blue; color: #fff', url);
|
|
|
+ const { suffix } = getStaticLinkInfo(url)
|
|
|
+ file.name = file.file.name
|
|
|
+ file.type = suffix
|
|
|
file.url = url
|
|
|
+ file.size = getByteShowSize(file.file.size)
|
|
|
file.status = 'success'
|
|
|
-
|
|
|
- return file
|
|
|
+ this.$forceUpdate() // 强制更新渲染视图
|
|
|
} catch (error) {
|
|
|
- console.log('upload catch', error);
|
|
|
+ file.status = 'failed'
|
|
|
+ file.message = error.message
|
|
|
+ } finally {
|
|
|
+ this.toastInstance.clear()
|
|
|
}
|
|
|
},
|
|
|
+
|
|
|
// 超出文件大小
|
|
|
- onOversize (file) {
|
|
|
- console.log('超出大小', file);
|
|
|
+ onOversize () {
|
|
|
+ let desc = this.isFs ? `文件超过${FileSize}MB` : `图片超过${PicSize}MB`
|
|
|
+ this.$toast(desc)
|
|
|
},
|
|
|
+
|
|
|
// 预览文件
|
|
|
- handleReviewFiles(file, p2, p3) {
|
|
|
+ handleReviewFiles(file) {
|
|
|
// TODO: 如果是图片直接预览。 非图片其他方式预览(下载、或者插件)
|
|
|
- console.log('func', file, p2, p3);
|
|
|
- console.log('ref', this.$refs.uploadFileRef);
|
|
|
- this.$refs.uploadFileRef.onPreviewImage()
|
|
|
+ // NOTE: 可进行图片预览类型
|
|
|
+ if (['png', 'jpg', 'jpeg'].includes(file.type)) {
|
|
|
+ ImagePreview([file.url])
|
|
|
+ } else {
|
|
|
+ this.$toast(file.type + '预览开发中...')
|
|
|
+ }
|
|
|
},
|
|
|
handleRemoveFile (file, index) {
|
|
|
- // console.log('f>>>>', file, index);
|
|
|
this.filelist.splice(index, 1)
|
|
|
}
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ // NOTE: 判断是否有新添加。 新添加赋值
|
|
|
+ filelist: {
|
|
|
+ handler(arrs) {
|
|
|
+ let hasAdd = arrs.some(image => (image.content))
|
|
|
+ if (hasAdd) {
|
|
|
+ this.$listeners['input'] && this.$emit('input', arrs)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ value: {
|
|
|
+ handler (arrs) {
|
|
|
+ if (Array.isArray(arrs) && arrs.length) {
|
|
|
+ this.filelist = [
|
|
|
+ ...arrs
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ immediate: true
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|