Browse Source

报告列表

dev01 1 year ago
parent
commit
fef1aa9d59

+ 8 - 10
src/actions/list.js

@@ -1,16 +1,14 @@
-import { } from '@constants/list'
-import {
-  API_HOME, API_HOME_SEARCH_COUNT, API_HOME_RECOMMEND, API_HOME_PIN
-} from '@constants/api'
+import { LIST_MENU } from '@constants/list'
+import { API_USER_REPORTS } from '@constants/api'
 import { createAction } from '@utils/redux'
 
 /**
- * 首页数据
+ * 报告列表数据
  * @param {*} payload
  */
-// export const dispatchHome = payload => createAction({
-//   url: API_HOME,
-//   type: HOME_INFO,
-//   payload
-// })
+export const getList = payload => createAction({
+  url: API_USER_REPORTS,
+  type: LIST_MENU,
+  payload
+})
 

+ 1 - 2
src/app.js

@@ -19,9 +19,8 @@ const store = configStore()
 class App extends Component {
   config = {
     pages: [
-      'pages/list/list', // 报告列表
       'pages/user-login/user-login', // 登录页
-      
+      'pages/list/list', // 报告列表
       'pages/increase/increase', // 生成报告
       'pages/user/user', // 我的
     ],

+ 2 - 38
src/components/editor/index.js

@@ -1,54 +1,18 @@
-import '@wangeditor/editor/dist/css/style.css'
 import Taro, { Component } from '@tarojs/taro'
 import { View, Text, Image, ScrollView } from '@tarojs/components'
-import { Editor, Toolbar } from '@wangeditor/editor-for-react'
-import { IDomEditor, IEditorConfig, IToolbarConfig } from '@wangeditor/editor'
 import './index.scss'
 
-
-
 class MyEditor extends Component {
 
   state = {
-    editor: null,
-    html: "<p>hello</p>",
+
   }
 
-  // 及时销毁 editor ,重要!
-  // useEffect(() => {
-  //   return () => {
-  //     if (editor == null) return
-  //     editor.destroy()
-  //     setEditor(null)
-  //   }
-  // }, [editor])
 
   render() {
-    const toolbarConfig = {}
-    const editorConfig = {                         
-      placeholder: '请输入内容...',
-    }
     return (
       <View>
-        <View style={{ border: '1px solid #ccc', zIndex: 100 }}>
-          <Toolbar
-            editor={editor}
-            defaultConfig={toolbarConfig}
-            mode="default"
-            style={{ borderBottom: '1px solid #ccc' }}
-          />
-          <Editor
-            defaultConfig={editorConfig}
-            value={html}
-            onCreated={setEditor}
-            onChange={editor => setHtml(editor.getHtml())}
-            mode="default"
-            style={{ height: '500px', overflowY: 'hidden' }}
-          />
-        </View>
-        <View style={{ marginTop: '15px' }}>
-          {html}
-        </View>
+
       </View>
     )
   }

+ 2 - 0
src/constants/api.js

@@ -14,3 +14,5 @@ export const CDN = 'https://yanxuan.nosdn.127.net'
 export const API_USER_LOGIN = `${host}/gw/user/login` //
 
 
+// list 
+export const API_USER_REPORTS = `${host}/gw/user/reports` // 我的列表

+ 25 - 14
src/pages/list/itemlist.js

@@ -6,25 +6,36 @@ export default class ItemList extends Component {
 
 
   render() {
-    const { list = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1] } = this.props
+    const { list = [] } = this.props
     return (
       <View className='list'>
         {
-          list.map((item, index) =>
-            <View className='list__item' key={index}
-              onClick={() => {
+          list.length == 0
+            ? <View>暂无</View>
+            : list.map(item =>
+              <View className='list__item' key={item.id}
+                onClick={() => {
 
-              }}
-            >
-              <View className='list__item__left'>
-                <View className='list__item__left-line'>关联企业:中国某某某企业</View>
-                <View className='list__item__left-line'>企业名称:这是企业名称</View>
-                <View className='list__item__left-line'>项目名称:项目名称项目名称</View>
-                <View className='list__item__left-line'>项目负责人:负责人</View>
+                }}
+              >
+                <View className='list__item__left'>
+                  <View className='list__item__left-line'>企业名称:{item.companyName}</View>
+                  <View className='list__item__left-line'>报告类型:{item.name}</View>
+                  <View className='list__item__left-line'>项目名称:{item.reportName}</View>
+                  <View className='list__item__left-line'>项目负责人:{item.supervisor}</View>
+                  {
+                    !!item.metadata && item.metadata.length > 0 && item.metadata.map((t, x) =>
+                      <View className='list__item__left-line' key={x}>{t.name}:{t.value}</View>
+                    )
+                  }
+                </View>
+                <View className='list__item__right'>
+                  {item.status === 0
+                    ? "编写中" : item.status === 1
+                      ? "已完成" : ""}
+                </View>
               </View>
-              <View className='list__item__right'>已完成</View>
-            </View>
-          )
+            )
         }
       </View>
     )

+ 1 - 1
src/pages/list/itemlist.scss

@@ -1,5 +1,5 @@
 .list {
-  padding: 20px 20px 50px 20px;
+  padding: 20px;
 
   &__item {
     display: flex;

+ 41 - 18
src/pages/list/list.js

@@ -1,14 +1,14 @@
-import Taro, { Component } from '@tarojs/taro'
+import Taro, { Component, useRef } from '@tarojs/taro'
 import { View, Input, Picker, ScrollView, Button } from '@tarojs/components'
 import { Loading } from '@components'
 import { connect } from '@tarojs/redux'
 import * as actions from '@actions/list'
-// import { dispatchCartNum } from '@actions/list'
+import { getList } from '@actions/list'
 import ItemList from './itemlist'
 import { getWindowHeight } from '@utils/style'
 import './list.scss'
 
-// @connect(state => state.home, { ...actions, })
+@connect(state => state.home, { ...actions, })
 class List extends Component {
   config = {
     navigationBarTitleText: '报告列表'
@@ -20,18 +20,46 @@ class List extends Component {
     lastItemId: 0,
     hasMore: true,
     selectorChecked: { id: 0, key: "按报告类型", value: 'title' },
-    selector: [{ id: 0, key: "按报告类型", value: 'title' },
-    { id: 1, key: "按企业名称", value: 'companyName' },
-    { id: 2, key: "按项目名称", value: 'reportName' },
-    { id: 3, key: "按关键词", value: 'keyword' },],
+    selector: [
+      { id: 0, key: "按报告类型", value: 'title' },
+      { id: 1, key: "按企业名称", value: 'companyName' },
+      { id: 2, key: "按项目名称", value: 'reportName' },
+      { id: 3, key: "按关键词", value: 'keyword' },],
     keyword: "",
+    dataList: [],
   }
 
   componentDidMount() {
+    this.getData()
+  }
+
+  page = 1
+  getData = () => {
+    let payload = {}
+    this.setState({ loading: true })
+    if (!this.state.keyword) {
+      payload = {
+        page: this.page
+      }
+    } else {
+      payload = {
+        page: this.page,
+        field: this.state.selectorChecked.value,
+        keyword: this.state.keyword,
+      }
+    }
+    this.props.getList(payload).then((data) => {
+      this.setState({
+        loading: false,
+        dataList: this.page === 1 ? data.reports : this.state.dataList.concat(data.reports),
+      })
+      page = data.reports.length === 0 ? this.page : this.page++
+    }).catch(() => {
+      this.setState({ loading: false })
+    })
 
   }
 
-  // field:this.state.selectorChecked.value
 
   onChange = e => {
     this.setState({
@@ -39,18 +67,12 @@ class List extends Component {
     })
   }
 
-  onInput(e) {
+  onInput = e => {
     this.setState({
       keyword: e.detail.value
     })
   }
 
-  onSearch() {
-    if (!this.state.keyword) {
-      
-    }
-  }
-
 
   render() {
     // if (!this.state.loaded) {
@@ -74,17 +96,18 @@ class List extends Component {
           <Input className='input' type='text' placeholder='请输入关键词进行查询' onInput={this.onInput} />
           <View className='button'
             onClick={() => {
-
+              this.page = 1
+              this.getData()
             }}
           >搜索</View>
         </View>
         <ScrollView
           scrollY
           className='home__wrap'
-          onScrollToLower={() => { console.log("----滑到底部") }}
+          onScrollToLower={this.getData}
           style={{ height: (getWindowHeight().substring(0, getWindowHeight().length - 2) - 55) + "px" }}
         >
-          <ItemList />
+          <ItemList list={this.state.dataList} />
         </ScrollView>
       </View>
     )

+ 0 - 1
src/pages/user-login/user-login.js

@@ -4,7 +4,6 @@ import md5 from 'blueimp-md5'
 import { connect } from '@tarojs/redux'
 import * as actions from '@actions/user'
 import { ButtonItem, InputItem } from '@components'
-import { CDN } from '@constants/api'
 import './user-login.scss'
 import logo from '../../assets/logo.acd490fa.png'
 

+ 9 - 2
src/pages/user/user.js

@@ -40,8 +40,15 @@ class User extends Component {
           className='home__wrap'
           style={{ height: getWindowHeight() }}
         >
-          {/* <MyEditor /> */}
-          <View className='exit'>退出登录</View>
+          <MyEditor />
+          <View className='exit'
+            onClick={() => {
+              Taro.setStorage({ key: 'token', data: '' })
+              Taro.reLaunch({
+                url: '/pages/user-login/user-login'
+              })
+            }}
+          >退出登录</View>
         </ScrollView>
       </View>
     )

+ 6 - 3
src/utils/request.js

@@ -36,7 +36,7 @@ export default async function fetch(options) {
   }).then(async (res) => {
     const { status, data } = res.data
     if (status !== 1000) {
-      if (status === 200004) {
+      if (status === 200004 || status === 1002) {
         // 登录失效
         await updateStorage({})
       }
@@ -72,10 +72,13 @@ export default async function fetch(options) {
       })
     }
 
-    if (err.status === 200004 && autoLogin) {
-      Taro.navigateTo({
+    if ((err.status === 200004 || err.status === 1002) && autoLogin) {
+      Taro.reLaunch({
         url: '/pages/user-login/user-login'
       })
+      // Taro.navigateTo({
+      //   url: '/pages/user-login/user-login'
+      // })
     }
 
     return Promise.reject({ message: defaultMsg, ...err })