|
|
|
@ -102,6 +102,8 @@ |
|
|
|
placeholder="请选择 执法领域" |
|
|
|
is-link |
|
|
|
readonly |
|
|
|
required |
|
|
|
:rules="[{ required: true, message: '请加执法领域' }]" |
|
|
|
@click="data.showLawFieldPicker = true" |
|
|
|
/> |
|
|
|
<van-field |
|
|
|
@ -110,6 +112,8 @@ |
|
|
|
placeholder="请选择 执法类别" |
|
|
|
is-link |
|
|
|
readonly |
|
|
|
required |
|
|
|
:rules="[{ required: true, message: '请加执法类别' }]" |
|
|
|
@click="data.showCheckCategoryPicker = true" |
|
|
|
/> |
|
|
|
|
|
|
|
@ -737,6 +741,8 @@ |
|
|
|
const tmpSave = () => { |
|
|
|
if (submitData.lawCertificateNumText.length <= 0 |
|
|
|
|| submitData.bureauDeptName.length <= 0 |
|
|
|
|| submitData.lawFieldText.length <= 0 |
|
|
|
|| submitData.checkCategoryText.length <= 0 |
|
|
|
|| data.lawCer[0].id.length <= 0) { |
|
|
|
return null; |
|
|
|
} |
|
|
|
@ -785,6 +791,8 @@ |
|
|
|
const submit = (type) => { |
|
|
|
if (submitData.lawCertificateNumText.length <= 0 |
|
|
|
|| submitData.bureauDeptName.length <= 0 |
|
|
|
|| submitData.lawFieldText.length <= 0 |
|
|
|
|| submitData.checkCategoryText.length <= 0 |
|
|
|
|| data.lawCer[0].id.length <= 0) { |
|
|
|
return null; |
|
|
|
} |
|
|
|
|