problem.js 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. import React, {Component} from 'react';
  2. import {
  3. View,
  4. Text,
  5. SafeAreaView,
  6. ScrollView,
  7. Image,
  8. Dimensions,
  9. TouchableOpacity,
  10. } from 'react-native';
  11. import { WhiteSpace, WingBlank } from '@ant-design/react-native';
  12. import public_css from '../../../source/css/public_css';
  13. export default class problem extends Component {
  14. constructor(props) {
  15. super(props);
  16. this.props.navigation.dangerouslyGetParent().setOptions({
  17. tabBarVisible: false,
  18. });
  19. this.state = {
  20. listData: [],
  21. showFoot: 0, // 控制foot, 0:隐藏footer 1:已加载完成,没有更多数据 2 :显示加载中
  22. isLoading: false,
  23. };
  24. }
  25. render() {
  26. return (
  27. <SafeAreaView style={[public_css.body, {backgroundColor: '#F7F7F7'}]}>
  28. <ScrollView>
  29. <WhiteSpace />
  30. <WingBlank>
  31. <View style={{height: 80, backgroundColor: '#ffffff'}}>
  32. <View style={{flex: 1, justifyContent: 'center', borderBottomWidth: 1, borderBottomColor: '#DADADC', marginLeft: 10, marginRight: 10}}>
  33. <Text style={{color: '#4E84E3', fontSize: 13}}>1、短信是否会冲销</Text>
  34. </View>
  35. <View style={{flex: 1, justifyContent: 'center'}}>
  36. <Text style={{color: '#525252', fontSize: 13, marginLeft: 10, lineHeight: 20}}>短信有效期为长期使用,您不需要当心短信会被冲销。</Text>
  37. </View>
  38. </View>
  39. </WingBlank>
  40. <WhiteSpace />
  41. <WingBlank>
  42. <View style={{height: 80, backgroundColor: '#ffffff'}}>
  43. <View style={{flex: 1, justifyContent: 'center', borderBottomWidth: 1, borderBottomColor: '#DADADC', marginLeft: 10, marginRight: 10}}>
  44. <Text style={{color: '#4E84E3', fontSize: 13}}>2、客服联系电话是多少?服务时间是什么时候?</Text>
  45. </View>
  46. <View style={{flex: 1, justifyContent: 'center'}}>
  47. <Text style={{color: '#525252', fontSize: 13, marginLeft: 10, lineHeight: 20}}>云票在线客户服务联系电话为:0871-63193319、0871-6
  48. 3193999。服务时间为周一至周五8:30-17:30</Text>
  49. </View>
  50. </View>
  51. </WingBlank>
  52. </ScrollView>
  53. </SafeAreaView>
  54. );
  55. }
  56. }