From 47c7a0503a119572bd1b9e2812510dd6792d95f0 Mon Sep 17 00:00:00 2001
From: liuwh <hugeinfo123>
Date: Tue, 31 Mar 2020 12:14:44 +0800
Subject: [PATCH] 1
---
SunshineIns/src/page/NewlyList.jsx | 60 ++++++++++++++++++++++++++++++++++++------------------------
1 files changed, 36 insertions(+), 24 deletions(-)
diff --git a/SunshineIns/src/page/NewlyList.jsx b/SunshineIns/src/page/NewlyList.jsx
index f97f0b7..5567029 100644
--- a/SunshineIns/src/page/NewlyList.jsx
+++ b/SunshineIns/src/page/NewlyList.jsx
@@ -1,33 +1,45 @@
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="问卷管理" />
+ */}
+ <div className="link-view-main">
+ 后台中心 /<span style={{ color: '#1790FF' }}>问卷管理</span>
+ </div>
+ <QuestionnaireTablelist history={this.props.history} />
+
+ </div>
+ );
+ }
}
--
Gitblit v1.8.0