Commit 0e7b126eaf8da2e93c0d21e60d6721ef170dad5f
1 parent
0582a5b6
优化指令集可视化功能;
Showing
2 changed files
with
3 additions
and
1 deletions
src/components/Common/CommonView/index.js
src/components/Common/InstructSetSetting/index.js
| ... | ... | @@ -12,7 +12,7 @@ const InstructSetSetting = (props = {}) => { |
| 12 | 12 | const { instructSetSettingVisible } = props; |
| 13 | 13 | if (!instructSetSettingVisible) return ""; |
| 14 | 14 | |
| 15 | - const { onCancelInstructSetSettingModal, showConfig, dataValue, instructSetSettingId } = props; | |
| 15 | + const { onCancelInstructSetSettingModal, showConfig, dataValue, instructSetSettingId, slave0Data } = props; | |
| 16 | 16 | const { showName, sName } = showConfig; |
| 17 | 17 | |
| 18 | 18 | const instructSet = commonUtils.convertStrToObj(dataValue, {}); |
| ... | ... | @@ -44,6 +44,7 @@ const InstructSetSetting = (props = {}) => { |
| 44 | 44 | { |
| 45 | 45 | command: "initData", |
| 46 | 46 | value: instructSet.change || instructSet.blur || (instructSet ? [instructSet] : []), |
| 47 | + slave0Data, | |
| 47 | 48 | }, |
| 48 | 49 | IFRAMEURL |
| 49 | 50 | ); | ... | ... |