-
+
@@ -24,7 +24,7 @@
@@ -35,6 +35,12 @@
+
+
+ 未推送
+ 已推送
+
+
@@ -58,6 +64,7 @@ import {
apiOpurchaseclassLists,
apiOpurchaseclassDelete,
apiOpurchaseclassDetail,
+ apiOpurchaseinfoListList
} from "@/api/opurchaseclass";
import { useRoute } from "vue-router";
import subOrder from "./component/subOrder.vue";
@@ -95,4 +102,16 @@ const tabChange = (type: any) => {
if (type == "notPushedGoods") noPushRef.value?.getLists();
}
};
+
+// 查询条件
+const queryParams = reactive({
+ id: route.query.id,
+})
+
+// 分页相关
+const { pager, getLists, resetParams, resetPage } = usePaging({
+ fetchFun: apiOpurchaseinfoListList,
+ params: queryParams
+})
+getLists()