Browse Source

修改 质控接口

yuwandanmian 1 year ago
parent
commit
6dbed2d364
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/views/allcase/caseControl.vue
  2. 1 1
      src/views/allcase/caseViews.vue

+ 1 - 1
src/views/allcase/caseControl.vue

@@ -26,7 +26,7 @@ import CaseQualityBox from './components/CaseQualityBox2.vue';
         const params = {
           id: Number(this.$route.query.id),
         };
-        this.$axios.post('/get_case_quality', params).then(res => {
+        this.$axios2.post('/get_case_quality', params).then(res => {
           this.data = res.data;
         });
       }

+ 1 - 1
src/views/allcase/caseViews.vue

@@ -270,7 +270,7 @@ export default {
       const params = {
         id: Number(this.valData),
       };
-      this.$axios.post('/get_case_quality', params).then(res => {
+      this.$axios2.post('/get_case_quality', params).then(res => {
         this.results = res.data;
       });
     },