duy 1 týždeň pred
rodič
commit
1fcb6e10a8
1 zmenil súbory, kde vykonal 12 pridanie a 3 odobranie
  1. 12 3
      src/api/modules/data-fill/query.js

+ 12 - 3
src/api/modules/data-fill/query.js

@@ -164,12 +164,21 @@ export default {
         })
     },
     //重置文件题名
+
+    //预览文件题名接口
+    async previewNodeName(form) {
+        return HcApi({
+            url: '/api/blade-business/informationWriteQuery/previewNodeName',
+            method: 'get',
+            params: form,
+        })
+    },
+        //文件题名确认修改接口
     async flushQueryName(form) {
         return HcApi({
-            url: '/api/blade-business/informationWriteQuery/flushQueryName',
+            url: '/api/blade-business/informationWriteQuery/flushQueryName ',
             method: 'post',
-            params: form,
+            data: form,
         })
     },
-
 }