disk-file-upload.vue 23.4 KB
Newer Older
ibizdev's avatar
ibizdev committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
<template>
    <div id="file-upload">
        <el-row id="el-row">
            <!--拖拽上传-->
            <el-col v-if="showDrag==true" class="withDrag">
                <el-upload
                        ref="upload"
                        drag
                        multiple
                        list-type="text"
                        :action="getAction()"
                        :headers="myHeaders"
                        :file-list="uploadFileList"
                        :show-file-list="false"
                        :http-request="customUploadFile">
                    <div>
                        <i class="el-icon-upload"></i>
                        <div>
                            <span>{{$t('components.diskFileUpload.fileDrag')}}</span>
                            <span style="color:#409EFF;">{{$t('components.diskFileUpload.clickUpload')}}</span>
                        </div>
                    </div>
                </el-upload>
            </el-col>
            <!--点击上传-->
            <el-col v-else class="withoutDrag">
                <el-upload
                        ref="upload"
                        multiple
                        list-type="text"
                        :action="getAction()"
                        :headers="myHeaders"
                        :file-list="uploadFileList"
                        :show-file-list="false"
                        :http-request="customUploadFile">
36
                    <el-button type="primary" size="small" icon="el-icon-upload" :disabled="disabled">
ibizdev's avatar
ibizdev committed
37 38
                        {{$t('components.diskFileUpload.clickUpload')}}
                    </el-button>
ibizdev's avatar
ibizdev committed
39 40 41 42 43 44 45 46 47
                </el-upload>
            </el-col>
            <!--文件操作-->
            <el-col v-for="(item,index) in uploadFileList" :key="index" class="fileList">
                <div class="fileTitle">
                    <i class="el-icon-document"></i>
                    <span>{{item.name}}</span>
                </div>
                <div class="fileMain">
ibizdev's avatar
ibizdev committed
48 49 50 51 52
                    <el-link type="success" icon="el-icon-download" @click="onDownload(item)">
                        {{$t('components.diskFileUpload.load')}}
                    </el-link>
                    <el-link type="warning" icon="el-icon-view" v-show="showPreview" @click="onPreview(item)">
                        {{$t('components.diskFileUpload.preview')}}
ibizdev's avatar
ibizdev committed
53 54 55 56 57 58 59 60 61
                    </el-link>
                    <el-link type="primary" icon="el-icon-edit"
                             v-show="showEdit && (item.name.match(/^.+\.(doc|DOC|docx|DOCX|wps|WPS|xls|XLS|xlsx|XLSX|ppt|PPT|et|ET)$/))"
                             @click="onEdit(item)">{{$t('components.diskFileUpload.edit')}}
                    </el-link>
                    <el-link icon="el-icon-camera"
                             v-show="showOcrview && (item.name.match(/^.+\.(gif|GIF|jpg|JPG|jpeg|JPEG|png|PNG|bmp|BMP|pdf|PDF)$/))"
                             @click="onOcr(item)">OCR
                    </el-link>
ibizdev's avatar
ibizdev committed
62 63 64
                    <el-link type="danger" icon="el-icon-delete" @click="onRemove(item,index)">
                        {{$t('components.diskFileUpload.delete')}}
                    </el-link>
ibizdev's avatar
ibizdev committed
65 66 67
                </div>
            </el-col>
        </el-row>
ibizdev's avatar
ibizdev committed
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
        <!-- 自定义弹框 -->
        <div class="dialogDiv">
            <el-dialog
                    :title="dialogTitle"
                    center
                    width="70%"
                    top="5vh"
                    :visible="showDialog"
                    :close-on-click-modal="true"
                    :show-close="true"
                    :before-close="dialogClose"
                    :modal-append-to-body="false">
                <div style="height: 100%;">
                    <iframe id="fileIframe" :src="iframeUrl" frameborder="0" width="100%"></iframe>
                </div>
            </el-dialog>
        </div>
ibizdev's avatar
ibizdev committed
85 86 87 88
    </div>
</template>

