diff --git a/src/api/api/view.ts b/src/api/api/view.ts index e4d3f98..c25eb8b 100644 --- a/src/api/api/view.ts +++ b/src/api/api/view.ts @@ -35,6 +35,16 @@ export async function updateBatchById2(params) { }); return result; } + +//试验号变更-保存视图编辑的内容 +export async function updateBatchById3(params) { + let result = {}; + await http.post('/api/View/UpdateBatchById3', params).then((data) => { + result = data; + }); + return result; +} + //获取物理视图 export async function GetMaterialInfoListByTeamId(params) { let result = {}; diff --git a/src/views/half/components/EditView.vue b/src/views/half/components/EditView.vue index 68ca7a7..3956377 100644 --- a/src/views/half/components/EditView.vue +++ b/src/views/half/components/EditView.vue @@ -1,6 +1,6 @@