Commit bf7ee6c4 by 姜雷

修改反馈字数校验

parent aa8945af
...@@ -43,7 +43,7 @@ class Feedback extends Component<PageProps, PageState> { ...@@ -43,7 +43,7 @@ class Feedback extends Component<PageProps, PageState> {
feedbackHandle() { feedbackHandle() {
Taro.showLoading(); Taro.showLoading();
const { feedbackContent } = this.state; const { feedbackContent } = this.state;
if (feedbackContent && feedbackContent.length > 5) { if (feedbackContent && feedbackContent.length >= 5) {
const { const {
areaId, areaId,
areaName, 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