|
|
@ -1,7 +1,10 @@ |
|
|
|
<template> |
|
|
|
<div class="tableClass"> |
|
|
|
<el-form :model="formData" label-suffix=":" :disabled="disabled" inline> |
|
|
|
<el-form-item :label="formItem.label" :key="formIndex" v-for="(formItem, formIndex) in formHeader"> |
|
|
|
<el-form :model="formData" label-suffix=":" :disabled="disabled" inline @submit.prevent> |
|
|
|
<el-row> |
|
|
|
<el-col :key="formIndex" v-for="(formItem, formIndex) in formHeader" |
|
|
|
:span="['text', 'date'].includes(formItem.type) ? 24 : 12"> |
|
|
|
<el-form-item :label="formItem.label"> |
|
|
|
<template v-if="formItem.type === 'text'"> |
|
|
|
<el-input v-model="formData[formItem.prop]" /> |
|
|
|
</template> |
|
|
@ -11,14 +14,37 @@ |
|
|
|
:placeholder="`请选择${formItem.label}`" /> |
|
|
|
</template> |
|
|
|
<template v-else-if="formItem.type === 'photo'"> |
|
|
|
<div class="camera-capture"> |
|
|
|
<video :ref="`${formItem.prop}vedio`" autoplay playsinline></video> |
|
|
|
<div v-if="!disabled"> |
|
|
|
<el-row> |
|
|
|
<el-col :span="12"> |
|
|
|
<button @click="openVedio(formItem)">打开视频</button> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<button @click="takePhoto(formItem)">拍照</button> |
|
|
|
<canvas :ref="`${formItem.prop}canvas`" style="display: none;"></canvas> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-col :span="12"> |
|
|
|
<video :ref="`${formItem.prop}video`" style="width: 200px;height: 200px;border: 1px solid #ccc;" |
|
|
|
autoplay playsinline v-show="!formData[formItem.prop]"></video> |
|
|
|
<canvas :ref="`${formItem.prop}canvas`" width="202" height="202" style="display: none;"></canvas> |
|
|
|
<img v-if="formData[formItem.prop]" :src="formData[formItem.prop]" alt="Captured Photo" /> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
</div> |
|
|
|
<div v-else> |
|
|
|
<el-row> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-image style="width: 100px; height: 100px" :src="formData[formItem.prop]" :zoom-rate="1.2" |
|
|
|
:max-scale="7" :min-scale="0.2" :preview-src-list="[formData[formItem.prop]]" :initial-index="4" |
|
|
|
fit="cover" /> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
</el-form> |
|
|
|
</div> |
|
|
|
</template> |
|
|
@ -55,10 +81,28 @@ export default { |
|
|
|
return { |
|
|
|
_: _, |
|
|
|
dayjs: dayjs, |
|
|
|
} |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
async openVedio(formItem) { |
|
|
|
this.formData[formItem.prop] = "" |
|
|
|
let stream = await navigator.mediaDevices.getUserMedia({ |
|
|
|
video: { |
|
|
|
width: { ideal: 200 }, |
|
|
|
height: { ideal: 200 } |
|
|
|
}, |
|
|
|
|
|
|
|
}); |
|
|
|
this.$refs[`${formItem.prop}video`][0].srcObject = stream; |
|
|
|
}, |
|
|
|
takePhoto(formItem) { |
|
|
|
let video = this.$refs[`${formItem.prop}video`][0] |
|
|
|
let canvas = this.$refs[`${formItem.prop}canvas`][0] |
|
|
|
let context = canvas.getContext('2d'); |
|
|
|
context.drawImage(video, 0, 0, 202, 202); |
|
|
|
this.formData[formItem.prop] = canvas.toDataURL('image/png'); |
|
|
|
} |
|
|
|
}, |
|
|
|
methods: {}, |
|
|
|
async mounted() { }, |
|
|
|
watch: {}, |
|
|
|
computed: {} |
|
|
|