From 4fc31b41c205507607c91ab3afe10fbc06a9aa09 Mon Sep 17 00:00:00 2001
From: yangpeixing <yangpeixing@hnkhzn.com>
Date: 星期五, 05 十二月 2025 13:52:15 +0800
Subject: [PATCH] 1.添加启动提升机、停止提升机、复位提升机功能 2.优化初始化提升机功能
---
项目代码/WCS/WIDESEAWCS_Client/src/views/taskinfo/task.vue | 45 ++++++++++++++-------------------------------
1 files changed, 14 insertions(+), 31 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Client/src/views/taskinfo/task.vue" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Client/src/views/taskinfo/task.vue"
index 8f4c81b..855e46f 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Client/src/views/taskinfo/task.vue"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCS/WIDESEAWCS_Client/src/views/taskinfo/task.vue"
@@ -1,19 +1,11 @@
<template>
- <view-grid
- ref="grid"
- :columns="columns"
- :detail="detail"
- :editFormFields="editFormFields"
- :editFormOptions="editFormOptions"
- :searchFormFields="searchFormFields"
- :searchFormOptions="searchFormOptions"
- :table="table"
- :extend="extend"
- >
+ <view-grid ref="grid" :columns="columns" :detail="detail" :editFormFields="editFormFields"
+ :editFormOptions="editFormOptions" :searchFormFields="searchFormFields" :searchFormOptions="searchFormOptions"
+ :table="table" :extend="extend">
</view-grid>
</template>
- <script>
+<script>
import extend from "@/extension/taskinfo/task.js";
import { ref, defineComponent } from "vue";
export default defineComponent({
@@ -27,12 +19,12 @@
sortName: "CreateDate",
});
const editFormFields = ref({
- taskNum:"",
+ taskNum: "",
palletCode: "",
roadway: "",
- taskType:"",
- taskState:"",
- wMSId:"",
+ taskType: "",
+ taskState: "",
+ wMSId: "",
sourceAddress: "",
targetAddress: "",
currentAddress: "",
@@ -40,7 +32,7 @@
creater: "",
createDate: "",
grade: "",
- productionLine:""
+ productionLine: ""
});
const editFormOptions = ref([[{ title: "浼樺厛绾�", field: "grade", type: "int" },]]);
const searchFormFields = ref({
@@ -81,7 +73,6 @@
],
[
{ title: "宸烽亾鍙�", field: "roadway", type: "text" },
- { "title": "鐢熶骇浜х嚎", "field": "productionLine", type: "select", dataKey: "ProductionLine", data: [] },
{ title: "鍒涘缓浜�", field: "creater", type: "text" },
{ title: "鍒涘缓鏃堕棿", field: "createDate", type: "datetime" },
],
@@ -122,7 +113,7 @@
field: "taskType",
title: "浠诲姟绫诲瀷",
type: "int",
- width: 90,
+ width: 120,
align: "left",
bind: { key: "taskType", data: [] },
},
@@ -145,7 +136,7 @@
field: "targetAddress",
title: "鐩爣鍦板潃",
type: "string",
- width: 120,
+ width: 150,
align: "left",
},
{
@@ -163,20 +154,12 @@
align: "left",
},
{
- field: "productionLine",
- title: "浜х嚎",
- type: "string",
- width: 70,
- align: "left",
- bind: { key: "ProductionLine", data: [] }
- },
- {
field: "exceptionMessage",
title: "寮傚父淇℃伅",
type: "string",
width: 90,
align: "left",
-
+
},
{
field: "grade",
@@ -200,7 +183,7 @@
align: "left",
hidden: true,
},
-
+
{
field: "createDate",
title: "鍒涘缓鏃堕棿",
@@ -208,7 +191,7 @@
width: 150,
align: "left",
},
-
+
{
field: "modifyDate",
title: "淇敼鏃堕棿",
--
Gitblit v1.9.3