|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
import { connect } from 'react-redux';
|
|
|
import { getSearchList } from '@store/async-actions/ScaleSearch';
|
|
|
import ScaleSearch from '@components/ScaleSearch';
|
|
|
+import {getTableList} from '../store/async-actions/pushMessage';
|
|
|
|
|
|
function mapStateToProps(state) {
|
|
|
return{
|
|
@@ -14,8 +15,8 @@ function mapDispatchToProps(dispatch) {
|
|
|
handleChangeValue(val){
|
|
|
dispatch(getSearchList(val))
|
|
|
},
|
|
|
- getAllConceptDetail(item) {
|
|
|
- //dispatch(getAllConceptDetail(item))
|
|
|
+ getScale(name) {
|
|
|
+ dispatch(getTableList(name))
|
|
|
}
|
|
|
}
|
|
|
}
|