From 35a8270f8177ebb5b8fa4f2e3bea6a64c1fd4c1f Mon Sep 17 00:00:00 2001
From: rain <1679827795@qq.com>
Date: Tue, 29 Apr 2025 16:53:59 +0800
Subject: [PATCH] 工单类型管理

---
 src/views/tickets/ticket.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/views/tickets/ticket.vue b/src/views/tickets/ticket.vue
index bbc5b33..dbcbffb 100644
--- a/src/views/tickets/ticket.vue
+++ b/src/views/tickets/ticket.vue
@@ -937,7 +937,7 @@
       try {
         const currentTab = this.tabs.find(tab => tab.name === this.activeTab)
         const params = {
-          word_order_type: this.filters.type || undefined,
+          work_order_type_dict_key: this.filters.type || undefined,
           status: currentTab?.name === 'myTickets' ? undefined :
             this.filters.status !== "" ? Number(this.filters.status) :
               currentTab?.value,
@@ -1735,7 +1735,7 @@
               isPass: 0, // 0 表示通过
               eventName: this.currentDetail.orderName, // 工单名称
               eventNum: this.currentDetail.orderNumber,
-              eventType: this.currentDetail.type, // 工单类型
+              workOrderTypeDictKey: this.currentDetail.type, // 工单类型
               content: this.currentDetail.content, // 使用 content 替代原来的 remark
               createDept: this.dispatchForm.department, // 派发部门 ID
               updateUser: this.dispatchForm.handler, // 处理人 ID

--
Gitblit v1.9.3