Commit 3f050e524d5adce7f884ea47b78a06559c56ad1f
1 parent
8b0b2e01
优化印刷额外参数下拉选择;
Showing
1 changed file
with
2 additions
and
2 deletions
src/components/QuickQuote/index.jsx
| ... | ... | @@ -1196,7 +1196,7 @@ const QuickQuoteEvent = props => { |
| 1196 | 1196 | processData.sort((a, b) => { |
| 1197 | 1197 | return configOrderMap[a.sProcessClassifyId] - configOrderMap[b.sProcessClassifyId]; |
| 1198 | 1198 | }); |
| 1199 | - processData = processData.map((item, index) => ({ ...item, iOrder: index + 1 })) | |
| 1199 | + processData = processData.map((item, index) => ({ ...item, iOrder: index + 1 })); | |
| 1200 | 1200 | |
| 1201 | 1201 | const newState = { |
| 1202 | 1202 | materialsConfig, |
| ... | ... | @@ -3386,7 +3386,7 @@ const BackendParamsExtraComponent = props => { |
| 3386 | 3386 | if (dropDownData?.length) { |
| 3387 | 3387 | return { |
| 3388 | 3388 | dropDownData: dropDownData.map(item => ({ |
| 3389 | - sId: commonUtils.createSid(), | |
| 3389 | + sId: item, | |
| 3390 | 3390 | value: item, |
| 3391 | 3391 | sParam: showConfig.sParam, |
| 3392 | 3392 | [sName]: item, | ... | ... |