|
|
@ -3,7 +3,7 @@ |
|
|
|
<el-form :model="formData" label-suffix=":" :disabled="disabled" @submit.prevent> |
|
|
|
<el-row> |
|
|
|
<el-col :key="formIndex" v-for="(formItem, formIndex) in formHeader" |
|
|
|
:span="['text', 'date', 'textarea'].includes(formItem.type) ? 24 : 12"> |
|
|
|
:span="['text', 'date', 'textarea'].includes(formItem.type) ? 24 : 24"> |
|
|
|
<el-form-item :label="formItem.label"> |
|
|
|
<template v-if="['text', 'textarea'].includes(formItem.type)"> |
|
|
|
<el-input v-model="formData[formItem.prop]" :type="formItem.type" autosize style="width: 80%;" /> |
|
|
@ -23,7 +23,7 @@ |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-col :span="24"> |
|
|
|
<video :ref="`${formItem.prop}video`" |
|
|
|
:style="`width: ${width}px;height: ${height}px;border: 1px solid #ccc;`" autoplay playsinline |
|
|
|
v-show="!formData[formItem.prop]"></video> |
|
|
@ -84,8 +84,8 @@ export default { |
|
|
|
return { |
|
|
|
_: _, |
|
|
|
dayjs: dayjs, |
|
|
|
width: 569, |
|
|
|
height: 320, |
|
|
|
width: 1280, |
|
|
|
height: 720, |
|
|
|
} |
|
|
|
}, |
|
|
|
methods: { |
|
|
|