Browse Source

fix(market): 补充线索标题的表单验证

- 在线索添加表单中增加了对标题的必填验证
- 如果用户未填写标题,提交时会显示提示信息
master
liutong 12 months ago
parent
commit
6aef2cd142
  1. 7
      pages/market/clue/add_clues.vue

7
pages/market/clue/add_clues.vue

@ -532,6 +532,13 @@ export default {
//
async validatorForm(data) {
if(!data.title){
uni.showToast({
title: '线索标题必填',
icon: 'none'
})
return false
}
if(!data.student_name){
uni.showToast({
title: '学员姓名必填',

Loading…
Cancel
Save