master
yujialong 3 months ago
parent f858f467b2
commit 2a049f380e
  1. 1
      src/assets/images/empty.svg
  2. 325
      src/pages/testPaper/detail/auto.vue
  3. 19
      src/pages/testPaper/detail/manual.vue
  4. 5
      src/styles/common.scss

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.7 KiB

@ -58,23 +58,79 @@
<!-- 题库 --> <!-- 题库 -->
<div class="item"> <div class="item">
<p class="total m-b-10">题库</p> <p class="total m-b-10">题库</p>
<el-input class="m-b-10" placeholder="请输入题库分类/题库名称" prefix-icon="el-icon-search" v-model="quesBankKeyword" <ul class="filter">
clearable /> <li class="m-b-10">
<el-tree :key="key" node-key="id" default-expand-all highlight-current ref="quesBank" :data="quesBanks" <label>题库分类</label>
:props="{ label: 'name' }" @node-click="getKnowledge" @check-change="quesBankCheck"></el-tree> <el-cascader style="width: 240px;" placeholder="请选择题库分类" v-model="quesBankTypeVal"
:options="quesBankTypes" :props="{ value: 'id', label: 'name', checkStrictly: true }" clearable
@change="getQuesBank"></el-cascader>
</li>
<li>
<el-input placeholder="请输入题库名称" prefix-icon="el-icon-search" v-model="quesBankKeyword" clearable />
</li>
</ul>
<template v-if="quesBanks.length">
<div class="line">
<span class="serial first">序号</span>
<span>题库名称</span>
</div>
<div class="lines">
<div v-for="(item, i) in quesBanks" :key="i"
:class="['line able-check', { active: curQuesBank.id === item.id }]" @click="questionBankClick(item)">
<span class="serial first">{{ i + 1 }}</span>
<p class="stem" :title="item.questionBankName">{{ item.questionBankName }}</p>
</div>
</div>
<div class="pagination">
<el-pagination background @current-change="currentChangeQuesBank" :current-page="pageQuesBank"
layout="total, prev, pager, next" :total="totalQuesBank"></el-pagination>
</div>
</template>
<div v-else class="empty">
<img class="icon" src="@/assets/images/empty.svg" alt="">
<p>暂无数据</p>
</div>
</div> </div>
<!-- 知识点 --> <!-- 知识点 -->
<div class="item"> <div class="item">
<p class="total m-b-10">知识点框架</p> <ul class="filter">
<el-input class="m-b-10" placeholder="请输入知识点分类/知识点名称" prefix-icon="el-icon-search" <li class="m-b-10">
v-model="knowledgeKeyword" clearable /> <label>知识点框架</label>
<el-tree :data="knowledges" default-expand-all ref="knowledge" node-key="id" highlight-current <el-cascader style="width: 240px;" placeholder="请选择知识点分类" v-model="knowledgeTypeVal"
:expand-on-click-node="false" show-checkbox @check-change="knowledgeCheck" :props="{ label: 'name' }"> :options="knowledgeTypes" :props="{ value: 'id', label: 'name', checkStrictly: true }" clearable
<span class="custom-tree-node" slot-scope="{ node, data }"> @change="getKnowledge"></el-cascader>
<img v-if="data.type" class="m-r-5" src="@/assets/images/knowledge.svg" alt=""> </li>
<span class="org-name">{{ data.name }}</span> <li>
</span> <el-input placeholder="请输入知识点名称" prefix-icon="el-icon-search" v-model="knowledgeKeyword" clearable />
</el-tree> </li>
</ul>
<template v-if="knowledges.length">
<div class="line">
<el-checkbox v-model="knowledgeCheck" @change="knowledgeAllCheckChange"></el-checkbox>
<span class="serial">序号</span>
<span>知识点名称</span>
</div>
<div v-for="(item, i) in knowledges" :key="i" class="line">
<el-checkbox v-model="item.check" :disabled="item.disabled"
@change="val => knowledgeChange(val, item)"></el-checkbox>
<span class="serial">{{ i + 1 }}</span>
<p class="stem" :title="item.name">{{ item.name }}</p>
</div>
<div class="pagination">
<el-pagination background @current-change="currentChangeKn" :current-page="pageKn"
layout="total, prev, pager, next" :total="totalKn"></el-pagination>
</div>
</template>
<div v-else class="empty">
<img class="icon" src="@/assets/images/empty.svg" alt="">
<p>暂无数据</p>
</div>
</div> </div>
<!-- 已选知识点 --> <!-- 已选知识点 -->
<div class="item"> <div class="item">
@ -86,16 +142,14 @@
</p> </p>
</div> </div>
<div v-for="(item, i) in checked" :key="i" class="line j-between"> <div v-for="(item, i) in checked" :key="i" class="j-between m-b-10">
<div class="flex a-center"> <div class="flex a-center">
题库{{ item.quesBank.name }} 题库{{ item.quesBank.questionBankName }}
<i class="el-icon-delete action-icon m-l-10" @click="delQuesBank(i)"></i> <i class="el-icon-delete action-icon m-l-10" @click="delQuesBank(i)"></i>
</div> </div>
<div class="knowledges"> <div class="knowledges">
<el-tag v-for="(tag, j) in item.knowledges" :key="tag.name" class="m-r-10" closable <el-tag v-for="(tag, j) in item.knowledges" :key="tag.name" class="m-r-8 m-b-8" closable
@close="delKnowledge(i, j, item)"> @close="delKnowledge(i, j, item, tag)">{{ tag.name }}</el-tag>
{{ tag.name }}
</el-tag>
</div> </div>
</div> </div>
</div> </div>
@ -133,21 +187,34 @@ export default {
questionTypes: QuesConst.questionTypes, questionTypes: QuesConst.questionTypes,
quesVisible: false, quesVisible: false,
difficult: '', difficult: '',
searchTimer: null,
curQuesBank: {},
quesBankTypeVal: [],
quesBankTypes: [],
quesBankKeyword: '', quesBankKeyword: '',
knowledgeKeyword: '',
searchTimer: null, quesAllCheck: false,
key: 1,
quesBanks: [], quesBanks: [],
pageQuesBank: 1,
pageSizeQuesBank: 10,
totalQuesBank: 0,
knowledgeKeyword: '',
knowledgeTypeVal: [],
knowledgeTypes: [],
knowledgeCheck: false,
knowledges: [], knowledges: [],
checked: [], pageKn: 1,
pageSizeKn: 10,
totalKn: 0,
checked: [],
list: [], list: [],
years: ['暂无年份', '2024', '2023', '2022', '2021', '2020', '2019', '2018', '2017', '2016', '更早'], years: ['暂无年份', '2024', '2023', '2022', '2021', '2020', '2019', '2018', '2017', '2016', '更早'],
yearAll: true, yearAll: true,
yearCheck: [], yearCheck: [],
submiting: false, submiting: false,
diaTop: 0,
}; };
}, },
computed: { computed: {
@ -174,74 +241,125 @@ export default {
} }
}, },
mounted () { mounted () {
console.log(5555, window.innerHeight)
const height = (window.innerHeight - 600) / 2
this.diaTop = (height > 0 ? height : 0) + 'px'
}, },
methods: { methods: {
// //
init () { init () {
this.yearCheck = this.years this.yearCheck = this.years
this.handleQuesList() this.handleQuesList()
this.getQuesBankType()
this.getQuesBank() this.getQuesBank()
this.difficult = this.$parent.form.difficult this.difficult = this.$parent.form.difficult
this.difficult && this.difficultChange(this.difficult) this.difficult && this.difficultChange(this.difficult)
}, },
//
async getQuesBankType () {
try {
const { data } = await this.$post(this.api.getAllQuestionBankCategories, {
createSource: 1,
status: 1,
})
this.handleList(data)
this.quesBankTypes = data
} catch (e) { }
},
// //
async getQuesBank () { async getQuesBank () {
try { try {
const { list } = await this.$post(this.api.questionBankStructureLevel, { const type = this.quesBankTypeVal
keyword: this.quesBankKeyword, const res = await this.$post(this.api.questionBankList, {
createSource: 1,
status: 1, status: 1,
pageNum: this.pageQuesBank,
pageSize: this.pageSizeQuesBank,
questionCategoryId: type.length ? type[type.length - 1] : '',
name: this.quesBankKeyword
}) })
this.quesBanks = list this.quesBanks = res.message.records
this.totalQuesBank = res.message.total
} catch (e) { }
},
//
currentChangeQuesBank (val) {
this.pageQuesBank = val
this.getQuesBank()
},
//
questionBankClick (item) {
this.curQuesBank = item
this.knowledgeCheck = false
this.getKnowledgeType()
this.getKnowledge()
},
//
handleList (list) {
list.map(e => {
if (e.children && e.children.length) {
this.handleList(e.children)
} else {
delete e.children
}
})
},
//
async getKnowledgeType () {
try {
const { data } = await this.$post(this.api.classificationTreeStructure, {
createSource: 1,
questionBankId: this.curQuesBank.id,
})
this.handleList(data)
this.knowledgeTypes = data
} catch (e) { } } catch (e) { }
}, },
// //
async getKnowledge () { async getKnowledge () {
try { try {
const id = this.$refs.quesBank.getCurrentKey() const type = this.knowledgeTypeVal
if (id) { const res = await this.$post(this.api.knowledgeHierarchyList, {
const { data } = await this.$post(this.api.TreeStructure, { pageNum: this.pageKn,
createSource: 1, pageSize: this.pageSizeKn,
questionBankId: id, questionBankId: this.curQuesBank.id,
keyword: this.knowledgeKeyword, knowledgePointCategoryId: type.length ? type[type.length - 1] : '',
name: this.knowledgeKeyword,
}) })
this.knowledges = data this.knowledges = res.message.records
} this.totalKn = res.message.total
} catch (e) { } } catch (e) { }
}, },
// //
quesBankCheck (data, checked) { currentChangeKn (val) {
// debugger this.pageKn = val
if (checked) {
// this.$refs.quesBank.setCurrentKey(data.id)
this.getKnowledge() this.getKnowledge()
} },
this.$refs.knowledge.setCheckedNodes(checked ? this.knowledges : []) //
knowledgeAllCheckChange (val) {
this.knowledges.map(e => {
e.check = val
this.knowledgeChange(val, e)
})
}, },
// //
knowledgeCheck (data, checked) { knowledgeChange (checked, data) {
// const checkQues = this.curQuesBank
if (data.type) { const index = this.checked.findIndex(e => e.quesBank.id === checkQues.id)
const checkQues = this.$refs.quesBank.getCurrentNode()
const ques = this.checked.find(e => e.quesBank.id === checkQues.id)
// //
if (ques) { if (index !== -1) {
const ques = this.checked[index]
const i = ques.knowledges.findIndex(e => e.id === data.id) const i = ques.knowledges.findIndex(e => e.id === data.id)
if (checked && i === -1) { if (checked && i === -1) {
ques.knowledges.push(data) ques.knowledges.push(data)
} else if (!checked && i >= 0) { } else if (!checked && i >= 0) {
ques.knowledges.splice(i, 1) ques.knowledges.splice(i, 1)
} }
ques.knowledges.length || this.checked.splice(index, 1)
} else { } else {
this.checked.push({ this.checked.push({
quesBank: checkQues, quesBank: checkQues,
knowledges: [data] knowledges: [data]
}) })
} }
}
}, },
// //
handleQuesList () { handleQuesList () {
@ -257,25 +375,36 @@ export default {
type: 'warning', type: 'warning',
closeOnClickModal: false, closeOnClickModal: false,
}) })
this.knowledges.map(e => e.check = false)
this.checked = [] this.checked = []
// this.$nextTick(() => { this.knowledgeCheck = false
// this.$refs.knowledge.setCheckedKeys([])
// })
} catch (e) { } } catch (e) { }
}, },
// //
delQuesBank (i) { async delQuesBank (i) {
const k = this.$refs.knowledge try {
await this.$confirm(`确认要移除吗?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
closeOnClickModal: false,
})
const k = this.knowledges
this.checked[i].knowledges.map(e => { this.checked[i].knowledges.map(e => {
k.setChecked(e.id, false, true) const cur = k.findIndex(n => n.id === e.id)
if (cur !== -1) k[cur].check = false
}) })
// this.checked.splice(i, 1) this.checked.splice(i, 1)
this.knowledgeCheck = false
} catch (e) { }
}, },
// //
delKnowledge (i, j, item) { delKnowledge (i, j, item, k) {
this.$refs.knowledge.setChecked(item.knowledges[j].id, false) const cur = this.knowledges.findIndex(e => e.id === k.id)
if (cur !== -1) this.knowledges[cur].check = false
item.knowledges.splice(j, 1) item.knowledges.splice(j, 1)
item.knowledges.length || this.checked.splice(i, 1) // item.knowledges.length || this.checked.splice(i, 1) //
this.knowledgeCheck = false
}, },
// //
async getList () { async getList () {
@ -428,7 +557,6 @@ export default {
.el-drawer__header { .el-drawer__header {
margin-bottom: 20px; margin-bottom: 20px;
} }
}
.overflow { .overflow {
height: calc(100vh - 147px); height: calc(100vh - 147px);
@ -436,14 +564,31 @@ export default {
overflow: auto; overflow: auto;
} }
.wrap { .wrap {
display: flex; display: flex;
margin-top: 20px; margin-top: 20px;
border: 1px solid #eee; border: 1px solid #eee;
.filter {
margin-bottom: 15px;
li {
display: flex;
align-items: center;
}
label {
margin-right: 10px;
font-size: 14px;
color: #333;
white-space: nowrap;
}
}
.item { .item {
width: 30%; width: 30%;
max-height: calc(100vh - 190px); height: calc(100vh - 190px);
padding: 15px; padding: 15px;
border-right: 1px solid #eee; border-right: 1px solid #eee;
overflow: auto; overflow: auto;
@ -471,5 +616,55 @@ export default {
padding-left: 44px; padding-left: 44px;
margin-top: 10px; margin-top: 10px;
} }
.line {
display: flex;
padding: 5px 0;
color: #333;
&.able-check {
cursor: pointer;
&:hover {
background-color: #f5f5f5;
}
&.active {
background-color: #e5e5e5;
}
}
}
.serial {
width: 32px;
margin: 0 12px;
text-align: center;
white-space: nowrap;
&.first {
margin-left: 0;
}
}
.stem {
max-width: calc(100% - 71px);
@include ellipsis;
}
.checked-stem {
max-width: 165px;
@include ellipsis;
}
.check-left {
display: inline-flex;
align-items: center;
}
.action-icon {
font-size: 14px;
}
}
} }
</style> </style>

@ -1,7 +1,7 @@
<template> <template>
<div> <div>
<el-dialog :title="diaTitle" :visible.sync="selectQuesVisible" width="1200px" :close-on-click-modal="false" <el-drawer :title="diaTitle" :visible.sync="selectQuesVisible" size="1200px" :close-on-click-modal="false"
@closed="closeDia"> custom-class="ques-dia" @closed="closeDia">
<div class="wrap"> <div class="wrap">
<!-- 题库 --> <!-- 题库 -->
<div class="item"> <div class="item">
@ -77,19 +77,18 @@
</div> </div>
</div> </div>
</div> </div>
<div class="flex j-between"> <div class="flex j-between p-l-10 p-r-10">
<p>未找到试题<a class="link" @click="toAddQues">去新增</a></p> <p>未找到试题<a class="link" @click="toAddQues">去新增</a></p>
<p>已选题数/目标题数{{ checkedLen }}/{{ $parent.curType.questionNum }}&emsp;&emsp; <p>已选题数/目标题数{{ checkedLen }}/{{ $parent.curType.questionNum }}&emsp;&emsp;
<!-- <a class="link" @click="toEditQues">修改目标</a> --> <!-- <a class="link" @click="toEditQues">修改目标</a> -->
</p> </p>
</div> </div>
<div class="btns">
<span slot="footer" class="dialog-footer">
<el-button @click="selectQuesVisible = false">取消</el-button> <el-button @click="selectQuesVisible = false">取消</el-button>
<el-button type="primary" :loading="submiting" @click="submit">确定</el-button> <el-button type="primary" :loading="submiting" @click="submit">确定</el-button>
</span> </div>
</el-dialog> </el-drawer>
</div> </div>
</template> </template>
<script> <script>
@ -368,6 +367,11 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
/deep/.ques-dia {
.el-drawer__header {
margin-bottom: 20px;
}
.wrap { .wrap {
display: flex; display: flex;
margin-bottom: 10px; margin-bottom: 10px;
@ -430,4 +434,5 @@ export default {
color: $main-color; color: $main-color;
cursor: pointer; cursor: pointer;
} }
}
</style> </style>

@ -433,3 +433,8 @@
vertical-align: top; vertical-align: top;
} }
} }
.empty {
font-size: 14px;
text-align: center;
color: #a3a3a3;
}
Loading…
Cancel
Save