雷神教育集团
2026-03-06 75c4ed0d3c640e66bc95dc170de52b753629e3ed
ÏîÄ¿´úÂë/WCS/WCSClient/src/views/PackInfo/packaxis.vue
@@ -1,6 +1,21 @@
<template>
  <view-grid
<<<<<<< HEAD
    ref="grid"
    :columns="columns"
    :detail="detail"
    :editFormFields="editFormFields"
    :editFormOptions="editFormOptions"
    :searchFormFields="searchFormFields"
    :searchFormOptions="searchFormOptions"
    :table="table"
    :extend="extend"
  >
  </view-grid>
</template>
  <script>
=======
      ref="grid"
      :columns="columns"
      :detail="detail"
@@ -14,6 +29,7 @@
  </view-grid>
</template>
<script>
>>>>>>> main
import extend from "@/extension/PackInfo/packaxis.js";
import { ref, defineComponent } from "vue";
export default defineComponent({
@@ -26,6 +42,41 @@
      url: "/Packaxis/",
      sortName: "CreateDate",
    });
<<<<<<< HEAD
    const editFormFields = ref({});
    const editFormOptions = ref([]);
    const searchFormFields = ref({
    });
    const searchFormOptions = ref([
      [
        { title: "任务号", field: "taskNum", type: "int" },
        { title: "托盘编号", field: "palletCode", type: "like" },
        {
          title: "任务类型",
          field: "taskType",
          type: "selectList",
          dataKey: "taskType",
          data: [],
        },
        {
          title: "任务状态",
          field: "taskState",
          type: "selectList",
          dataKey: "taskState",
          data: [],
        },
      ],
      [
        { title: "起始地址", field: "sourceAddress", type: "like" },
        { title: "目标地址", field: "targetAddress", type: "like" },
        { title: "当前位置", field: "currentAddress", type: "like" },
        { title: "下一位置", field: "nextAddress", type: "like" },
      ],
      [
        { title: "巷道号", field: "roadway", type: "like", type: "select",dataKey: "Stacker",data: [],},
        { title: "创建人", field: "creater", type: "like" },
=======
    const editFormFields = ref({
      deviceCode:"",
      stationCode:"",
@@ -231,6 +282,7 @@
          field: "axisZCount",
          type: "like",
        },
>>>>>>> main
        { title: "创建时间", field: "createDate", type: "datetime" },
      ],
    ]);
@@ -248,10 +300,16 @@
      {
        field: "deviceCode",
        title: "设备编号",
<<<<<<< HEAD
        type: "int",
        width: 90,
        align: "left",
=======
        type: "string",
        width: 90,
        align: "left",
        bind: {key:"deviceCodes",data: []}
>>>>>>> main
      },
      {
        field: "stationCode",
@@ -259,15 +317,24 @@
        type: "string",
        width: 200,
        align: "left",
<<<<<<< HEAD
=======
        bind: {key:"stationCodes",data: []}
>>>>>>> main
      },
      {
        field: "packType",
        title: "垛型",
<<<<<<< HEAD
        type: "string",
        width: 150,
        align: "left",
=======
        type: "int",
        width: 150,
        align: "left",
        bind:{key:"packTypes",data:[]}
>>>>>>> main
      },
      {
        field: "packNum",
@@ -314,7 +381,11 @@
      {
        field: "axisYSpacing",
        title: "Y坐标码垛间距",
<<<<<<< HEAD
        type: "string",
=======
        type: "int",
>>>>>>> main
        width: 120,
        align: "left",
      },
@@ -335,7 +406,11 @@
      {
        field: "axisZSpacing",
        title: "Z坐标码垛间距",
<<<<<<< HEAD
        type: "string",
=======
        type: "int",
>>>>>>> main
        width: 120,
        align: "left",
      },
@@ -388,3 +463,7 @@
  },
});
</script>
<<<<<<< HEAD
=======
>>>>>>> main