|
@@ -2,16 +2,19 @@
|
|
|
<div>
|
|
|
<el-alert title="班级1"
|
|
|
type="info"
|
|
|
- :closable="false">
|
|
|
+ :closable="false"
|
|
|
+ class='alert'>
|
|
|
</el-alert>
|
|
|
<el-form-item label="选择班级"
|
|
|
+ style="padding-left:20px;"
|
|
|
:prop="'classList.'+index+'.value'">
|
|
|
<el-select v-model="item.classId"
|
|
|
+ style="margin-right:20px;"
|
|
|
@change="changeValue">
|
|
|
<el-option label="1"
|
|
|
value="2"></el-option>
|
|
|
</el-select>
|
|
|
-
|
|
|
+ <a>学员列表>></a>
|
|
|
</el-form-item>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -29,4 +32,7 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
+.alert {
|
|
|
+ margin-bottom: 10px;
|
|
|
+}
|
|
|
</style>
|