Add face.

This commit is contained in:
Yang Luo
2021-01-12 23:21:07 +08:00
parent 6459926a0f
commit cd39695443
2 changed files with 93 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import {LinkOutlined} from "@ant-design/icons";
import * as ApplicationBackend from "./backend/ApplicationBackend";
import * as Setting from "./Setting";
import * as ProviderBackend from "./backend/ProviderBackend";
import Face from "./Face";
const { Option } = Select;
@ -129,6 +130,16 @@ class ApplicationEditPage extends React.Component {
</Select>
</Col>
</Row>
<Row style={{marginTop: '20px'}} >
<Col style={{marginTop: '5px'}} span={2}>
Face Preview:
</Col>
<Col span={22} >
<div style={{width: "500px", height: "600px", border: "1px solid rgb(217,217,217)"}}>
<Face application={this.state.application} />
</div>
</Col>
</Row>
</Card>
)
}