|
@@ -306,9 +306,8 @@ const editClick = () => {
|
|
|
const editLoading = ref(false)
|
|
|
const editModalSave = async () => {
|
|
|
editLoading.value = true
|
|
|
- const { error, code } = await scanApi.updateScanFile({
|
|
|
- list: tableEditData.value,
|
|
|
- }, false)
|
|
|
+ const { error, code } = await scanApi.updateScanFile(
|
|
|
+ tableEditData.value)
|
|
|
//判断状态
|
|
|
editLoading.value = false
|
|
|
if (!error && code === 200) {
|