From a2d1b9886b00b5f4d4722c3379d3bd4f2f94b421 Mon Sep 17 00:00:00 2001
From: LAPTOP-RI7D261L\Mr Ke <545800322@qq.com>
Date: Mon, 09 Mar 2020 17:02:35 +0800
Subject: [PATCH] Merge branch 'master' of http://120.79.193.119:9090/r/nsjcy/frontEnd/nsjcy
---
SunshineIns/src/page/NewlyList.jsx | 56 ++++++++++++++++++++++++++++++++------------------------
1 files changed, 32 insertions(+), 24 deletions(-)
diff --git a/SunshineIns/src/page/NewlyList.jsx b/SunshineIns/src/page/NewlyList.jsx
index f97f0b7..7b63719 100644
--- a/SunshineIns/src/page/NewlyList.jsx
+++ b/SunshineIns/src/page/NewlyList.jsx
@@ -1,33 +1,41 @@
import React from 'react';
import { Input, Button, DatePicker, Divider, message, Popconfirm, Select, Badge } from 'antd';
+import HeadView from '../view/HeadView';
+import LinkView from '../view/LinkView';
+import QuestionnaireTablelist from './QuestionnaireTablelist';
+
+
export default class NewlyList extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- data: [],
-
- };
- }
+ constructor(props) {
+ super(props);
+ this.state = {
+ data: [],
- componentDidMount() {
+ };
+ }
- document.title = '新建问卷';
- // this.getData();
- }
+ componentDidMount() {
- getData = () => {
-
- }
-
- render() {
-
- const { data, loading, resetKey } = this.state;
- return (
- <div className="app-page">
- <div>123</div>
- </div>
- );
- }
+ document.title = '新建问卷';
+ // this.getData();
+ }
+
+ getData = () => {
+
+ }
+
+ render() {
+
+ const { data, loading, resetKey } = this.state;
+ return (
+ <div className="app-page">
+ <HeadView history={this.props.history} />
+ <LinkView sed="问卷管理" local="问卷管理" />
+ <QuestionnaireTablelist history={this.props.history} />
+
+ </div>
+ );
+ }
}
--
Gitblit v1.8.0