|
|
@ -64,8 +64,7 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<ul class="lines"> |
|
|
|
<ul class="lines"> |
|
|
|
<li v-for="(item, i) in sourceType" :key="i" class="line"> |
|
|
|
<li v-for="(item, i) in sourceType" :key="i" class="line"> |
|
|
|
<el-checkbox v-model="item.check" :label="item.name" |
|
|
|
<el-checkbox v-model="item.check" :label="item.name" @change="getCourse"></el-checkbox> |
|
|
|
@change="val => typeChange(val, item)"></el-checkbox> |
|
|
|
|
|
|
|
</li> |
|
|
|
</li> |
|
|
|
</ul> |
|
|
|
</ul> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -75,12 +74,12 @@ |
|
|
|
<p class="addhr_tag"></p> |
|
|
|
<p class="addhr_tag"></p> |
|
|
|
<span>资源列表</span> |
|
|
|
<span>资源列表</span> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<el-input placeholder="请输入资源名称" prefix-icon="el-icon-search" v-model="checkedKeyword" clearable></el-input> |
|
|
|
<el-input class="m-b-10" placeholder="请输入资源名称" prefix-icon="el-icon-search" v-model="keyword" |
|
|
|
|
|
|
|
clearable></el-input> |
|
|
|
<ul class="lines"> |
|
|
|
<ul class="lines"> |
|
|
|
<el-checkbox v-if="sources.length" v-model="checkAll" label="全选" @change="checkAllChange"></el-checkbox> |
|
|
|
<el-checkbox v-if="sources.length" v-model="checkAll" label="全选" @change="checkAllChange"></el-checkbox> |
|
|
|
<li v-for="(item, i) in sources" :key="i" class="line"> |
|
|
|
<li v-for="(item, i) in sources" :key="i" class="line"> |
|
|
|
<el-checkbox v-model="item.check" :label="item.name" |
|
|
|
<el-checkbox v-model="item.check" :label="item.resourceName" @change="sourceChange(item)"></el-checkbox> |
|
|
|
@change="val => sourceChange(val, item)"></el-checkbox> |
|
|
|
|
|
|
|
</li> |
|
|
|
</li> |
|
|
|
</ul> |
|
|
|
</ul> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -101,7 +100,7 @@ |
|
|
|
|
|
|
|
|
|
|
|
<div class="lines"> |
|
|
|
<div class="lines"> |
|
|
|
<template v-for="(item, i) in checked"> |
|
|
|
<template v-for="(item, i) in checked"> |
|
|
|
<div v-if="item.name.includes(checkedKeyword)" :key="i" class="line"> |
|
|
|
<div v-if="!item.name || item.name.includes(checkedKeyword)" :key="i" class="line"> |
|
|
|
<div class="check-left"> |
|
|
|
<div class="check-left"> |
|
|
|
<el-checkbox v-model="item.check"></el-checkbox> |
|
|
|
<el-checkbox v-model="item.check"></el-checkbox> |
|
|
|
<span class="serial">{{ i + 1 }}</span> |
|
|
|
<span class="serial">{{ i + 1 }}</span> |
|
|
@ -177,11 +176,31 @@ export default { |
|
|
|
init () { |
|
|
|
init () { |
|
|
|
this.getCourse() |
|
|
|
this.getCourse() |
|
|
|
this.checked = [] |
|
|
|
this.checked = [] |
|
|
|
|
|
|
|
this.sourceType.forEach(e => { |
|
|
|
|
|
|
|
e.check = false |
|
|
|
|
|
|
|
}) |
|
|
|
}, |
|
|
|
}, |
|
|
|
// 课程列表 |
|
|
|
// 课程列表 |
|
|
|
async getCourse () { |
|
|
|
async getCourse () { |
|
|
|
try { |
|
|
|
try { |
|
|
|
this.loading = true |
|
|
|
this.loading = true |
|
|
|
|
|
|
|
this.checkAll = false |
|
|
|
|
|
|
|
if (this.active === 'tab3') { |
|
|
|
|
|
|
|
const { page } = await this.$post(this.api.resourceLibrary, { |
|
|
|
|
|
|
|
pageNum: 1, |
|
|
|
|
|
|
|
pageSize: 10000, |
|
|
|
|
|
|
|
platformId: Setting.platformId, |
|
|
|
|
|
|
|
type: 2, |
|
|
|
|
|
|
|
keyword: this.keyword, |
|
|
|
|
|
|
|
displayFileType: this.sourceType.filter(e => e.check).map(e => e.name), |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
const list = page.records |
|
|
|
|
|
|
|
list.forEach(e => { |
|
|
|
|
|
|
|
e.name = e.resourceName |
|
|
|
|
|
|
|
e.check = false |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
this.sources = list |
|
|
|
|
|
|
|
} else { |
|
|
|
const { list } = await this.$post(`${this.api[this.active === 'tab1' ? 'curriculumTree' : 'boutiqueCurriculumTree']}?name=${this.keyword}`) |
|
|
|
const { list } = await this.$post(`${this.api[this.active === 'tab1' ? 'curriculumTree' : 'boutiqueCurriculumTree']}?name=${this.keyword}`) |
|
|
|
if (list.length) { |
|
|
|
if (list.length) { |
|
|
|
const all = [] |
|
|
|
const all = [] |
|
|
@ -202,6 +221,7 @@ export default { |
|
|
|
this.allSections = all |
|
|
|
this.allSections = all |
|
|
|
} |
|
|
|
} |
|
|
|
this.course = list |
|
|
|
this.course = list |
|
|
|
|
|
|
|
} |
|
|
|
} finally { |
|
|
|
} finally { |
|
|
|
this.loading = false |
|
|
|
this.loading = false |
|
|
|
} |
|
|
|
} |
|
|
@ -269,21 +289,28 @@ export default { |
|
|
|
cur !== -1 && this.checked.splice(cur, 1) |
|
|
|
cur !== -1 && this.checked.splice(cur, 1) |
|
|
|
} |
|
|
|
} |
|
|
|
chapter.check = chapter.subsections.every(e => e.check) |
|
|
|
chapter.check = chapter.subsections.every(e => e.check) |
|
|
|
}, |
|
|
|
|
|
|
|
// 资源类型选择回调 |
|
|
|
|
|
|
|
typeChange (val, item) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
// 资源全选回调 |
|
|
|
// 资源全选回调 |
|
|
|
checkAllChange (val, systemId) { |
|
|
|
checkAllChange (val) { |
|
|
|
// this.systemChange(val, { systemId }) |
|
|
|
this.sources.map(e => { |
|
|
|
// this.systems.map(e => { |
|
|
|
e.check = val |
|
|
|
// if (e.systemId == systemId) e.check = val |
|
|
|
this.sourceChange(e) |
|
|
|
// }) |
|
|
|
}) |
|
|
|
}, |
|
|
|
}, |
|
|
|
// 资源列表选择回调 |
|
|
|
// 资源列表选择回调 |
|
|
|
sourceChange (val, item) { |
|
|
|
sourceChange (row) { |
|
|
|
|
|
|
|
const { check } = row |
|
|
|
|
|
|
|
const { checked } = this |
|
|
|
|
|
|
|
const cur = checked.findIndex(m => m.id === row.id) |
|
|
|
|
|
|
|
if (check) { |
|
|
|
|
|
|
|
if (cur === -1) { |
|
|
|
|
|
|
|
const section = _.cloneDeep(row) |
|
|
|
|
|
|
|
section.check = false |
|
|
|
|
|
|
|
this.checked.push(section) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
cur !== -1 && this.checked.splice(cur, 1) |
|
|
|
|
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
// 批量移除 |
|
|
|
// 批量移除 |
|
|
@ -324,7 +351,7 @@ export default { |
|
|
|
chapterId, |
|
|
|
chapterId, |
|
|
|
cid: id, |
|
|
|
cid: id, |
|
|
|
resourceId: e.id, |
|
|
|
resourceId: e.id, |
|
|
|
type: e.cid ? 0 : 1, |
|
|
|
type: e.cid ? 0 : e.resourceName ? 2 : 1, |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
@ -522,18 +549,24 @@ export default { |
|
|
|
|
|
|
|
|
|
|
|
.types { |
|
|
|
.types { |
|
|
|
width: 250px; |
|
|
|
width: 250px; |
|
|
|
padding: 10px; |
|
|
|
height: calc(100vh - 223px); |
|
|
|
|
|
|
|
padding: 15px; |
|
|
|
background-color: #f9f9f9; |
|
|
|
background-color: #f9f9f9; |
|
|
|
box-sizing: border-box; |
|
|
|
box-sizing: border-box; |
|
|
|
|
|
|
|
overflow: auto; |
|
|
|
|
|
|
|
|
|
|
|
.line { |
|
|
|
.line { |
|
|
|
margin-bottom: 5px; |
|
|
|
margin-bottom: 10px; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.sources { |
|
|
|
.sources { |
|
|
|
flex: 1; |
|
|
|
flex: 1; |
|
|
|
padding: 10px; |
|
|
|
padding: 10px; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.line { |
|
|
|
|
|
|
|
margin-top: 8px; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |
|
|
|
</style> |