From da4257bc32483409af02a06dd342c6981ec786ec Mon Sep 17 00:00:00 2001
From: liulijun <liulijun@hnkhzn.com>
Date: 星期一, 17 十一月 2025 17:14:14 +0800
Subject: [PATCH] 更新大屏幕页面和任务信息页面
---
项目代码/WMS/WMSClient/src/views/inbound/proDeliverBackOrder.vue | 199 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 199 insertions(+), 0 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSClient/src/views/inbound/proDeliverBackOrder.vue" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSClient/src/views/inbound/proDeliverBackOrder.vue"
new file mode 100644
index 0000000..5a52c67
--- /dev/null
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSClient/src/views/inbound/proDeliverBackOrder.vue"
@@ -0,0 +1,199 @@
+<template>
+ <view-grid ref="grid" :columns="columns" :detail="detail" :editFormFields="editFormFields"
+ :editFormOptions="editFormOptions" :searchFormFields="searchFormFields" :searchFormOptions="searchFormOptions"
+ :table="table" :extend="extend">
+ </view-grid>
+</template>
+<script>
+import extend from "@/extension/inbound/proDeliverBackOrder.js";
+import { ref, defineComponent } from "vue";
+export default defineComponent({
+ setup() {
+ const table = ref({
+ key: "id",
+ footer: "Foots",
+ cnName: "鎴愬搧閿�鍞��璐у叆搴撳崟",
+ name: "proDeliverBackOrder",
+ url: "/ProDeliverBackOrder/",
+ sortName: "id",
+ });
+ const editFormFields = ref({
+
+ });
+ const editFormOptions = ref([
+ [
+ {
+ title: "浠撳簱",
+ required: true,
+ field: "warehouseId",
+ type: "string",
+ },
+ {
+ title: "WMS鍗曟嵁缂栧彿",
+ required: true,
+ field: "deliveryBackInCode",
+ type: "string",
+ },
+ {
+ title: "鎴愬搧閿�鍞��璐у崟鍙�",
+ required: true,
+ field: "deliveryBackCode",
+ type: "string",
+ },
+ {
+ title: "璁㈠崟绫诲瀷",
+ required: true,
+ field: "orderType",
+ type: "string",
+ },
+ {
+ title: "鎿嶄綔鍛樺伐",
+ required: true,
+ field: "employeeName",
+ type: "string",
+ },
+ {
+ title: "鐘舵��",
+ required: true,
+ field: "deliveryBackStatus",
+ type: "decimal",
+ },
+ {
+ title: "澶囨敞",
+ required: false,
+ field: "remark",
+ type: "string",
+ },
+ ],
+ ]);
+ const searchFormFields = ref({
+ warehouseId: "",
+ deliveryBackInCode: "",
+ deliveryBackCode: "",
+ orderType: "",
+ employeeName: "",
+ deliveryBackStatus: "",
+ });
+ const searchFormOptions = ref([
+ [
+ { title: "浠撳簱", field: "warehouseId", type: "select", dataKey: "warehouses", data: [] },
+ { title: "WMS鍗曞彿", field: "deliveryBackInCode", type: "like" },
+ { title: "鎴愬搧鍗曞彿", field: "deliveryBackCode", type: "like" },
+ { title: "璁㈠崟绫诲瀷", field: "orderType", type: "select", dataKey: "inOrderTypeEnum", data: [] },
+ ],
+ [
+ { title: "鎿嶄綔鍛樺伐", field: "employeeName", type: "like" },
+ { title: "鐘舵��", field: "deliveryBackStatus", type: "select", dataKey: "inboundState", data: [] },
+ { title: "鍒涘缓鏃堕棿", field: "createDate", type: "datetime" },
+ ],
+ ]);
+ const columns = ref([
+ {
+ field: "id",
+ title: "Id",
+ type: "int",
+ width: 90,
+ hidden: true,
+ readonly: true,
+ require: true,
+ align: "left",
+ },
+ {
+ field: "warehouseId",
+ title: "浠撳簱",
+ type: "string",
+ width: 70,
+ align: "left",
+ },
+ {
+ field: "deliveryBackInCode",
+ title: "WMS鍗曞彿",
+ type: "string",
+ width: 150,
+ align: "left",
+ },
+ {
+ field: "deliveryBackCode",
+ title: "鎴愬搧鍗曞彿",
+ type: "string",
+ width: 150,
+ align: "left",
+ },
+ {
+ field: "orderType",
+ title: "璁㈠崟绫诲瀷",
+ type: "select",
+ width: 150,
+ align: "left",
+ bind: { key: "inOrderTypeEnum", data: [] },
+ },
+ {
+ field: "employeeName",
+ title: "鎿嶄綔鍛樺伐",
+ type: "string",
+ width: 150,
+ align: "left",
+ },
+ {
+ field: "deliveryBackStatus",
+ title: "鐘舵��",
+ type: "select",
+ width: 90,
+ align: "left",
+ bind: { key: "inboundState", data: [] },
+ },
+ {
+ field: "remark",
+ title: "澶囨敞",
+ type: "string",
+ width: 150,
+ align: "left",
+ },
+ {
+ field: "creater",
+ title: "鍒涘缓浜�",
+ type: "string",
+ width: 90,
+ align: "left",
+ },
+ {
+ field: "createDate",
+ title: "鍒涘缓鏃堕棿",
+ type: "datetime",
+ width: 160,
+ align: "left",
+ },
+ {
+ field: "modifier",
+ title: "淇敼浜�",
+ type: "string",
+ width: 100,
+ align: "left",
+ },
+ {
+ field: "modifyDate",
+ title: "淇敼鏃堕棿",
+ type: "datetime",
+ width: 160,
+ align: "left",
+ },
+ ]);
+ const detail = ref({
+ cnName: "#detailCnName",
+ table: "",
+ columns: [],
+ sortName: "",
+ });
+ return {
+ table,
+ extend,
+ editFormFields,
+ editFormOptions,
+ searchFormFields,
+ searchFormOptions,
+ columns,
+ detail,
+ };
+ },
+});
+</script>
\ No newline at end of file
--
Gitblit v1.9.3