|
|
@@ -50,8 +50,10 @@ class ServiceList extends Component {
|
|
|
* 列表点击事件
|
|
|
*/
|
|
|
onItemClick = (rowData) => {
|
|
|
- this.props.history.push(
|
|
|
- '/serviceDetail/' + rowData.id + '/' + this.caller + '/' + this.title)
|
|
|
+ if(rowData.id > 0 ){
|
|
|
+ this.props.history.push(
|
|
|
+ '/serviceDetail/' + rowData.id + '/' + this.caller + '/' + this.title)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|