123456789101112131415161718192021222324252627282930313233343536373839 |
- import React from 'react';
- import './index.less';
- import Page from '@src/containers/Page';
- import Block from '@src/components/Block';
- export default class extends Page {
- renderProduct() {
- return <Block>
- <h1>包含商品</h1>
- </Block>;
- }
- renderMoney() {
- return <Block>
- <h1>订单金额</h1>
- </Block>;
- }
- renderGift() {
- return <Block>
- <h1>赠送服务</h1>
- </Block>;
- }
- renderTime() {
- return <Block>
- <h1>订单时间</h1>
- </Block>;
- }
- renderView() {
- return <div>
- {this.renderProduct()}
- {this.renderMoney()}
- {this.renderGift()}
- {this.renderTime()}
- </div>;
- }
- }
|