Browse Source

feature/委外加c参数

dy 10 months ago
parent
commit
09c93b21ef
2 changed files with 4 additions and 1 deletions
  1. 1 1
      .env.development
  2. 3 0
      src/views/pro-operation/appoint-out/record.vue

+ 1 - 1
.env.development

@@ -11,7 +11,7 @@ VITE_APP_BASE_API = '/dev-api'
 VITE_APP_UPLOAD_URL = 'http://192.168.101.4:9000'
 
 # 开发接口地址
-VITE_APP_API_URL = 'http://192.168.101.4:8079'
+VITE_APP_API_URL = 'http://192.168.0.107:8079'
 # Websocket地址
 VITE_WEBSOCKET_URL = 'ws://192.168.101.4:8079'
 ``

+ 3 - 0
src/views/pro-operation/appoint-out/record.vue

@@ -49,7 +49,9 @@ import {
 } from "@/api/process/appointOut";
 import { useDictionaryStore } from "@/store";
 import ConfirmMessage from "@/components/CommonDialogs/ConfirmMessage.vue";
+import { useProcessStore } from "@/store";
 
+const store = useProcessStore();
 const dictS = useDictionaryStore();
 
 const page = reactive({
@@ -103,6 +105,7 @@ const getData = () => {
   appointRecord({
     pageNo: page.pageNo,
     pageSize: page.pageSize,
+    operationId: store.odersData.operationId,
   }).then((res) => {
     console.log(res);
     tableData.value = res.data.records;