From ebe10f8c491743ec2e2f4b3fd30c5cd10d599206 Mon Sep 17 00:00:00 2001
From: Jerry Yan <792602257@qq.com>
Date: Sun, 30 Mar 2025 19:00:30 +0800
Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E5=8D=95=E7=8A=B6=E6=80=81?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
plugs/think-plugs-ticket/src/view/ticket/index.html | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/plugs/think-plugs-ticket/src/view/ticket/index.html b/plugs/think-plugs-ticket/src/view/ticket/index.html
index 3af1104..ec0d397 100644
--- a/plugs/think-plugs-ticket/src/view/ticket/index.html
+++ b/plugs/think-plugs-ticket/src/view/ticket/index.html
@@ -88,7 +88,11 @@
{field:'status', title:'状态', width:80, templet:function(item){
if (item.source_type !== 1) {
if (item.status === 1) {
- return `已分配`
+ if (item.state === 2) {
+ return `外部工单`
+ } else {
+ return `内部工单`
+ }
} else {
return `待分配`
}