<script lang="ts">
ibizdev's avatar
ibizdev committed
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
    import {Component, Vue, Prop, Watch} from 'vue-property-decorator';
    import {Button, Row, Col, Link, Icon, Upload, Message, MessageBox} from 'element-ui';
    import Axios from 'axios';
    import {Subject, Unsubscribable} from 'rxjs';

    @Component({})
    export default class DiskFileUpload extends Vue {

        /**
         * 当前表单对象
         *
         * @type {*}
         * @memberof DiskFileUpload
         */
        @Prop() public data!: any;

        /**
         * 当前属性名
         *
         * @type {string}
         * @memberof DiskFileUpload
         */
        @Prop() public formItemName!: string;

        /**
         * 当前属性值
         *
         * @type {string}
         * @memberof DiskFileUpload
         */
        @Prop() public value!: string;

        /**
         * 当前表单状态
         *
         * @type {*}
         * @memberof DiskFileUpload
         */
        @Prop() public formState!: any;

        /**
         * 默认为当前实体名称,有指定则按表单参数
         *
         * @type {string}
         * @memberof DiskFileUpload
         */
        @Prop() public folder!: string;

        /**
         * 默认为当前实体主键id,有指定则按表单参数
         *
         * @type {string}
         * @memberof DiskFileUpload
         */
        @Prop() public ownerid!: string;

        /**
         * 默认为当前属性名,有指定则按表单参数
         *
         * @type {string}
         * @memberof DiskFileUpload
         */
        @Prop() public ownertype!: string;

        /**
         * 持久化
         *
         * @type {boolean}
         * @memberof DiskFileUpload
         */
        @Prop({default: false}) public persistence?: boolean;

        /**
         * 是否显示拖拽区域
         *
         * @type {boolean}
         * @memberof DiskFileUpload
         */
        @Prop({default: false}) public showDrag?: boolean;

        /**
         * 是否显示预览按钮
         *
         * @type {boolean}
         * @memberof DiskFileUpload
         */
        @Prop({default: false}) public showPreview?: boolean;

        /**
         * 是否显示在线编辑按钮
         *
         * @type {boolean}
         * @memberof DiskFileUpload
         */
        @Prop({default: false}) public showEdit?: boolean;

        /**
         * 是否显示OCR按钮
         *
         * @type {boolean}
         * @memberof DiskFileUpload
         */
        @Prop({default: false}) public showOcrview?: boolean;

        /**
         * 表单是否处于编辑状态(有真实主键,srfuf='1';srfuf='0'时处于新建未保存)
         *
         * @type {string}
         * @memberof DiskFileUpload
         */
        public srfuf: string = '0';


        /**
         * 文件列表
         *
         * @type {Array<any>}
         * @memberof DiskFileUpload
         */
        public uploadFileList: Array<any> = [];

        /**
         * 当前登陆人的token
         *
         * @type {string}
         * @memberof DiskFileUpload
         */
        public token: string = "Bearer " + localStorage.getItem('token');

        /**
         * 上传文件请求头
         *
         * @type {*}
         * @memberof DiskFileUpload
         */
        public myHeaders: any = {Authorization: this.token};

        /**
         * 表单状态事件
         *
         * @type {*}
         * @memberof DiskFileUpload
         */
        public formStateEvent: any | Unsubscribable | undefined;

        /**
         * 批量更新标识,false为不更新,true才可以更新
         *
         * @type {boolean}
         * @memberof DiskFileUpload
         */
        public isUpdateBatch: boolean = true;

        /**
         * 新建状态标识,true为新建,false为编辑
         *
         * @type {boolean}
         * @memberof DiskFileUpload
         */
        public isCreate: boolean = true;

        /**
         * 自定义弹框标题
         *
         * @type {*}
         * @memberof DiskFileUpload
         */
        public dialogTitle: any = '';

        /**
         * 是否显示自定义弹框
         *
         * @type {boolean}
         * @memberof DiskFileUpload
         */
        public showDialog: boolean = false;

        /**
         * 嵌入自定义弹框中iframe的url
         *
         * @type {*}
         * @memberof DiskFileUpload
         */
        public iframeUrl: any = '';

        /**
         * 关闭自定义弹框
         *
         * @memberof DiskFileUpload
         */
        public dialogClose() {
            this.dialogTitle = '';
            this.showDialog = false;
            this.iframeUrl = '';
            let iframe: any = document.getElementById("fileIframe");
            iframe.parentNode.removeChild("fileIframe");
        }
ibizdev's avatar
ibizdev committed
286

ibizdev's avatar
ibizdev committed
287 288 289 290 291 292 293 294
        /**
         * 拼接上传路径
         *
         * @memberof DiskFileUpload
         */
        public getAction() {
            return '/net-disk/upload/' + this.getFolder() + '?ownertype=' + this.getOwnertype() + '&ownerid=' + this.getOwnerid();
        }
ibizdev's avatar
ibizdev committed
295

ibizdev's avatar
ibizdev committed
296 297 298 299 300 301 302 303
        /**
         * return folder
         *
         * @memberof DiskFileUpload
         */
        public getFolder() {
            return typeof this.folder == "string" ? this.folder : JSON.stringify(this.folder);
        }
ibizdev's avatar
ibizdev committed
304

ibizdev's avatar
ibizdev committed
305 306 307 308 309 310 311 312
        /**
         * return ownertype
         *
         * @memberof DiskFileUpload
         */
        public getOwnertype() {
            return typeof this.ownertype == "string" ? this.ownertype : JSON.stringify(this.ownertype);
        }
ibizdev's avatar
ibizdev committed
313

ibizdev's avatar
ibizdev committed
314 315 316 317 318 319 320 321
        /**
         * return ownerid
         *
         * @memberof DiskFileUpload
         */
        public getOwnerid() {
            return typeof this.ownerid == "string" ? this.ownerid : JSON.stringify(this.ownerid);
        }
ibizdev's avatar
ibizdev committed
322

ibizdev's avatar
ibizdev committed
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
        /**
         * vue创建
         *
         * @memberof DiskFileUpload
         */
        public created() {
            this.formStateEvent = this.formState.subscribe(($event: any) => {
                // 表单加载完成
                if (Object.is($event.type, 'load')) {
                    const data = JSON.parse(JSON.stringify($event.data));
                    // 编辑表单,保存时不进行批量更新
                    if (data.srfuf == '1') {
                        this.isCreate = false;
                        this.isUpdateBatch = false;
                    }
                    // 当persistence = true时
                    if (this.persistence == true) {
                        // 直接从表单的data数据里获取当前属性的值
                        if (data[this.formItemName] && this.uploadFileList.length == 0) {
                            const files = JSON.parse(data[this.formItemName]);
                            for (let i = 0; i < files.length; i++) {
                                this.uploadFileList.push(files[i]);
                            }
ibizdev's avatar
ibizdev committed
346
                        }
ibizdev's avatar
ibizdev committed
347 348 349
                    } else {
                        // 发送get请求获取文件列表
                        this.getFiles();
ibizdev's avatar
ibizdev committed
350 351
                    }
                }
ibizdev's avatar
ibizdev committed
352 353 354 355 356 357
                // 表单保存完成
                if (Object.is($event.type, 'save')) {
                    // 批量更新文件表中的ownerid
                    if (this.isUpdateBatch == true && this.uploadFileList.length > 0) {
                        this.updateFileBatch(this.uploadFileList);
                    }
ibizdev's avatar
ibizdev committed
358
                }
ibizdev's avatar
ibizdev committed
359 360
            });
        }
ibizdev's avatar
ibizdev committed
361

ibizdev's avatar
ibizdev committed
362 363 364 365 366 367
        /**
         * 获取文件列表
         *
         * @memberof DiskFileUpload
         */
        public getFiles() {
ibizdev's avatar
ibizdev committed
368
            // 拼接url
ibizdev's avatar
ibizdev committed
369
            let _this: any = this;
ibizdev's avatar
ibizdev committed
370 371 372 373 374 375 376
            const getUrl = '/net-disk/files/' + this.getFolder();
            // 发送get请求
            Axios.get(getUrl, {
                params: {
                    ownertype: this.getOwnertype(),
                    ownerid: this.getOwnerid(),
                },
ibizdev's avatar
ibizdev committed
377
            }).then((response: any) => {
ibizdev's avatar
ibizdev committed
378
                if (!response || response.status != 200) {
ibizdev's avatar
ibizdev committed
379
                    Message.error(_this.$t('components.diskFileUpload.getFileFailure') + '!');
ibizdev's avatar
ibizdev committed
380 381 382 383 384 385 386 387 388
                    return;
                }
                // 返回的是一个jsonArray
                if (response.data) {
                    const files = JSON.parse(JSON.stringify(response.data));
                    if (this.uploadFileList.length == 0) {
                        this.uploadFileList.push.apply(this.uploadFileList, files);
                    }
                }
ibizdev's avatar
ibizdev committed
389 390
            }).catch((error: any) => {
                Message.error(_this.$t('components.diskFileUpload.getFileFailure') + ':' + error);
ibizdev's avatar
ibizdev committed
391
            });
ibizdev's avatar
ibizdev committed
392
        }
ibizdev's avatar
ibizdev committed
393

ibizdev's avatar
ibizdev committed
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
        /**
         * 自定义上传文件
         *
         * @param 上传文件
         * @memberof DiskFileUpload
         */
        public customUploadFile(param: any) {
            // 上传的文件
            let _this: any = this;
            let file = param.file;
            // formData传参
            let formData = new FormData();
            formData.append('file', file);
            // 拼接url
            const uploadUrl = this.getAction();
            // 发送post请求
            Axios.post(uploadUrl, formData, {timeout: 2000}).then((response: any) => {
                if (!response || response.status != 200) {
                    Message.error(_this.$t('components.diskFileUpload.loadFailure') + '!');
                }
                // 返回的是一个jsonobject
                if (response.data) {
                    // 新建表单上传,后续需要批量更新操作
                    if (this.isCreate == true) {
                        this.isUpdateBatch = true;
                    }
                    // 保存到文件列表进行显示
                    this.uploadFileList.push(response.data);
                    // persistence=true时需要持久化表单属性
                    if (this.persistence == true && this.uploadFileList.length > 0) {
                        const value = JSON.stringify(this.uploadFileList);
                        this.$emit('formitemvaluechange', {name: this.formItemName, value: value});
                    }
                }
            }).catch((error: any) => {
                Message.error(_this.$t('components.diskFileUpload.loadFailure') + ':' + error);
            })
ibizdev's avatar
ibizdev committed
431
        }
ibizdev's avatar
ibizdev committed
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502

        /**
         * 下载文件
         *
         * @param item 下载文件
         * @memberof DiskFileUpload
         */
        public onDownload(item: any) {
            // 拼接url
            let _this: any = this;
            const id = typeof item.id == "string" ? item.id : JSON.stringify(item.id);
            const name = typeof item.name == "string" ? item.name : JSON.stringify(item.filename);
            const downloadUrl = '/net-disk/download/' + this.getFolder() + '/' + id + '/' + name;
            // 发送get请求
            Axios.get(downloadUrl, {
                headers: {
                    'authcode': item.authcode,
                },
                responseType: 'arraybuffer',
            }).then((response: any) => {
                if (!response || response.status != 200) {
                    Message.error(_this.$t('components.diskFileUpload.downloadFile') + '!');
                    return;
                }
                // 请求成功,后台返回的是一个文件流
                if (response.data) {
                    // 获取文件名
                    const disposition = response.headers['content-disposition'];
                    const filename = disposition.split('filename=')[1];
                    // 用blob对象获取文件流
                    let blob = new Blob([response.data], {type: response.headers['content-type']});
                    // 通过文件流创建下载链接
                    var href = URL.createObjectURL(blob);
                    // 创建一个a元素并设置相关属性
                    let a = document.createElement('a');
                    a.href = href;
                    if (name) {
                        a.download = name;
                    } else {
                        a.download = filename;
                    }
                    // 添加a元素到当前网页
                    document.body.appendChild(a);
                    // 触发a元素的点击事件,实现下载
                    a.click();
                    // 从当前网页移除a元素
                    document.body.removeChild(a);
                    // 释放blob对象
                    URL.revokeObjectURL(href);
                } else {
                    Message.error(_this.$t('components.diskFileUpload.downloadFile1'));
                }
            }).catch((error: any) => {
                Message.error(_this.$t('components.diskFileUpload.downloadFile') + ':' + error);
            });
        }

        /**
         * 预览文件
         *
         * @param item 预览文件
         * @memberof DiskFileUpload
         */
        public onPreview(item: any) {
            // 拼接url
            const id = typeof item.id == "string" ? item.id : JSON.stringify(item.id);
            const name = typeof item.name == "string" ? item.name : JSON.stringify(item.name);
            let previewUrl = '/net-disk/preview/' + this.getFolder() + '/' + id + '/' + name + '?authcode=' + item.authcode;
            Axios.get(previewUrl).then((response: any) => {
                if (!response || response.status != 200) {
                    return;
ibizdev's avatar
ibizdev committed
503
                }
ibizdev's avatar
ibizdev committed
504 505 506 507 508
                // 返回一个url,通过自定义弹框打开
                if (response.data) {
                    this.dialogTitle = name;
                    this.showDialog = true;
                    this.iframeUrl = response.data;
ibizdev's avatar
ibizdev committed
509
                }
ibizdev's avatar
ibizdev committed
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
            }).catch((error: any) => {
                Message.error(error);
            });
        }

        /**
         * 编辑文件
         *
         * @param item
         * @memberof DiskFileUpload
         */
        public onEdit(item: any) {
            // 拼接url
            const id = typeof item.id == "string" ? item.id : JSON.stringify(item.id);
            const name = typeof item.name == "string" ? item.name : JSON.stringify(item.name);
            const editUrl = '/net-disk/editview/' + this.getFolder() + '/' + id + '/' + name + '?authcode=' + item.authcode;
            // TODO:暂时用window.open
            window.open(editUrl);
        }
ibizdev's avatar
ibizdev committed
529

ibizdev's avatar
ibizdev committed
530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589
        /**
         * ocr识别
         * @param item
         * @memberof DiskFileUpload
         */
        public onOcr(item: any) {
            // 拼接url
            const folder = typeof this.folder == "string" ? this.folder : JSON.stringify(this.folder);
            const id = typeof item.id == "string" ? item.id : JSON.stringify(item.id);
            const name = typeof item.name == "string" ? item.name : JSON.stringify(item.name);
            const ocrUrl = '/net-disk/ocrview/' + this.getFolder() + '/' + id + '/' + name + '?authcode=' + item.authcode;
            Axios.get(ocrUrl).then((response: any) => {
                if (!response || response.status != 200) {
                    return;
                }
                // 返回一个url,通过自定义弹框打开
                if (response.data) {
                    this.dialogTitle = name;
                    this.showDialog = true;
                    this.iframeUrl = response.data;
                }
            }).catch((error: any) => {
                Message.error(error);
            });
        }

        /**
         * 删除文件
         *
         * @param item
         * @param index
         * @memberof DiskFileUpload
         */
        public onRemove(item: any, index: number) {
            let _this: any = this;
            if (item) {
                MessageBox.confirm(_this.$t('components.diskFileUpload.deleteFile'), _this.$t('components.diskFileUpload.deleteFilePrompt'), {
                    confirmButtonText: _this.$t('components.diskFileUpload.true'),
                    cancelButtonText: _this.$t('components.diskFileUpload.false'),
                    type: 'warning'
                }).then(() => {
                    // 拼接url
                    const deleteUrl = '/net-disk/files/' + item.id;
                    // 发送delete请求
                    Axios.delete(deleteUrl).then((response: any) => {
                        if (!response || response.status != 200) {
                            Message.error(_this.$t('components.diskFileUpload.deleteFileFailure') + '!');
                        }
                        // 从文件列表中删除
                        this.uploadFileList.splice(index, 1);
                        // persistence=true时需要持久化表单属性
                        if (this.persistence == true) {
                            const value = JSON.stringify(this.uploadFileList);
                            this.$emit('formitemvaluechange', {name: this.formItemName, value: value});
                        }
                    }).catch((error: any) => {
                        // 提示删除失败
                        Message.error(_this.$t('components.diskFileUpload.deleteFileFailure') + ':' + error);
                    });
                });
ibizdev's avatar
ibizdev committed
590
            }
ibizdev's avatar
ibizdev committed
591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
        }

        /**
         * 批量更新文件表的ownerid
         *
         * @memberof DiskFileUpload
         */
        public updateFileBatch(files: any) {
            let _this: any = this;
            // 拼接url
            const updateUrl = '/net-disk/files/' + this.getFolder() + '?ownertype=' + this.getOwnertype() + "&ownerid=" + this.getOwnerid();
            // requestBody参数
            let requestBody = [];
            if (files) {
                requestBody = files;
ibizdev's avatar
ibizdev committed
606
            }
ibizdev's avatar
ibizdev committed
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
            // 发送post请求
            Axios.post(updateUrl, requestBody, {
                headers: {
                    "Content-Type": "application/json;charset=UTF-8"
                },
                timeout: 2000
            }).then((response: any) => {
                if (!response || response.status != 200) {
                    Message.error(_this.$t('components.diskFileUpload.updateFailure') + '!');
                    return;
                }
            }).catch((error: any) => {
                Message.error(_this.$t('components.diskFileUpload.updateFailure') + ':' + error);
            });
        }
    }
