From 2b25f973bb6d72ce6971d6f9c3cdccf51b7962ab Mon Sep 17 00:00:00 2001 From: wangxinhui <wangxinhui@hnkhzn.com> Date: 星期六, 06 九月 2025 14:27:08 +0800 Subject: [PATCH] Merge branch 'master' of http://115.159.85.185:8098/r/ZhiHuiQiCe/LongDeLiLiKu --- 项目代码/WCS/WCSClient/src/views/PackInfo/packaxis.vue | 216 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 216 insertions(+), 0 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WCSClient/src/views/PackInfo/packaxis.vue" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WCSClient/src/views/PackInfo/packaxis.vue" new file mode 100644 index 0000000..8b3c681 --- /dev/null +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WCSClient/src/views/PackInfo/packaxis.vue" @@ -0,0 +1,216 @@ + +<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/PackInfo/packaxis.js"; +import { ref, defineComponent } from "vue"; +export default defineComponent({ + setup() { + const table = ref({ + key: "id", + footer: "Foots", + cnName: "鐮佸灈鍧愭爣淇℃伅", + name: "Packaxis", + url: "/Packaxis/", + sortName: "CreateDate", + }); + 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" }, + { 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: "deviceCode", + title: "璁惧缂栧彿", + type: "int", + width: 90, + align: "left", + }, + { + field: "stationCode", + title: "宸ヤ綅鍙�", + type: "string", + width: 200, + align: "left", + }, + { + field: "packType", + title: "鍨涘瀷", + type: "string", + width: 150, + align: "left", + }, + { + field: "packNum", + title: "鐮佸灈鏁伴噺", + type: "int", + width: 130, + align: "left", + }, + { + field: "axisX", + title: "X鍧愭爣", + type: "int", + width: 150, + align: "left", + }, + { + field: "axisXCount", + title: "X鍧愭爣鐮佸灈涓暟", + type: "int", + width: 120, + align: "left", + }, + { + field: "axisXSpacing", + title: "X鍧愭爣鐮佸灈闂磋窛", + type: "string", + width: 120, + align: "left", + }, + { + field: "axisY", + title: "Y鍧愭爣", + type: "int", + width: 150, + align: "left", + }, + { + field: "axisYCount", + title: "Y鍧愭爣鐮佸灈涓暟", + type: "int", + width: 120, + align: "left", + }, + { + field: "axisYSpacing", + title: "Y鍧愭爣鐮佸灈闂磋窛", + type: "string", + width: 120, + align: "left", + }, + { + field: "axisZ", + title: "Z鍧愭爣", + type: "int", + width: 150, + align: "left", + }, + { + field: "axisZCount", + title: "Z鍧愭爣鐮佸灈涓暟", + type: "int", + width: 120, + align: "left", + }, + { + field: "axisZSpacing", + title: "Z鍧愭爣鐮佸灈闂磋窛", + type: "string", + width: 120, + align: "left", + }, + { + field: "creater", + title: "鍒涘缓浜�", + type: "string", + width: 90, + align: "left", + }, + { + field: "createDate", + title: "鍒涘缓鏃堕棿", + type: "datetime", + width: 150, + align: "left", + }, + { + field: "modifier", + title: "淇敼浜�", + type: "string", + width: 100, + align: "left", + }, + { + field: "modifyDate", + title: "淇敼鏃堕棿", + type: "datetime", + width: 160, + align: "left", + }, + ]); + const detail = ref({ + cnName: "", + table: "", + columns: [], + sortName: "", + key: "", + }); + return { + table, + extend, + editFormFields, + editFormOptions, + searchFormFields, + searchFormOptions, + columns, + detail, + }; + }, +}); +</script> + \ No newline at end of file -- Gitblit v1.9.3