|
@@ -91,7 +91,7 @@ class Inspect extends React.Component {
|
|
|
if (searchOption) {
|
|
|
if (searchOption != event.target && searchWrap != event.target && searchWrap != event.target.parentNode && !$.contains(searchOption, event.target)) { // Mark 1
|
|
|
if(this.state.show){
|
|
|
- this.props.setHighter(0)
|
|
|
+ this.props.setHighter(48)
|
|
|
}
|
|
|
this.setState({ show: false });
|
|
|
}
|
|
@@ -99,7 +99,7 @@ class Inspect extends React.Component {
|
|
|
if (inspectFill) {
|
|
|
if ($(event.target).attr('id') != "getSureTime"&&event.target.getAttribute('data-flg') != 'current' && inspectFill != event.target && !$.contains(inspectFill, event.target)) { // Mark 1
|
|
|
if(this.state.showFill){
|
|
|
- this.props.setHighter(0)
|
|
|
+ this.props.setHighter(48)
|
|
|
}
|
|
|
this.setState({ showFill: false, date: false });
|
|
|
}
|
|
@@ -123,7 +123,7 @@ class Inspect extends React.Component {
|
|
|
}
|
|
|
changeShowFill() {
|
|
|
this.setState({ showFill: false })
|
|
|
- this.props.setHighter(0)
|
|
|
+ this.props.setHighter(48)
|
|
|
}
|
|
|
handleChangeDate(info) {
|
|
|
// let date = info.year+'-'+info.month.toString().padStart(2,'0')+'-'+info.day.toString().padStart(2,'0')
|
|
@@ -134,7 +134,7 @@ class Inspect extends React.Component {
|
|
|
let tmpShow = this.state.show;
|
|
|
this.setState({ show: !tmpShow, pageTop: getPageCoordinate(e).boxTop })
|
|
|
// e.stopPropagation();
|
|
|
- setPosition(e,"#searchOption",this.props.setHighter)
|
|
|
+ setPosition(e,"#searchOption",this.props.setHighter);
|
|
|
}
|
|
|
handleFillShow(e, idx) {
|
|
|
let tmpShow = this.state.showFill;
|
|
@@ -374,6 +374,7 @@ class Inspect extends React.Component {
|
|
|
idx={idx}
|
|
|
listDom={this.$ul}
|
|
|
windowHeight={windowHeight}
|
|
|
+ refreshScroller={refreshScroller}
|
|
|
showToast={idx == id ? true : false}
|
|
|
showFill={this.state.showFill}
|
|
|
handlePush={handlePush}
|