From 1e1c8a2dfe21f8fc99d6651809e50c4a6c94e47e Mon Sep 17 00:00:00 2001 From: mairuiming Date: Wed, 9 Jul 2025 19:30:27 +0800 Subject: [PATCH] 1 1 --- src/App.tsx | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 3b3de46..f90c09e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -43,15 +43,6 @@ const CUSTOMER_CONFIG: CustomerOptionGroup[] = [ condition: (checkedList) => checkedList.includes('首单'), resetOn: ['翻单'] }, - { - title: '批色样', - options: ['寄成衣','寄色样'], - required: true, - level: 5, - parentOption: '加色', - condition: (checkedList) => checkedList.includes('加色'), - resetOn: ['首单', '无变动不需要修改', '需要打板', '不需要打板'] - }, { title: '批色样', options: ['要批色样', '不要批色样'], @@ -72,13 +63,23 @@ const CUSTOMER_CONFIG: CustomerOptionGroup[] = [ }, { title: '特殊订单', - options: ['换料寄面料样', '换料重新打板', '改尺寸重新打板','改尺寸不打版'], + options: ['换料寄面料样', '换料重新打板', '改尺寸重新打板','改尺寸不打版','加色'], required: false, level: 4, parentOption: '有变动需要修改', condition: (checkedList) => checkedList.includes('有变动需要修改'), resetOn: ['首单', '无变动不需要修改'] }, + + { + title: '批色样', + options: ['需要打板','要批色样','不要批色样'], + required: true, + level: 5, + parentOption: '加色', + condition: (checkedList) => checkedList.includes('加色'), + resetOn: ['首单', '无变动不需要修改', '需要打板', '不需要打板'] + }, { title: '品类', options: ['牛仔', '时装'],