采用 react+ts+less+taro 开发的华师换宿小程序
- 修改审核页面,符合设计界面
- 增加图床接口
- 增加审核界面搜索接口
- 虚拟滚动
- 增加归档
除组件特有逻辑之外,常规配置(如页面跳转和页面标题等)都提出到 config
文件夹中, 简单修改页面内容、跳转直接修改对应 config
文件即可,
后续开发仍建议把此类逻辑提出到 config
中, 让组件中只包含主干逻辑,方便修改、重构
-
PageWrap
PageWrap
为页面组件,配置背景色和上下导航栏 接受参数如下:export interface TopBarProps { children?: React.ReactElement | string, pos: 'left' | 'center' | 'leftWithButton', } export interface PageWrapProps { children?: React.ReactElement, topBarProps: TopBarProps, hasNavbar?: boolean }
topbarprops
中pos
为文字摆放位置,leftWithButton
为带返回按钮,hasNavbar
为是否带下方navbar
,会根据文件在teachers
还是tudents
自动区分导航栏功能,具体配置见configs
中的navbarConfig
-
ContentField
大白布,带圆角和阴影和 padding,当 view 用
-
Input Button
加了样式的
Input
和Button
,支持自定义,Button
自带 100ms 的防抖,Input
没加,可以根据需求加上throttle
(使用useThrottle
这个hook
)Button
新增disable
, 和disabledPrompt
属性, 负责按钮禁用以及禁用弹窗 -
Login
老师、辅导员、学生登录的公用组件,接受参数如下:
export interface LoginProps { loginConfigs: LoginConfigType[], logoConfigs: LogoProps, onRegister?: (...args: any[]) => void, onLogin: (...args: any[]) => void } export type LoginConfigType = { type: keyof InputProps.Type, title: string, displayText: string } export interface LogoProps extends Omit<ImageProps, 'src'>{ size?: 'big' | 'small' | 'medium', }
loginConfigs
: 登陆页面中输入框的配置logoConfigs
: 图标配置,可以调节small
|big
|medium
三种大小onRegister
: 注册的处理函数,不填即没有注册按钮onLogin
: 必填,登录的处理函数
其中,
onRegister
和onLogin
接受 两个参数, 一个为paramSet
, 即各个输入框内容集合,以loginConfigType
中的title
为属性名, 另一个为clear
,是回调函数,负责清除输入框内容
-
PersonalInfo
教师学生通用的个人信息页组件,接受参数如下:
export interface PersonalInfoProps { type: 'teacher' | 'student', data: { name: string, ID: string, campus: string, grade: string } }
其中,
type
决定采用哪个config
渲染选项条,config
在personalInfo
中,如下:export const stuPersonalInfoTag:switchCarType[] = ['introduction', 'download', 'feedback', 'exit'] export const teaPersonalInfoTag:switchCarType[] = ['introduction', 'download', 'feedback', 'exit']
- 开工,增加登陆接口
- 合并 ns 分支
- 重构审核
- 帮 ns 写了
signature
组件和signature
页面,生气 😡 - 重构了
navbar
,塞到pageWrap
中去了,readme
中也把navbar
删了,之后要修改直接看NavbarConfig
- 前几天没管,今天赎罪
- 新增了教师端
review
页面静态 - 修改了
personalInfo
组件使其适应教师和学生两端 - 合并了能帅的分支和我的,静态就算完工啦,超级开心喔 😀
- 新增了
PersonalInfo
组件,对应教师和学生的个人页面, 但感觉教师端个人页面可能要改,待定,之后可能会删除 - 增加了
studentPersonalInfo
页面 - 重构
studentPersonalInfo
页面,把跳转逻辑提到Config
文件夹中 Taro.navigateTo
写起来太烦了,简单封装了一下,放在,utils
中,目前有Nav
和Redirect
两个函数,分别对应Taro.navigateTo
和Taro.redirectTo
, 要加其他的自己加
- 增加了
useThrottle
和useDebounce
两个hook
- 增加了
loginPage
- 增加了
Input
,Button
,Login
组件,详情见componnents概述
- 重构
PageWrap
和NavBar
,将复杂提到配置文件夹Config
中 - 重构 申请界面,将 颜色配置、跳转链接配置等提到配置文件夹
Config
中