| | |
| | | <div class="app-container"> |
| | | <el-form :model="queryParam" ref="queryForm" :inline="true"> |
| | | <el-form-item label="查询条件:"> |
| | | <el-input v-model="queryParam.name"></el-input> |
| | | <el-input v-model="queryParam.name" size="small"></el-input> |
| | | <!-- <el-select v-model="queryParam.level" placeholder="部门" clearable="">--> |
| | | <!-- <el-option v-for="item in levelEnum" :key="item.key" :value="item.key" :label="item.value"></el-option>--> |
| | | <!-- </el-select>--> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button type="primary" @click="submitForm">查询</el-button> |
| | | <el-button type="primary" @click="submitForm" size="small">查询</el-button> |
| | | <!-- <router-link :to="{path:'/education/subject/edit'}" class="link-left"> |
| | | <el-button type="primary">添加</el-button> |
| | | </router-link> --> |
| | |
| | | <el-table |
| | | v-loading="listLoading" |
| | | :data="tableData" |
| | | default-expand-all |
| | | border fit highlight-current-row style="width: 100%" |
| | | :tree-props="{children: 'children', hasChildren: 'hasChildren'}" |
| | | row-key="id" |