This commit is contained in:
shijingjing
2022-01-22 10:00:19 +08:00
parent 500a8ae067
commit 55486b4257

View File

@@ -15,7 +15,7 @@
</u-form-item>
<u-form-item label="方式" prop="modeType" required :border-bottom="false" class="modeTypes" right-icon="arrow-right">
<u-input v-model="forms.modeType" disabled placeholder="请选择类型" @click="showModeType = true" />
<u-input v-model="forms.modeType" disabled placeholder="请选择方式" @click="showModeType = true" />
<u-select v-model="showModeType" :list="$dict.getDict('modeType')" value-name="dictValue" label-name="dictName" @confirm="selectStatus"></u-select>
</u-form-item>
@@ -99,6 +99,9 @@ export default {
if (!this.forms.name) {
return this.$u.toast('请输入事主姓名')
}
if (!this.forms.modeType) {
return this.$u.toast('请选择方式')
}
if (!this.forms.phone) {
return this.$u.toast('请输入联系电话')
}