Commit 59042f38b34c60871708e50d0045cd404da29870

Authored by zhangzzzz
1 parent 5102e845

防止iframe缓存;

src/components/Common/InstructSetSetting/index.js
... ... @@ -188,7 +188,7 @@ const InstructSetSetting = (props = {}) => {
188 188 </Space>
189 189 </>
190 190 ) : (
191   - <iframe ref={iframeRef} src={`${IFRAMEURL}/InsSet/?parentDomain=${document.location.origin}`} width="100%" height="100%" frameBorder={0} />
  191 + <iframe ref={iframeRef} src={`${IFRAMEURL}/InsSet/?parentDomain=${document.location.origin}&time=${new Date().getTime()}`} width="100%" height="100%" frameBorder={0} />
192 192 )}
193 193 </div>
194 194 </AntDraggableModal>
... ...