Commit bf7ee6c4 by 姜雷

修改反馈字数校验

parent aa8945af
......@@ -43,7 +43,7 @@ class Feedback extends Component<PageProps, PageState> {
feedbackHandle() {
Taro.showLoading();
const { feedbackContent } = this.state;
if (feedbackContent && feedbackContent.length > 5) {
if (feedbackContent && feedbackContent.length >= 5) {
const {
areaId,
areaName,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment