|
@ -1,12 +1,12 @@ |
|
|
<template> |
|
|
<template> |
|
|
<div class="tableClass"> |
|
|
<div class="tableClass"> |
|
|
<el-form :model="formData" label-suffix=":" :disabled="disabled" inline @submit.prevent> |
|
|
<el-form :model="formData" label-suffix=":" :disabled="disabled" @submit.prevent> |
|
|
<el-row> |
|
|
<el-row> |
|
|
<el-col :key="formIndex" v-for="(formItem, formIndex) in formHeader" |
|
|
<el-col :key="formIndex" v-for="(formItem, formIndex) in formHeader" |
|
|
:span="['text', 'date'].includes(formItem.type) ? 24 : 12"> |
|
|
:span="['text', 'date', 'textarea'].includes(formItem.type) ? 24 : 12"> |
|
|
<el-form-item :label="formItem.label"> |
|
|
<el-form-item :label="formItem.label"> |
|
|
<template v-if="formItem.type === 'text'"> |
|
|
<template v-if="['text', 'textarea'].includes(formItem.type)"> |
|
|
<el-input v-model="formData[formItem.prop]" /> |
|
|
<el-input v-model="formData[formItem.prop]" :type="formItem.type" autosize style="width: 80%;" /> |
|
|
</template> |
|
|
</template> |
|
|
<template v-else-if="formItem.type === 'date'"> |
|
|
<template v-else-if="formItem.type === 'date'"> |
|
|
<el-date-picker v-model="formData[formItem.prop]" type="date" |
|
|
<el-date-picker v-model="formData[formItem.prop]" type="date" |
|
@ -17,7 +17,7 @@ |
|
|
<div v-if="!disabled"> |
|
|
<div v-if="!disabled"> |
|
|
<el-row> |
|
|
<el-row> |
|
|
<el-col :span="12"> |
|
|
<el-col :span="12"> |
|
|
<button @click="openVedio(formItem)">打开视频</button> |
|
|
<button @click="openVedio(formItem)">打开摄像头</button> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="12"> |
|
|
<el-col :span="12"> |
|
|
<button @click="takePhoto(formItem)">拍照</button> |
|
|
<button @click="takePhoto(formItem)">拍照</button> |
|
@ -85,15 +85,23 @@ export default { |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
async openVedio(formItem) { |
|
|
async openVedio(formItem) { |
|
|
this.formData[formItem.prop] = "" |
|
|
try { |
|
|
let stream = await navigator.mediaDevices.getUserMedia({ |
|
|
this.formData[formItem.prop] = "" |
|
|
video: { |
|
|
let stream = await navigator.mediaDevices.getUserMedia({ |
|
|
width: { ideal: 200 }, |
|
|
video: { |
|
|
height: { ideal: 200 } |
|
|
width: { ideal: 200 }, |
|
|
}, |
|
|
height: { ideal: 200 } |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
}); |
|
|
}); |
|
|
this.$refs[`${formItem.prop}video`][0].srcObject = stream; |
|
|
this.$refs[`${formItem.prop}video`][0].srcObject = stream; |
|
|
|
|
|
} catch (e) { |
|
|
|
|
|
ElMessage({ |
|
|
|
|
|
type: 'error', |
|
|
|
|
|
message: '摄像头权限被禁止,请打开摄像头权限', |
|
|
|
|
|
}) |
|
|
|
|
|
return |
|
|
|
|
|
} |
|
|
}, |
|
|
}, |
|
|
takePhoto(formItem) { |
|
|
takePhoto(formItem) { |
|
|
let video = this.$refs[`${formItem.prop}video`][0] |
|
|
let video = this.$refs[`${formItem.prop}video`][0] |
|
|