import React, {Component} from 'react'; import {Text, TextInput, TouchableOpacity, View} from 'react-native'; import Spinner from 'react-native-loading-spinner-overlay'; import loading_css from '../../source/css/loading_css'; import login_css from '../login/login_css'; import public_css from '../../source/css/public_css'; export default class invoice_application extends Component { constructor(props) { super(props); this.props.navigation.dangerouslyGetParent().setOptions({ tabBarVisible: false, }); this.state = { listData: [], product_number_total: 0, amount_total: 0.0, tax_rate_total: 0.0, }; } render() { return ( 发票类型: { this.setState({ parent_code: text, }); }} /> 申领的企业: { this.setState({ customer_name: text, }); }} /> 申领的份数: { this.setState({ customer_code: text, }); }} /> 发票申领人姓名: { this.setState({ ent_tax_id: text, }); }} /> 发票申领人的证件类型: { this.setState({ short_code: text, }); }} /> 发票申领人证件号码: { this.setState({ contact_phone: text, }); }} /> 领票方式: { this.setState({ email: text, }); }} /> 备注: { this.setState({ address: text, }); }} /> ); } }