|
@@ -156,7 +156,7 @@ const tableColumn = ref([
|
|
|
{ key: 'proposedPosition', name: '拟用部位' },
|
|
|
{ key: 'representativeCount', name: '代表数量', align: 'center' },
|
|
|
{ key: 'userName', name: '取样人', align: 'center' },
|
|
|
- { key: 'no-key', name: '待测时间', align: 'center' },
|
|
|
+ { key: 'ctestTime', name: '待测时间', align: 'center' },
|
|
|
{ key: 'action', name: '操作', width: 150, align: 'center' },
|
|
|
])
|
|
|
const tableData = ref([])
|
|
@@ -217,7 +217,7 @@ const rowActionSave = async () => {
|
|
|
if (!isForm) return
|
|
|
saveLoading.value = true
|
|
|
const { id, expCount } = formModel.value
|
|
|
- let form = { id, expCount, sampleStatus: 4 }
|
|
|
+ let form = { id, expCount }
|
|
|
const { error, code, msg } = await mainApi.update(form)
|
|
|
saveLoading.value = false
|
|
|
if (!error && code === 200) {
|