From 4f8cbd783208925be8ccbfed198b86e20523ec0e Mon Sep 17 00:00:00 2001
From: chenyong <chenyong@hnkhzn.com>
Date: 星期一, 09 六月 2025 19:26:06 +0800
Subject: [PATCH] 更新最新代码

---
 Code Management/WMS/WIDESEA_WMSClient/src/views/widesea_wms/taskinfo/Dt_CL.vue |   81 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 81 insertions(+), 0 deletions(-)

diff --git a/Code Management/WMS/WIDESEA_WMSClient/src/views/widesea_wms/taskinfo/Dt_CL.vue b/Code Management/WMS/WIDESEA_WMSClient/src/views/widesea_wms/taskinfo/Dt_CL.vue
new file mode 100644
index 0000000..804d4b7
--- /dev/null
+++ b/Code Management/WMS/WIDESEA_WMSClient/src/views/widesea_wms/taskinfo/Dt_CL.vue
@@ -0,0 +1,81 @@
+<!--
+*Author锛歫xx
+ *Contact锛�283591387@qq.com
+ *浠g爜鐢辨鏋剁敓鎴�,浠讳綍鏇存敼閮藉彲鑳藉鑷磋浠g爜鐢熸垚鍣ㄨ鐩�
+ *涓氬姟璇峰湪@/extension/widesea_wms/taskinfo/Dt_Task.js姝ゅ缂栧啓
+ -->
+<template>
+    <view-grid ref="grid" :columns="columns" :detail="detail" :editFormFields="editFormFields"
+        :editFormOptions="editFormOptions" 
+        :table="table" :extend="extend" />
+</template>
+<script>
+import extend from "@/extension/widesea_wms/taskinfo/Dt_Task_Hty.jsx";
+import { ref, defineComponent } from "vue";
+export default defineComponent({
+    setup() {
+        const table = ref({
+            key: 'taskId',
+            footer: "Foots",
+            cnName: '浜ч噺缁熻',
+            name: 'taskinfo',
+            url: "/Task/Getproductionstatistics",
+            sortName: "TaskId"
+        });
+        const editFormFields = ref({
+            "taskNum": "",
+            "palletCode": ""
+        });
+        const editFormOptions = ref([
+          
+        ]);
+        const searchFormFields = ref({
+        });
+        const searchFormOptions = ref([
+            [
+               
+              
+                { "title": "浠诲姟绫诲瀷", "field": "taskType", "type": "select", dataKey: "TaskType", data: [] },
+                { "title": "浠诲姟鐘舵��", "field": "taskState", "type": "select", dataKey: "TaskStatus", data: [] },
+
+            ],
+            [
+                { "title": "璧峰浣嶇疆", "field": "sourceAddress", type: "text" },
+                { "title": "褰撳墠浣嶇疆", "field": "currentAddress", type: "text" },
+                { "title": "涓嬩竴浣嶇疆", "field": "nextAddress", type: "text" },
+                { "title": "鐩爣浣嶇疆", "field": "targetAddress", type: "text" },
+            ],
+            [
+                { "title": "宸烽亾", "field": "roadway", type: "text" },
+                { "title": "鐢熶骇浜х嚎", "field": "productionLine", type: "select", dataKey: "ProductionLine", data: [] },
+                { "title": "鍒涘缓浜�", "field": "creater", type: "text" },
+                { "title": "鍒涘缓鏃堕棿", "field": "createDate", type: "datetime" },
+            ],
+        ]);
+        const columns = ref([{ field: 'TaskId', title: '涓婚敭', type: 'string', width: 110, hidden: true, readonly: true, require: true, align: 'left' },
+        { field: 'hour', title: '鏃ユ湡', type: 'int', width: 110, align: 'left', sort: true },
+        { field: 'count', title: '瀹炴鍑哄簱', type: 'string', width: 150, align: 'left' },
+        { field: 'pnboundNo', title: '鍗曟嵁鍙�', type: 'string', width: 110, align: 'left' ,hidden: true},
+        { field: 'groupID', title: '搴撳瓨ID', type: 'int', width: 110, hidden: true, align: 'left' },
+        { field: 'groupDetailId', title: '缁勭洏鏄庣粏ID', type: 'int', width: 110, hidden: true, align: 'left' },
+        { field: 'roadway', title: '搴�', type: 'string', width: 110, align: 'left' },]);
+        const detail = ref({
+            cnName: "#detailCnName",
+            table: "#detailTable",
+            columns: [],
+            sortName: "",
+            key: ""
+        });
+        return {
+            table,
+            extend,
+            editFormFields,
+            editFormOptions,
+            searchFormFields,
+            searchFormOptions,
+            columns,
+            detail,
+        };
+    },
+});
+</script>

--
Gitblit v1.9.3