提交 3cf68398 authored 作者: lhh's avatar lhh

update

上级 90a5baaf
...@@ -160,11 +160,28 @@ const handleView = function (n: any) { ...@@ -160,11 +160,28 @@ const handleView = function (n: any) {
bookName.value = n bookName.value = n
isShowTextbookDialog.value = true isShowTextbookDialog.value = true
} }
const formInline = reactive({
user: ''
})
</script> </script>
<template> <template>
<AppCard title="知识图库"> <AppCard title="知识图库">
<div style="margin-bottom: 15px">课程名称:{{ route.query?.n }}</div> <div style="margin-bottom: 15px">课程名称:{{ route.query?.n }}</div>
<div>
<el-form :inline="true" :model="formInline" class="demo-form-inline">
<el-form-item label="知识点">
<el-input v-model="formInline.user" placeholder="请输入" clearable />
</el-form-item>
<el-form-item>
<el-button type="primary">搜索</el-button>
<el-button type="primary">重置</el-button>
</el-form-item>
</el-form>
</div>
<el-button type="primary" @click="addChild(1, 1)">添加知识点</el-button> <el-button type="primary" @click="addChild(1, 1)">添加知识点</el-button>
<el-button type="primary">批量导入</el-button>
<el-button type="primary">导出</el-button>
<el-table <el-table
:data="tableData" :data="tableData"
style="width: 100%; margin: 20px 0" style="width: 100%; margin: 20px 0"
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论