|
@@ -273,11 +273,11 @@ class Operation extends Component {
|
|
|
const { visible, preVisible,diagShow } = this.props.print;
|
|
|
const {zIndex} = this.state;
|
|
|
return <div className={style['container']} style={{zIndex:zIndex}}>
|
|
|
- <button className={style['button']} onClick={showPrint}><img src={printImg} /> 打印病历</button>
|
|
|
- <button className={style['preButton']} onClick={showPreview}><img src={preview} /> 预览</button>
|
|
|
- <button className={style['preButton']} onClick={() => { this.saveHis(3) }}><img src={saveHistory} /> 保存病历模板</button>
|
|
|
- <button className={style['saveButton']} onClick={() => { this.saveAll(1) }}>保存</button>
|
|
|
- <button className={`${style['clearButton']} ${style['saveButton']}`} onClick={() => { this.clearAll(2) }}>清除</button>
|
|
|
+ <span className={style['button']} onClick={showPrint}><img src={printImg} /> 打印病历</span>
|
|
|
+ <span className={style['preButton']} onClick={showPreview}><img src={preview} /> 预览</span>
|
|
|
+ <span className={style['preButton']} onClick={() => { this.saveHis(3) }}><img src={saveHistory} /> 保存病历模板</span>
|
|
|
+ <span className={style['saveButton']} onClick={() => { this.saveAll(1) }}>保存</span>
|
|
|
+ <span className={`${style['clearButton']} ${style['saveButton']}`} onClick={() => { this.clearAll(2) }}>清除</span>
|
|
|
<PrintPreviewContainer visible={visible} onClose={closePrint} />
|
|
|
<PreviewContainer visible={preVisible} onClose={closePreview} />
|
|
|
<ConfirmModal
|