|
|
|
|
@ -71,8 +71,10 @@ const ConditionsTable: React.FC<ConditionsTableProps> = ({
|
|
|
|
|
{
|
|
|
|
|
title: '逻辑出口',
|
|
|
|
|
dataIndex: 'apiOutId',
|
|
|
|
|
width: 100,
|
|
|
|
|
render: (_: any, record: TableDataItem) => (
|
|
|
|
|
<Input
|
|
|
|
|
autoWidth={{ minWidth: 100, maxWidth: 500 }}
|
|
|
|
|
value={record.apiOutId}
|
|
|
|
|
onChange={(value) => {
|
|
|
|
|
// 仅更新本地状态,不立即触发保存
|
|
|
|
|
@ -134,7 +136,7 @@ const ConditionsTable: React.FC<ConditionsTableProps> = ({
|
|
|
|
|
dataIndex: 'operator',
|
|
|
|
|
render: (_: any, record: TableDataItem) => (
|
|
|
|
|
<Select
|
|
|
|
|
autoWidth={{ minWidth: 200, maxWidth: 500 }}
|
|
|
|
|
autoWidth={{ minWidth: 80, maxWidth: 500 }}
|
|
|
|
|
options={operationOptions}
|
|
|
|
|
value={record.operator}
|
|
|
|
|
onChange={(value) => {
|
|
|
|
|
|