提交对接的接口

This commit is contained in:
Digo
2025-12-26 00:34:12 +08:00
parent dbe9c5bbb1
commit ebb9ac4ac0
4 changed files with 93 additions and 91 deletions

View File

@@ -33,7 +33,7 @@
<script setup>
import { ref, reactive } from 'vue'
import { ElMessage } from 'element-plus'
// import { updateVideoIdentification } from '@/api/identification.js'
import { updateVideoIdentification } from '@/api/identification.js'
const emit = defineEmits([ 'close' ])
const props = defineProps({
@@ -227,10 +227,10 @@ const submit = () => {
...model,
illegalType: model.illegalType.join(',')
}
// updateVideoIdentification(params).then(res => {
// ElMessage.success(res.msg)
// emit('close', true)
// })
updateVideoIdentification(params).then(res => {
ElMessage.success(res.msg)
emit('close', true)
})
}