...
|
...
|
@@ -173,8 +173,8 @@ const ParameterModal: React.FC<ParameterSettingProps> = (props) => { |
173
|
173
|
{
|
174
|
174
|
title: (
|
175
|
175
|
<div style={{ display: 'flex', flexDirection: 'row' }}>
|
176
|
|
- <span style={{ color: 'red' }}>*</span>
|
177
|
176
|
<span>参数编码</span>
|
|
177
|
+ <span style={{ color: 'red' }}>*</span>
|
178
|
178
|
</div>
|
179
|
179
|
),
|
180
|
180
|
dataIndex: 'code',
|
...
|
...
|
@@ -196,8 +196,8 @@ const ParameterModal: React.FC<ParameterSettingProps> = (props) => { |
196
|
196
|
{
|
197
|
197
|
title: (
|
198
|
198
|
<div style={{ display: 'flex', flexDirection: 'row' }}>
|
199
|
|
- <span style={{ color: 'red' }}>*</span>
|
200
|
199
|
<span>参数名</span>
|
|
200
|
+ <span style={{ color: 'red' }}>*</span>
|
201
|
201
|
</div>
|
202
|
202
|
),
|
203
|
203
|
dataIndex: 'title',
|
...
|
...
|
@@ -219,8 +219,8 @@ const ParameterModal: React.FC<ParameterSettingProps> = (props) => { |
219
|
219
|
{
|
220
|
220
|
title: (
|
221
|
221
|
<div style={{ display: 'flex', flexDirection: 'row' }}>
|
222
|
|
- <span style={{ color: 'red' }}>*</span>
|
223
|
222
|
<span>参数类型</span>
|
|
223
|
+ <span style={{ color: 'red' }}>*</span>
|
224
|
224
|
</div>
|
225
|
225
|
),
|
226
|
226
|
dataIndex: 'type',
|
...
|
...
|
@@ -253,6 +253,7 @@ const ParameterModal: React.FC<ParameterSettingProps> = (props) => { |
253
|
253
|
render: (text, record) =>
|
254
|
254
|
<div className="editable-cell ">
|
255
|
255
|
<QxFieldSetter
|
|
256
|
+ disabled={record.disabled}
|
256
|
257
|
value={record.valuesObj || []}
|
257
|
258
|
params={{ appCode: 'appCode', useId: true }}
|
258
|
259
|
valueOptions={getValueOptions(record)}
|
...
|
...
|
@@ -266,6 +267,8 @@ const ParameterModal: React.FC<ParameterSettingProps> = (props) => { |
266
|
267
|
showFieldOpt={!(nodeType === 'START')}
|
267
|
268
|
// onChange={debounce((val) => handleField(val), 700)}
|
268
|
269
|
onChange={(val) => handleChangeField(val, record)}
|
|
270
|
+ popupOnBody={true}
|
|
271
|
+ inputDis={true}
|
269
|
272
|
/>
|
270
|
273
|
</div>
|
271
|
274
|
},
|
...
|
...
|
@@ -775,7 +778,7 @@ const ParameterModal: React.FC<ParameterSettingProps> = (props) => { |
775
|
778
|
>
|
776
|
779
|
<Input
|
777
|
780
|
className={'qx-parameter-setting--search'}
|
778
|
|
- placeholder="按名称搜索"
|
|
781
|
+ placeholder="参数编码/参数名搜索"
|
779
|
782
|
prefix={<QxBaseIcon type={'icon-app-search-line'} />}
|
780
|
783
|
onChange={onChange}
|
781
|
784
|
style={{ width: 219 }}
|
...
|
...
|
|