dev01 1 year ago
parent
commit
18828023e0
5 changed files with 123 additions and 10 deletions
  1. 1 1
      src/pages/increase/increase.js
  2. 48 3
      src/pages/list/list.js
  3. 44 1
      src/pages/list/list.scss
  4. 11 5
      src/pages/user/user.js
  5. 19 0
      src/pages/user/user.scss

+ 1 - 1
src/pages/increase/increase.js

@@ -8,7 +8,7 @@ import './increase.scss'
 
 const RECOMMEND_SIZE = 20
 
-@connect(state => state.home, { ...actions })
+// @connect(state => state.home, { ...actions })
 class Increase extends Component {
   config = {
     navigationBarTitleText: '生成报告'

+ 48 - 3
src/pages/list/list.js

@@ -1,5 +1,5 @@
 import Taro, { Component } from '@tarojs/taro'
-import { View, Text, Image, ScrollView } from '@tarojs/components'
+import { View, Input, Picker, ScrollView, Button } from '@tarojs/components'
 import { Loading } from '@components'
 import { connect } from '@tarojs/redux'
 import * as actions from '@actions/list'
@@ -18,13 +18,40 @@ class List extends Component {
     loaded: false,
     loading: false,
     lastItemId: 0,
-    hasMore: true
+    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' },],
+    keyword: "",
   }
 
   componentDidMount() {
 
   }
 
+  // field:this.state.selectorChecked.value
+
+  onChange = e => {
+    this.setState({
+      selectorChecked: this.state.selector[e.detail.value],
+    })
+  }
+
+  onInput(e) {
+    this.setState({
+      keyword: e.detail.value
+    })
+  }
+
+  onSearch() {
+    if (!this.state.keyword) {
+      
+    }
+  }
+
+
   render() {
     // if (!this.state.loaded) {
     //   return <Loading />
@@ -33,11 +60,29 @@ class List extends Component {
     const { } = this.props
     return (
       <View className='home'>
+        <View className='home_head'>
+          <Picker
+            mode='selector'
+            range={this.state.selector}
+            rangeKey="key"
+            value={this.state.selectorChecked.id}
+            onChange={this.onChange}>
+            <View className='picker'>
+              {this.state.selectorChecked.key} ▼
+            </View>
+          </Picker>
+          <Input className='input' type='text' placeholder='请输入关键词进行查询' onInput={this.onInput} />
+          <View className='button'
+            onClick={() => {
+
+            }}
+          >搜索</View>
+        </View>
         <ScrollView
           scrollY
           className='home__wrap'
           onScrollToLower={() => { console.log("----滑到底部") }}
-          style={{ height: getWindowHeight() }}
+          style={{ height: (getWindowHeight().substring(0, getWindowHeight().length - 2) - 55) + "px" }}
         >
           <ItemList />
         </ScrollView>

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

@@ -1,3 +1,46 @@
 .home {
   background: #EDEDED;
-}
+
+  &_head {
+    width: 100%;
+    display: flex;
+    flex-direction: row;
+    align-items: center;
+    background: #FFFFFF;
+    padding: 20px;
+
+    .picker {
+      width: 180px;
+      padding: 10px 0;
+      border-radius: 30px;
+      font-size: 24px;
+      background: #0079c2;
+      color: #FFFFFF;
+      display: flex;
+      align-items: center;
+      justify-content: center;
+
+    }
+
+    .input {
+      font-size: 24px;
+      padding: 10px 30px;
+      margin: 0 20px;
+      background: #EDEDED;
+      border-radius: 30px;
+
+    }
+
+    .button {
+      white-space: nowrap;
+      background: #0079c2;
+      border-radius: 10px;
+      padding: 10px 20px;
+      font-size: 24px;
+      color: #FFFFFF;
+
+    }
+
+  }
+
+}

+ 11 - 5
src/pages/user/user.js

@@ -8,7 +8,7 @@ import './user.scss'
 
 const RECOMMEND_SIZE = 20
 
-@connect(state => state.home, { ...actions, })
+// @connect(state => state.home, { ...actions, })
 class User extends Component {
   config = {
     navigationBarTitleText: '我的'
@@ -27,14 +27,20 @@ class User extends Component {
 
 
   render() {
-    if (!this.state.loaded) {
-      return <Loading />
-    }
+    // if (!this.state.loaded) {
+    //   return <Loading />
+    // }
 
     const { } = this.props
     return (
       <View className='home'>
-        yyyyyyyyyy
+        <ScrollView
+          scrollY
+          className='home__wrap'
+          style={{ height: getWindowHeight() }}
+        >
+          <View className='exit'>退出登录</View>
+        </ScrollView>
       </View>
     )
   }

+ 19 - 0
src/pages/user/user.scss

@@ -0,0 +1,19 @@
+.home {
+  background: #EDEDED;
+}
+
+.exit {
+  width: 92%;
+  background: red;
+  position: absolute;
+  bottom: 60px;
+  left: 4%;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  color: #FFFFFF;
+  font-size: 28px;
+  padding: 20px 0;
+  border-radius: 10px;
+
+}