|
|
|
@ -18,7 +18,7 @@ |
|
|
|
|
<view class="lineewewe"></view> |
|
|
|
|
<!-- 表单 --> |
|
|
|
|
<u-form :model="form" ref="uForm" label-position="top" class="uformclass" :rules="rules"> |
|
|
|
|
<u-form-item v-for="(it,index) in detailForm" :key="it.key" :label="`${index + 1}.${it[it.key]}`"> |
|
|
|
|
<u-form-item :class="{'lastcl' : index == detailForm.length-1}" v-for="(it,index) in detailForm" :key="it.key" :label="`${index + 1}.${it[it.key]}`"> |
|
|
|
|
<u-input v-if="it.type == 'input'" border v-model="form[it.key]" /> |
|
|
|
|
<u-radio-group v-if="it.type == 'radio'" wrap v-model="form[it.key]" > |
|
|
|
|
<u-radio v-for="(item, i) in it.value" :key="item" :name="item"> |
|
|
|
@ -63,7 +63,7 @@ |
|
|
|
|
this.trainClassId = res.data.trainClassId |
|
|
|
|
} else { |
|
|
|
|
this.$refs.uToast.show({ |
|
|
|
|
title: res.data.msg, |
|
|
|
|
title: "当前暂无师资培训班开班,请耐心等待开班通知", |
|
|
|
|
icon: 'none' |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
@ -103,7 +103,13 @@ |
|
|
|
|
// }) |
|
|
|
|
// } |
|
|
|
|
// }) |
|
|
|
|
const toggle = this.detailForm.some(item=>{return !this.form[item.key]}) |
|
|
|
|
const toggle = this.detailForm.some((item,index)=>{ |
|
|
|
|
console.log(item); |
|
|
|
|
if(!this.form[item.key] && (item.key != "suggestion")){ |
|
|
|
|
return item |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
console.log(toggle); |
|
|
|
|
if(toggle){ |
|
|
|
|
uni.showToast({ |
|
|
|
@ -244,6 +250,16 @@ |
|
|
|
|
color: #EF3D3D; |
|
|
|
|
margin-right: 10rpx; |
|
|
|
|
} |
|
|
|
|
// .u-form>*{ |
|
|
|
|
// background-color: #1A81F9; |
|
|
|
|
// } |
|
|
|
|
} |
|
|
|
|
::v-deep .lastcl { |
|
|
|
|
.u-form-item--left__content__label::before { |
|
|
|
|
content: ''; |
|
|
|
|
color: #EF3D3D; |
|
|
|
|
margin-right: 10rpx; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|