Selaa lähdekoodia

fix: 修正 getById 接口路径

yusheng 3 kuukautta sitten
vanhempi
commit
65e162cce6
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/api/recordRules/index.js

+ 1 - 1
src/api/recordRules/index.js

@@ -118,7 +118,7 @@ export async function producetaskrulerecordSaveOrUpdateAndSubmit(body) {
 }
 
 export async function getById(id) {
-  const res = await request.get('/qms/recordrulesorder/getById/' + id);
+  const res = await request.get('/qms/qmsrecordrulesorder/getById/' + id);
   if (res.data.code == 0) {
     return res.data.data;
   }