import Taro, { Component } from '@tarojs/taro'
import { View, Text, Image, ScrollView } from '@tarojs/components'
import { Loading } from '@components'
import { connect } from '@tarojs/redux'
import * as actions from '@actions/increase'
import { getWindowHeight } from '@utils/style'
import './increase.scss'
const RECOMMEND_SIZE = 20
@connect(state => state.home, { ...actions })
class Increase extends Component {
config = {
navigationBarTitleText: '生成报告'
}
state = {
loaded: false,
loading: false,
lastItemId: 0,
hasMore: true
}
componentDidMount() {
// NOTE 暂时去掉不适配的内容
// Taro.showToast({
// title: '注意,由于严选小程序首页界面、接口大幅变动,暂时去掉不相符的部分,后续再跟进改动',
// icon: 'none',
// duration: 6000
// })
}
render() {
// if (!this.state.loaded) {
// return
// }
const { } = this.props
return (
新建报告
)
}
}
export default Increase