| | |
| | | </div> |
| | | </template> |
| | | <div class="flex-column h-full"> |
| | | <div class="flex-0"> |
| | | <div class="flex-0 flex-col flex"> |
| | | <el-form :inline="true" :model="queryParams"> |
| | | <el-form-item label="标题" prop="title"> |
| | | <el-input v-model="queryParams.title" style="width: 226.4px" placeholder="标题" clearable @input="debounceQueryTable" /> |
| | |
| | | </el-tree-select> |
| | | </el-form-item> |
| | | </el-form> |
| | | <span class="mt-[-12px] mb-[12px]">共有 {{ displayTableData.length }} 条数据</span> |
| | | </div> |
| | | <el-table |
| | | class="flex-auto" |
| | |
| | | :data="displayTableData" |
| | | style="width: 100%" |
| | | > |
| | | <el-table-column label="序号" fixed="left" width="55" show-overflow-tooltip> |
| | | <template #default="scope"> |
| | | {{ scope.$index + 1 }} |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | <el-table-column prop="title" label="标题" fixed="left" show-overflow-tooltip /> |
| | | <el-table-column prop="question" label="问题" show-overflow-tooltip /> |
| | | </el-table> |
| | |
| | | ); |
| | | |
| | | //#endregion |
| | | |
| | | </script> |
| | | <style scoped lang="scss"></style> |