//grabOrderPage import Taro, { Component } from '@tarojs/taro' import { View, Text } from '@tarojs/components' import { AtButton, AtIcon } from 'taro-ui' import CopyrightComponent from '../../component/copyrightComponent/copyrightComponent' import './grabOrderPage.scss' class GrabOrderPage extends Component { config = { navigationBarTitleText: '抢单页面' } componentDidMount() { } componentWillReceiveProps(nextProps) { console.log(this.props, nextProps) } componentWillUnmount() { } componentDidShow() { } componentDidHide() { } render() { return ( 行业分类: {this.state.type} 业主需求标题: {this.state.title} 浏览量: {this.state.browsing} 联系人: {this.state.contactName} 联系电话: {this.state.contactNumber} 联系地址: {this.state.address} 业主需求内容: {this.state.content} 抢单 ) } } export default GrabOrderPage