Explorar el Código

超领页面生产订单查询条件调整

lxf hace 1 año
padre
commit
98e8b33418

+ 1 - 1
src/views/production/operation/lose-the-delivery/index.vue

@@ -104,7 +104,7 @@ const typeList = ref([
   },
 ]);
 const getDemandData = () => {
-  proxy.post("/productionOrder/page", { pageNum: 1, pageSize: 9999, status: "30" }).then((res) => {
+  proxy.post("/productionOrder/page", { pageNum: 1, pageSize: 9999, status: "40" }).then((res) => {
     if (res.rows && res.rows.length > 0) {
       productionOrder.value = productionOrder.value.concat(
         res.rows.map((item) => {

+ 1 - 1
src/views/production/operation/production-error/index.vue

@@ -110,7 +110,7 @@ const typeList = ref([
   },
 ]);
 const getDemandData = () => {
-  proxy.post("/productionOrder/page", { pageNum: 1, pageSize: 9999, status: "30" }).then((res) => {
+  proxy.post("/productionOrder/page", { pageNum: 1, pageSize: 9999 }).then((res) => {
     if (res.rows && res.rows.length > 0) {
       productionOrder.value = productionOrder.value.concat(
         res.rows.map((item) => {

+ 1 - 1
src/views/production/operation/supplementary-order/index.vue

@@ -118,7 +118,7 @@ const typeList = ref([
   },
 ]);
 const getDemandData = () => {
-  proxy.post("/productionOrder/page", { pageNum: 1, pageSize: 9999, status: "30" }).then((res) => {
+  proxy.post("/productionOrder/page", { pageNum: 1, pageSize: 9999, status: "40" }).then((res) => {
     if (res.rows && res.rows.length > 0) {
       productionOrder.value = productionOrder.value.concat(
         res.rows.map((item) => {