|
@@ -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;
|