</script>
<style lang="less">
    #file-upload {
        width: auto;
        height: auto;
        border: 0px solid black;
ibizdev's avatar
ibizdev committed
629 630
    }

ibizdev's avatar
ibizdev committed
631 632 633
    #el-row {
        border: 0px solid red;
        width: 400px;
ibizdev's avatar
ibizdev committed
634 635
    }

ibizdev's avatar
ibizdev committed
636 637 638
    .withDrag {
        border: 0px solid grey;
        width: 400px;
ibizdev's avatar
ibizdev committed
639 640
    }

ibizdev's avatar
ibizdev committed
641 642 643 644 645 646 647
    .withoutDrag {
        border: 0px solid grey;
        width: 400px;
        text-align: left;
        padding-left: 0px;
        padding-top: 0px;
        margin-top: 0px;
ibizdev's avatar
ibizdev committed
648 649
    }

ibizdev's avatar
ibizdev committed
650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
    .fileList {
        width: 400px;
        border: 0px solid grey;
        margin-top: 0px;
    }

    .fileTitle {
        text-align: left;
        margin-left: 0px;
    }

    .fileTitle i {
        margin-right: 5px;
    }

    .fileMain {
        text-align: left;
        margin-left: 0px;
        margin-top: -10px;
ibizdev's avatar
ibizdev committed
669 670
    }

ibizdev's avatar
ibizdev committed
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
    .fileMain .el-link:nth-child(n+2) {
        margin-left: 10px;
    }

    .dialogDiv {
        // el-dialog头部
        .el-dialog__header {
            height: 40px;
        }

        // el-dialog面板
        .el-dialog__wrapper {
            height: 90vh;
            overflow: visible;
        }

        // el-dialog
        .el-dialog {
            height: 100%;
        }

        // el-dailog内容
        .el-dialog__body {
            height: inherit;
        }

        #fileIframe {
            height: calc(100% - 40px);
ibizdev's avatar
ibizdev committed
699 700
        }
    }
ibizdev's avatar
ibizdev committed
701

ibizdev's avatar
ibizdev committed
702
</style>