|
@@ -0,0 +1,617 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="form global-form">
|
|
|
|
+ <el-form
|
|
|
|
+ class="form-list"
|
|
|
|
+ :model="formData"
|
|
|
|
+ :rules="rules"
|
|
|
|
+ ref="ruleForm"
|
|
|
|
+ :label-width="labelWidth"
|
|
|
|
+ :label-position="labelPosition">
|
|
|
|
+ <el-form-item
|
|
|
|
+ v-for="item in comFormConfig"
|
|
|
|
+ :label="$t(item.label) + ':'"
|
|
|
|
+ :prop="item.prop"
|
|
|
|
+ :key="item.label">
|
|
|
|
+ <!-- 输入框 -->
|
|
|
|
+ <el-input
|
|
|
|
+ v-if="item.type === 'input'"
|
|
|
|
+ v-model="formData[item.prop]"
|
|
|
|
+ :disabled="item.disabled"
|
|
|
|
+ :style="{ width: item.width }"
|
|
|
|
+ @change="item.change && item.change(formData[item.prop])"
|
|
|
|
+ :placeholder="item.placeholder ? $t(item.placeholder) : ''"
|
|
|
|
+ clearable
|
|
|
|
+ :type="item.inputType">
|
|
|
|
+ </el-input>
|
|
|
|
+
|
|
|
|
+ <!-- 密码框 -->
|
|
|
|
+ <el-input
|
|
|
|
+ v-if="item.type === 'password'"
|
|
|
|
+ type="password"
|
|
|
|
+ v-model="formData[item.prop]"
|
|
|
|
+ autocomplete="off"
|
|
|
|
+ :style="{ width: item.width }"
|
|
|
|
+ @change="item.change && item.change(formData[item.prop])"
|
|
|
|
+ clearable
|
|
|
|
+ show-password>
|
|
|
|
+ </el-input>
|
|
|
|
+
|
|
|
|
+ <!-- 文本域 -->
|
|
|
|
+ <el-input
|
|
|
|
+ v-if="item.type === 'textarea'"
|
|
|
|
+ type="textarea"
|
|
|
|
+ v-model="formData[item.prop]"
|
|
|
|
+ :disabled="item.disabled"
|
|
|
|
+ :style="{ width: item.width }"
|
|
|
|
+ :maxlength="item.maxlength"
|
|
|
|
+ :rows="item.rows || 5"
|
|
|
|
+ :show-word-limit="item.showWordLimit"
|
|
|
|
+ @change="item.change && item.change(formData[item.prop])"
|
|
|
|
+ :placeholder="item.placeholder ? $t(item.placeholder) : ''">
|
|
|
|
+ </el-input>
|
|
|
|
+
|
|
|
|
+ <!-- 下拉框 -->
|
|
|
|
+ <el-select
|
|
|
|
+ v-if="item.type === 'select'"
|
|
|
|
+ v-model="formData[item.prop]"
|
|
|
|
+ :disabled="item.disabled"
|
|
|
|
+ :style="{ width: item.width }"
|
|
|
|
+ @change="item.change && item.change(formData[item.prop])"
|
|
|
|
+ clearable
|
|
|
|
+ filterable
|
|
|
|
+ :multiple="item.multiple">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="option in item.selectList"
|
|
|
|
+ :label="
|
|
|
|
+ option[item.opt_label] || option.name || option.product_code
|
|
|
|
+ "
|
|
|
|
+ :value="option[item.opt_value] || option.id"
|
|
|
|
+ :key="parseInt(option.id)">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+
|
|
|
|
+ <!-- 下拉框: selectList为obj类型-->
|
|
|
|
+ <el-select
|
|
|
|
+ v-if="item.type === 'selectObj'"
|
|
|
|
+ v-model="formData[item.prop]"
|
|
|
|
+ :disabled="item.disabled"
|
|
|
|
+ :style="{ width: item.width }"
|
|
|
|
+ @change="item.change && item.change(formData[item.prop])"
|
|
|
|
+ filterable
|
|
|
|
+ clearable
|
|
|
|
+ :multiple="item.multiple">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="(option, key) in item.selectList"
|
|
|
|
+ :key="parseInt(key)"
|
|
|
|
+ :label="option"
|
|
|
|
+ :value="parseInt(key)">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+
|
|
|
|
+ <!-- 单选框 -->
|
|
|
|
+ <el-radio-group
|
|
|
|
+ v-if="item.type === 'radio'"
|
|
|
|
+ v-model="formData[item.prop]"
|
|
|
|
+ :disabled="item.disabled"
|
|
|
|
+ @change="item.change && item.change(formData[item.prop])">
|
|
|
|
+ <el-radio
|
|
|
|
+ v-for="radio in item.radios"
|
|
|
|
+ :label="radio.label"
|
|
|
|
+ :key="radio.label">
|
|
|
|
+ {{ radio.name }}
|
|
|
|
+ </el-radio>
|
|
|
|
+ </el-radio-group>
|
|
|
|
+
|
|
|
|
+ <!-- 复选框 -->
|
|
|
|
+ <el-checkbox-group
|
|
|
|
+ v-if="item.type === 'checkbox'"
|
|
|
|
+ v-model="formData[item.prop]"
|
|
|
|
+ :disabled="item.disabled"
|
|
|
|
+ @change="item.change && item.change(formData[item.prop])">
|
|
|
|
+ <el-checkbox
|
|
|
|
+ v-for="checkbox in item.checkboxs"
|
|
|
|
+ :label="checkbox.label"
|
|
|
|
+ :key="checkbox.label"></el-checkbox>
|
|
|
|
+ </el-checkbox-group>
|
|
|
|
+
|
|
|
|
+ <!-- 开关 -->
|
|
|
|
+ <el-switch
|
|
|
|
+ v-if="item.type === 'switch'"
|
|
|
|
+ v-model="formData[item.prop]"
|
|
|
|
+ :disabled="item.disabled"
|
|
|
|
+ :active-value="item.valBoolean?1:true"
|
|
|
|
+ :inactive-value="item.valBoolean?0:false"
|
|
|
|
+ @change="item.change && item.change(formData[item.prop])"></el-switch>
|
|
|
|
+ <!-- 上传图片 -->
|
|
|
|
+ <el-upload
|
|
|
|
+ v-if="item.type === 'uploadImg'"
|
|
|
|
+ ref="pictureUpload"
|
|
|
|
+ action=""
|
|
|
|
+ drag
|
|
|
|
+ accept=".jpg,.png,.jpeg"
|
|
|
|
+ class="avatar-uploader"
|
|
|
|
+ :multiple="false"
|
|
|
|
+ :show-file-list="false"
|
|
|
|
+ :before-upload="beforeUpload"
|
|
|
|
+ :on-change="
|
|
|
|
+ (file, fileList) => {
|
|
|
|
+ handleUpload(file, fileList, item.prop, item)
|
|
|
|
+ }
|
|
|
|
+ ">
|
|
|
|
+ <div
|
|
|
|
+ v-if="formData[item.prop] && !imgUploadFlag"
|
|
|
|
+ class="avatar-div">
|
|
|
|
+ <el-image
|
|
|
|
+ :src="formData[item.prop]"
|
|
|
|
+ class="avatar-img"></el-image>
|
|
|
|
+ </div>
|
|
|
|
+ <el-progress
|
|
|
|
+ v-else-if="imgUploadFlag"
|
|
|
|
+ type="circle"
|
|
|
|
+ :percentage="imgUploadPercent"></el-progress>
|
|
|
|
+ <i
|
|
|
|
+ v-else
|
|
|
|
+ class="el-icon-plus avatar-uploader-icon"></i>
|
|
|
|
+ </el-upload>
|
|
|
|
+
|
|
|
|
+ <!-- 多图上传 -->
|
|
|
|
+ <el-upload
|
|
|
|
+ v-if="item.type === 'uploadLimitImg'"
|
|
|
|
+ ref="pictureUpload"
|
|
|
|
+ :limit="item.limit ? item.limit : 1"
|
|
|
|
+ action=""
|
|
|
|
+ drag
|
|
|
|
+ accept=".jpg,.png,.jpeg"
|
|
|
|
+ class="avatar-uploader"
|
|
|
|
+ list-type="picture-card"
|
|
|
|
+ :auto-upload="false"
|
|
|
|
+ :on-change="
|
|
|
|
+ (file, fileList) => {
|
|
|
|
+ handleUpload(file, fileList, item.prop, item)
|
|
|
|
+ }
|
|
|
|
+ ">
|
|
|
|
+ <i
|
|
|
|
+ slot="default"
|
|
|
|
+ class="el-icon-plus"></i>
|
|
|
|
+ <div
|
|
|
|
+ slot="file"
|
|
|
|
+ slot-scope="{ file }"
|
|
|
|
+ v-if="formData[item.prop]"
|
|
|
|
+ class="avatar-div">
|
|
|
|
+ <img
|
|
|
|
+ class="el-upload-list__item-thumbnail"
|
|
|
|
+ :src="file.url"
|
|
|
|
+ alt="" />
|
|
|
|
+ <span class="el-upload-list__item-actions">
|
|
|
|
+ <span
|
|
|
|
+ class="el-upload-list__item-preview"
|
|
|
|
+ @click="handlePictureCardPreview(file)">
|
|
|
|
+ <i class="el-icon-zoom-in"></i>
|
|
|
|
+ </span>
|
|
|
|
+ <span
|
|
|
|
+ class="el-upload-list__item-delete"
|
|
|
|
+ @click="handleRemove(file, item.prop)">
|
|
|
|
+ <i class="el-icon-delete"></i>
|
|
|
|
+ </span>
|
|
|
|
+ </span>
|
|
|
|
+ </div>
|
|
|
|
+ </el-upload>
|
|
|
|
+ <!-- 文件上传 -->
|
|
|
|
+ <el-upload
|
|
|
|
+ v-if="item.type === 'uploadFile'"
|
|
|
|
+ ref="fileUpload"
|
|
|
|
+ :limit="item.limit ? item.limit : 1"
|
|
|
|
+ action=""
|
|
|
|
+ drag
|
|
|
|
+ :accept="item.accept ? item.accept : ''"
|
|
|
|
+ :file-list="files"
|
|
|
|
+ :auto-upload="false"
|
|
|
|
+ :on-change="
|
|
|
|
+ (file, fileList) => {
|
|
|
|
+ handleUploadFile(file, fileList, item.prop, item)
|
|
|
|
+ }
|
|
|
|
+ "
|
|
|
|
+ :on-remove="
|
|
|
|
+ (file, fileList) => {
|
|
|
|
+ handleRemoveFile(file, fileList, item.prop, item)
|
|
|
|
+ }
|
|
|
|
+ ">
|
|
|
|
+ <i class="el-icon-upload"></i>
|
|
|
|
+ <div class="el-upload__text">
|
|
|
|
+ 将文件拖到此处,或<em>点击上传</em>
|
|
|
|
+ <p>{{ item.fileTip }}</p>
|
|
|
|
+ </div>
|
|
|
|
+ </el-upload>
|
|
|
|
+ <el-upload
|
|
|
|
+ v-if="item.type === 'fileUpload'"
|
|
|
|
+ class="uploader"
|
|
|
|
+ action
|
|
|
|
+ drag
|
|
|
|
+ :limit="item.limit ? item.limit : 1"
|
|
|
|
+ :file-list="files"
|
|
|
|
+ :accept="item.accept ? item.accept : ''"
|
|
|
|
+ :auto-upload="false"
|
|
|
|
+ :on-change="
|
|
|
|
+ (file, fileList) => {
|
|
|
|
+ handleUploadFile(file, fileList, item.prop, item)
|
|
|
|
+ }
|
|
|
|
+ "
|
|
|
|
+ :on-remove="
|
|
|
|
+ (file, fileList) => {
|
|
|
|
+ handleRemoveFile(file, fileList, item.prop, item)
|
|
|
|
+ }
|
|
|
|
+ ">
|
|
|
|
+ <el-button
|
|
|
|
+ size="small"
|
|
|
|
+ icon="el-icon-upload2"
|
|
|
|
+ class="upload-btn">
|
|
|
|
+ 上传文件
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-upload>
|
|
|
|
+
|
|
|
|
+ <!-- 上传视频 -->
|
|
|
|
+ <el-upload
|
|
|
|
+ v-if="item.type === 'uploadVideo'"
|
|
|
|
+ class="uploader"
|
|
|
|
+ action
|
|
|
|
+ drag
|
|
|
|
+ accept=".mp4"
|
|
|
|
+ :auto-upload="false"
|
|
|
|
+ :show-file-list="false"
|
|
|
|
+ :before-upload="beforeVideoUpload"
|
|
|
|
+ :on-change="
|
|
|
|
+ (file, fileList) => {
|
|
|
|
+ handleUploadVideo(file, fileList, item.prop, item)
|
|
|
|
+ }
|
|
|
|
+ ">
|
|
|
|
+ <div v-if="formData[item.prop] != '' && !videoFlag" class="video-container">
|
|
|
|
+ <video
|
|
|
|
+ :src="formData[item.prop]"
|
|
|
|
+ class="avatar video-avatar"
|
|
|
|
+ controls="controls">
|
|
|
|
+ 您的浏览器不支持视频播放
|
|
|
|
+ </video>
|
|
|
|
+ <i
|
|
|
|
+ class="el-icon-delete video-delete-icon" @click.stop="handleDeleteVideo(item.prop)"></i>
|
|
|
|
+ </div>
|
|
|
|
+ <i
|
|
|
|
+ v-else-if="formData[item.prop] == '' && !videoFlag"
|
|
|
|
+ class="el-icon-plus avatar-uploader-icon video-icon"></i>
|
|
|
|
+ <el-progress
|
|
|
|
+ v-if="videoFlag == true"
|
|
|
|
+ type="circle"
|
|
|
|
+ :percentage="videoUploadPercent"
|
|
|
|
+ style="margin-top: 30px"></el-progress>
|
|
|
|
+
|
|
|
|
+ <div
|
|
|
|
+ slot="tip"
|
|
|
|
+ class="el-upload__tip">
|
|
|
|
+ {{ $t('text_attention') }}
|
|
|
|
+ <p>1、{{ $t('video_attention') }}</p>
|
|
|
|
+ <p>2、{{ $t('video_attention2') }}</p>
|
|
|
|
+ <p>3、{{ $t('video_attention3') }}</p>
|
|
|
|
+ </div>
|
|
|
|
+ </el-upload>
|
|
|
|
+
|
|
|
|
+ <!-- 级联 -->
|
|
|
|
+ <el-cascader
|
|
|
|
+ v-if="item.type === 'cascader'"
|
|
|
|
+ size="large"
|
|
|
|
+ v-model="formData[item.prop]"
|
|
|
|
+ :props="{ value: 'id', label: 'name', children: 'child',...item.multiple }"
|
|
|
|
+ :show-all-levels="item.showAllLevel"
|
|
|
|
+ :options="item.options"
|
|
|
|
+ :style="{ width: (item.width ? item.width : 400)+'px' }"
|
|
|
|
+ @change="item.change && item.change(formData[item.prop])"
|
|
|
|
+ clearable>
|
|
|
|
+ </el-cascader>
|
|
|
|
+
|
|
|
|
+ <!-- table -->
|
|
|
|
+ <input-table
|
|
|
|
+ v-if="item.type === 'input_table'"
|
|
|
|
+ :operateWith="'90%'"
|
|
|
|
+ :tableData="formData[item.prop]"
|
|
|
|
+ :tableColumns="item.columns"
|
|
|
|
+ :handleShow="item.handleShow">
|
|
|
|
+ </input-table>
|
|
|
|
+ <!-- 富文本 -->
|
|
|
|
+ <tinymce
|
|
|
|
+ v-if="item.type === 'tinymce'"
|
|
|
|
+ v-model="formData[item.prop]"
|
|
|
|
+ :height="item.height"
|
|
|
|
+ :width="item.width"
|
|
|
|
+ style="display: inline-block" />
|
|
|
|
+
|
|
|
|
+ <!-- 插槽 -->
|
|
|
|
+ <template v-if="item.type === 'slot'">
|
|
|
|
+ <slot :name="item.slotName"></slot>
|
|
|
|
+ </template>
|
|
|
|
+ <label
|
|
|
|
+ class="right-tip"
|
|
|
|
+ v-if="item.right_tip"
|
|
|
|
+ >{{ item.right_tip }}</label
|
|
|
|
+ >
|
|
|
|
+ <p
|
|
|
|
+ class="bottom-tip"
|
|
|
|
+ v-if="item.tip">
|
|
|
|
+ {{ $t(item.tip) }}
|
|
|
|
+ </p>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <slot name="status"></slot>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
|
|
+ <div
|
|
|
|
+ :class="centerPos ? 'submit-btn' : 'rightPos'"
|
|
|
|
+ v-if="isShow">
|
|
|
|
+ <el-button
|
|
|
|
+ type="primary"
|
|
|
|
+ v-debounce="submit"
|
|
|
|
+ :loading="submitLoading">
|
|
|
|
+ {{ $t('btn_submit') }}
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button @click.native="close">{{ $t('btn_cancel') }}</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ <el-dialog :visible.sync="dialogVisible">
|
|
|
|
+ <img
|
|
|
|
+ width="100%"
|
|
|
|
+ :src="dialogImageUrl"
|
|
|
|
+ alt="" />
|
|
|
|
+ </el-dialog>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import { common } from '@/api'
|
|
|
|
+import InputTable from '@/components/InputTable'
|
|
|
|
+import Tinymce from '@/components/Tinymce'
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ name: 'GlobalForm',
|
|
|
|
+ components: { InputTable, Tinymce },
|
|
|
|
+ props: {
|
|
|
|
+ isShow: {
|
|
|
|
+ type: Boolean,
|
|
|
|
+ default: true,
|
|
|
|
+ },
|
|
|
|
+ // 表单域标签的宽度
|
|
|
|
+ labelWidth: {
|
|
|
|
+ type: String,
|
|
|
|
+ default: '180px',
|
|
|
|
+ },
|
|
|
|
+ // 表单域标签的位置
|
|
|
|
+ labelPosition: {
|
|
|
|
+ type: String,
|
|
|
|
+ default: 'right',
|
|
|
|
+ },
|
|
|
|
+ // 表单配置
|
|
|
|
+ formConfig: {
|
|
|
|
+ type: Array,
|
|
|
|
+ required: true,
|
|
|
|
+ },
|
|
|
|
+ // 表单数据
|
|
|
|
+ formData: {
|
|
|
|
+ type: Object,
|
|
|
|
+ required: true,
|
|
|
|
+ },
|
|
|
|
+ // 表单规则
|
|
|
|
+ rules: {
|
|
|
|
+ type: Object,
|
|
|
|
+ },
|
|
|
|
+ // 级联数据
|
|
|
|
+ options: {
|
|
|
|
+ type: Array,
|
|
|
|
+ },
|
|
|
|
+ submitLoading: {
|
|
|
|
+ type: Boolean,
|
|
|
|
+ },
|
|
|
|
+ listLoading: {
|
|
|
|
+ type: Boolean,
|
|
|
|
+ },
|
|
|
|
+ filesList: {
|
|
|
|
+ type: Array,
|
|
|
|
+ },
|
|
|
|
+ centerPos: {
|
|
|
|
+ type: Boolean,
|
|
|
|
+ default: true,
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ files: [],
|
|
|
|
+ dialogImageUrl: '',
|
|
|
|
+ dialogVisible: false,
|
|
|
|
+ imgUploadFlag: false, // 是否显示进度条
|
|
|
|
+ imgUploadPercent: 0, // 进度条进度
|
|
|
|
+ videoFlag: false, // 是否显示进度条
|
|
|
|
+ videoUploadPercent: 0, // 进度条进度
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ computed:{
|
|
|
|
+ comFormConfig(){
|
|
|
|
+ return this.formConfig.filter(item => item.isShow === undefined || item.isShow === true)
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ watch: {
|
|
|
|
+ filesList(newValue) {
|
|
|
|
+ this.files = newValue
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ beforeUpload(file) {
|
|
|
|
+ // 压缩生效,但上传没生效
|
|
|
|
+ return this.$protoImgCompress(file)
|
|
|
|
+ },
|
|
|
|
+ handleUpload(file, fileList, key, item) {
|
|
|
|
+ // 新增筛选代码
|
|
|
|
+ if (file.status !== 'ready') return
|
|
|
|
+ let interval = null
|
|
|
|
+ if (file.status === 'ready') {
|
|
|
|
+ this.imgUploadFlag = true
|
|
|
|
+ interval = setInterval(() => {
|
|
|
|
+ if (this.imgUploadPercent >= 99) {
|
|
|
|
+ clearInterval(interval)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ this.imgUploadPercent += 1 // 进度条进度
|
|
|
|
+ }, 200)
|
|
|
|
+ }
|
|
|
|
+ const formData = new FormData()
|
|
|
|
+ formData.append('file', file.raw)
|
|
|
|
+ formData.append('type', item.paramsType?item.paramsType:1)
|
|
|
|
+ common
|
|
|
|
+ .imagesUpload(formData)
|
|
|
|
+ .then((response) => {
|
|
|
|
+ if (response.result.code === 200) {
|
|
|
|
+ // 进度条恢复到初始状态
|
|
|
|
+ this.imgUploadPercent = 100
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ this.imgUploadFlag = false
|
|
|
|
+ this.imgUploadPercent = 0
|
|
|
|
+ }, 500)
|
|
|
|
+ this.$set(this.formData, key, response.result.data)
|
|
|
|
+ } else {
|
|
|
|
+ this.$message({
|
|
|
|
+ message: response.result.message,
|
|
|
|
+ type: 'error',
|
|
|
|
+ duration: 3000,
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ .catch((error) => {
|
|
|
|
+ this.imgUploadFlag = false
|
|
|
|
+ this.imgUploadPercent = 0
|
|
|
|
+ clearInterval(interval)
|
|
|
|
+ this.$message.error(error.response.data.msg)
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ handleUploadFile(file, fileList, key, item) {
|
|
|
|
+ // 新增筛选代码
|
|
|
|
+ this.fileList = []
|
|
|
|
+ const formData = new FormData()
|
|
|
|
+ formData.append('file', file.raw)
|
|
|
|
+ formData.append('type', 3)
|
|
|
|
+ common
|
|
|
|
+ .imagesUpload(formData)
|
|
|
|
+ .then((response) => {
|
|
|
|
+ if (response.result.code === 200) {
|
|
|
|
+ this.$message({
|
|
|
|
+ message: '文件上传成功!',
|
|
|
|
+ type: 'success',
|
|
|
|
+ duration: 3000,
|
|
|
|
+ })
|
|
|
|
+ this.$set(this.formData, key, response.result.data)
|
|
|
|
+ this.$emit('changeFileList', this.files)
|
|
|
|
+ if (file.status !== 'ready') return
|
|
|
|
+ this.files.push(file)
|
|
|
|
+ } else {
|
|
|
|
+ this.$message({
|
|
|
|
+ message: response.result.message,
|
|
|
|
+ type: 'error',
|
|
|
|
+ duration: 3000,
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ .catch((error) => {
|
|
|
|
+ this.$message.error(error.response.data.msg)
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ beforeVideoUpload(file) {
|
|
|
|
+ const isMp4 = file.type === 'video/mp4'
|
|
|
|
+ // 限制文件最大不能超过 500MB
|
|
|
|
+ const isLt500M = file.size / 1024 / 1024 < 500
|
|
|
|
+
|
|
|
|
+ if (!isMp4) {
|
|
|
|
+ this.$message.error('视频只能是mp4格式!')
|
|
|
|
+ return false
|
|
|
|
+ }
|
|
|
|
+ if (!isLt500M) {
|
|
|
|
+ this.$message.error('上传头像图片大小不能超过 500MB!')
|
|
|
|
+ return false
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ handleUploadVideo(file, fileList, key, item) {
|
|
|
|
+ // 新增筛选代码
|
|
|
|
+ if (file.status === 'ready') {
|
|
|
|
+ this.videoFlag = true
|
|
|
|
+ this.videoUploadPercent = 0
|
|
|
|
+ const interval = setInterval(() => {
|
|
|
|
+ if (this.videoUploadPercent >= 99) {
|
|
|
|
+ clearInterval(interval)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ this.videoUploadPercent += 1 // 进度条进度
|
|
|
|
+ }, 200)
|
|
|
|
+ }
|
|
|
|
+ const formData = new FormData()
|
|
|
|
+ formData.append('file', file.raw)
|
|
|
|
+ formData.append('type', 2)
|
|
|
|
+ common
|
|
|
|
+ .imagesUpload(formData)
|
|
|
|
+ .then((response) => {
|
|
|
|
+ if (response.result.code === 200) {
|
|
|
|
+ // 进度条恢复到初始状态
|
|
|
|
+ this.videoFlag = false
|
|
|
|
+ this.videoUploadPercent = 0
|
|
|
|
+ this.$set(this.formData, key, response.result.data)
|
|
|
|
+ } else {
|
|
|
|
+ this.$message({
|
|
|
|
+ message: response.result.message,
|
|
|
|
+ type: 'error',
|
|
|
|
+ duration: 3000,
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ .catch((error) => {
|
|
|
|
+ this.$message.error(error.response.data.msg)
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ handleRemoveFile(file, fileList, key, item) {
|
|
|
|
+ this.$set(this.formData, key, '')
|
|
|
|
+ this.files = []
|
|
|
|
+ this.$emit('changeFileList', this.files)
|
|
|
|
+ },
|
|
|
|
+ handlePictureCardPreview(file) {
|
|
|
|
+ this.dialogImageUrl = file.url
|
|
|
|
+ this.dialogVisible = true
|
|
|
|
+ },
|
|
|
|
+ handleRemove(file, key) {
|
|
|
|
+ this.$refs.pictureUpload[0].handleRemove(file)
|
|
|
|
+ this.$set(this.formData, key, '')
|
|
|
|
+ },
|
|
|
|
+ submit() {
|
|
|
|
+ this.$refs.ruleForm.validate((valid) => {
|
|
|
|
+ if (valid) {
|
|
|
|
+ this.$emit('handleSubmit')
|
|
|
|
+ } else {
|
|
|
|
+ console.log('error submit!!')
|
|
|
|
+ return false
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ close() {
|
|
|
|
+ this.$emit('handleClose')
|
|
|
|
+ this.$refs.ruleForm.resetFields()
|
|
|
|
+ },
|
|
|
|
+ handleDeleteVideo(prop) {
|
|
|
|
+ this.formData[prop] = '';
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+}
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<style scoped>
|
|
|
|
+.video-container {
|
|
|
|
+ position: relative;
|
|
|
|
+ display: inline-block;
|
|
|
|
+}
|
|
|
|
+.video-delete-icon {
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 10px;
|
|
|
|
+ right: 10px;
|
|
|
|
+ color: red;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+}
|
|
|
|
+</style>
|