import React, { Component } from 'react'; import style from './index.less'; import { Tab, ConfirmModal, Notify } from '@commonComp'; import { tabChange, allChecked, changeVisible, keepPushData, allCheckedShow,allCheckedAdmin,allCheckedShowAdmin } from '@store/actions/tabTemplate'; import { initItemList, delItem,delItemAdmin, delBatchItem, delBatchItemAdmin,changeTitleAsync, setPageView,changeTitleAsyncAdmin,setPageViewAdmin } from '@store/async-actions/tabTemplate'; import { connect } from "react-redux"; import store from '@store'; import { billing } from '@store/async-actions/pushMessage'; import TemplateContainer from '@components/TemplateContainer'; import TemplateItems from '@components/TemplateItems'; import PushItemsContainer from '@containers/PushItemsContainer'; import { pushAllDataList, getWindowInnerHeight, didPushParamChange } from '@utils/tools'; import CopyRightContainer from "@containers/CopyRightContainer"; import MedicalInfoContainer from '@containers/MedicalInfoContainer'; import CaseQuailty from "../CaseQuailty"; class PushContainer extends Component { constructor(props) { super(props); this.state = { data: null, tabs: [{ title: '辅助信息', disabled: true }, { title: '病历质控', }, { title: '模板', }, { title: '医学知识', } ], visible: false, message: '', //提示的内容 type: '', //1:删除模板 2:批量删除 3.修改标题 4.引用 id: '', //单个删除 obj: {}, //修改模板标题 title: '', //修改后的标题 okText: '确定', //确认按钮 okBorderColor: 'red', oKBg: '', okColor: 'red', num: 0, //计数 deptId:'', //科室id } this.$cont = React.createRef(); this.itemList = null; this.handleActiveClick = this.handleActiveClick.bind(this) this.handleContentClick = this.handleContentClick.bind(this) this.handleTemplateDel = this.handleTemplateDel.bind(this) this.handleTitleChange = this.handleTitleChange.bind(this) this.handleAllCheckbox = this.handleAllCheckbox.bind(this) this.handleAllCheckboxAdmin = this.handleAllCheckboxAdmin.bind(this) this.handleMangerTemplate = this.handleMangerTemplate.bind(this) this.handleMangerTemplateAdmin = this.handleMangerTemplateAdmin.bind(this) this.handleDelList = this.handleDelList.bind(this) this.makeSure = this.makeSure.bind(this) this.handleClose = this.handleClose.bind(this); this.templateSearch = this.templateSearch.bind(this); } componentDidMount() { // const height = getWindowInnerHeight()-160; // this.$cont.current.style.height = height+"px"; } templateSearch(name){ store.dispatch(initItemList(1,name)); } /** * * @param {tab组件切换id} id */ handleActiveClick(id) { if (id == '2') { document.getElementById("searchTmp").value = "" store.dispatch(initItemList(1,0)); } store.dispatch(tabChange(id)) } /** * 引用模板id * @param {模板id} id */ handleContentClick(id, sex) { let baseSex = store.getState().patInfo.message.sex this.setState({ message: this.content(sex, baseSex), type: 4, id: id, okText: '引用', okBorderColor: '#3B9ED0', okColor: '#fff', oKBg: '#3B9ED0' }, () => { store.dispatch(changeVisible(true)) }) } content(sex, baseSex) { if (sex != 3 && sex != baseSex) { return
确认引用该模板?
引用该模版可能显示有误
} else { return确认引用该模板?
} } /** * 删除模板 * @param {模板id} id */ handleTemplateDel(id) { this.setState({ message: this.delDiv(), type: 1, id: id, okText: '删除', okBorderColor: 'red', okColor: 'red', oKBg: '#fff' }, () => { store.dispatch(changeVisible(true)) }) } delDiv() { return确认删除模板?
} onchange(value,deptId) { this.setState({ title: value }, () => { this.setState({ message: this.changeTitle(), }) }) } keypress(event) { let e = event ? event : window.event; if (e.keyCode == 13) { this.makeSure() } } handleInput(e) { let val = (e.target.value).substring(0, 30) this.onchange(val) } changeTitle() { return