Browse Source

(fix)巡查内容字数限制

dev
liujiangyong 3 years ago
parent
commit
770ab3edf0
  1. 4
      weapp/src/packages/patrol/index.jsx

4
weapp/src/packages/patrol/index.jsx

@ -171,6 +171,10 @@ const Index = () => {
Taro.showToast({ title: '工程类型错误', icon: 'none' })
return
}
if (content.length > 50) {
Taro.showToast({ title: '内容字数不能超过50', icon: 'none' })
return
}
const reportProjectType = prjType[prjTypeSelector.indexOf(projectType)].value
let data = {

Loading…
Cancel
Save