产品中心学科筛选、考核等

Branch_d40a2540
yujialong 2 years ago
parent 71bc842ecd
commit 108372bbd1
  1. BIN
      src/assets/img/product/bg1.png
  2. BIN
      src/assets/img/product/bg2.png
  3. 48
      src/layouts/home/index.vue
  4. 52
      src/pages/achievement/list/index.vue
  5. 3
      src/pages/achievement/show/index.vue
  6. 49
      src/pages/assessment/list/index.vue
  7. 187
      src/pages/product/list/index.vue
  8. 9
      src/pages/product/show/index.vue
  9. 10
      src/pages/station/preview/index.vue

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

@ -4,34 +4,53 @@
<div class="layout"> <div class="layout">
<navbar></navbar> <navbar></navbar>
<div class="content"> <div class="content">
<transition name="move" mode="out-in"> <transition name="move"
mode="out-in">
<router-view class="view"></router-view> <router-view class="view"></router-view>
</transition> </transition>
<el-backtop target=".content"></el-backtop> <el-backtop target=".content"></el-backtop>
</div> </div>
<v-footer ref="footer"></v-footer> <v-footer ref="footer"></v-footer>
<div class="log-mask" v-if="logVisible"></div> <div class="log-mask"
<div class="log-dia" v-if="logVisible"> v-if="logVisible"></div>
<img class="bg1" src="@/assets/img/log-bg.png" alt=""> <div class="log-dia"
<img class="bg2" src="@/assets/img/log-bg1.png" alt=""> v-if="logVisible">
<img class="bg1"
src="@/assets/img/log-bg.png"
alt="">
<img class="bg2"
src="@/assets/img/log-bg1.png"
alt="">
<p class="log-title">更新日志</p> <p class="log-title">更新日志</p>
<div class="log-wrap"> <div class="log-wrap">
<div class="logs"> <div class="logs">
<div class="item" v-for="(item, i) in list" :key="i" v-show="!i || (i && logAll)"> <div class="item"
v-for="(item, i) in list"
:key="i"
v-show="!i || (i && logAll)">
<h6>{{ item.versionName }}</h6> <h6>{{ item.versionName }}</h6>
<img v-if="item.coverUrl" :src="item.coverUrl" alt="" class="cover"> <img v-if="item.coverUrl"
:src="item.coverUrl"
alt=""
class="cover">
<ul class="detail"> <ul class="detail">
<li v-for="(item, i) in item.logContents" :key="i"> <li v-for="(item, i) in item.logContents"
<p class="name"><img :src="require('@/assets/img/' + funcList.find(e => e.id === item.type).icon + '.png')" alt=""> {{ funcList.find(e => e.id === item.type).name }}</p> :key="i">
<p class="name"><img :src="require('@/assets/img/' + funcList.find(e => e.id === item.type).icon + '.png')"
alt=""> {{ funcList.find(e => e.id === item.type).name }}</p>
<div class="val"> <div class="val">
<p v-for="(item, i) in item.content" :key="i">{{ i + 1 }}{{ item }}</p> <p v-for="(item, i) in item.content"
:key="i">{{ i + 1 }}{{ item }}</p>
</div> </div>
</li> </li>
</ul> </ul>
</div> </div>
</div> </div>
<div class="more-wrap"> <div class="more-wrap">
<el-button class="know" type="primary" size="small" @click="logVisible = false">知道了</el-button> <el-button class="know"
type="primary"
size="small"
@click="logVisible = false">知道了</el-button>
</div> </div>
</div> </div>
</div> </div>
@ -139,15 +158,16 @@ export default {
.content { .content {
min-height: calc(100vh - 176px); min-height: calc(100vh - 176px);
padding: 24px 24px; padding: 24px;
} }
}.log-mask { }
.log-mask {
position: fixed; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
bottom: 0; bottom: 0;
right: 0; right: 0;
background-color: rgba(0, 0, 0, .4); background-color: rgba(0, 0, 0, 0.4);
} }
/deep/.log-dia { /deep/.log-dia {
z-index: 11; z-index: 11;

@ -48,12 +48,14 @@
</li> </li>
<li> <li>
<label>课程</label> <label>课程</label>
<el-cascader v-model="mallIds" <el-select v-model="mallId"
:options="curs" @change="initData">
:props="{ checkStrictly: true, value: 'id' }" <el-option v-for="(item, i) in curs"
popper-class="course-cas" :key="i"
@expand-change="curChange" :label="item.curriculumName"
@change="curChange"></el-cascader> :value="item.mallId"
@change="curChange"></el-option>
</el-select>
</li> </li>
<li> <li>
<el-input placeholder="请输入考核或项目名称" <el-input placeholder="请输入考核或项目名称"
@ -162,7 +164,6 @@ export default {
classId: this.$route.query.class ? +this.$route.query.class : '', classId: this.$route.query.class ? +this.$route.query.class : '',
classList: [], classList: [],
mallId: this.$route.query.mallId ? +this.$route.query.mallId : '', mallId: this.$route.query.mallId ? +this.$route.query.mallId : '',
systemId: this.$route.query.systemId ? +this.$route.query.systemId : '',
curriculumList: [], curriculumList: [],
projectPermissions: this.$route.query.per ? +this.$route.query.per : 0, projectPermissions: this.$route.query.per ? +this.$route.query.per : 0,
mallIds: [], mallIds: [],
@ -240,36 +241,21 @@ export default {
// //
async getCourse () { async getCourse () {
const { data } = await this.$get(this.api.getSystemIdBySchool) const { data } = await this.$get(this.api.getSchoolEffectiveCourse)
const res = await this.$get(this.api.getSchoolEffectiveCourse) this.curs = data
if (res.data.length) { this.mallId = this.mallId || data[0].mallId
res.data.map(e => { this.initData();
e.id = e.mallId
e.label = e.curriculumName
e.children = data.filter(n => e.systemId.split(',').includes(n.id + '')) //
})
this.curs = res.data
this.mallIds = [this.mallId || res.data[0].mallId, this.systemId || data[0].id]
this.getData();
console.log("🚀 ~ file: index.vue:431 ~ getSystemData ~ res.data:", this.mallIds)
}
}, },
// //
curChange (val) { curChange (id) {
const id = val[0]
if (val.length === 1) {
//
this.mallIds = [id, this.curs.find(e => e.id == id).children[0].id]
}
this.$router.push({ this.$router.push({
path: 'list', path: 'list',
query: { query: {
...this.$route.query, ...this.$route.query,
mallId: this.mallIds[0], mallId: id
systemId: this.mallIds[1],
} }
}) })
this.getData() this.initData()
}, },
getClassData () { // getClassData () { //
@ -283,20 +269,20 @@ export default {
background: "rgba(255,255,255,.6)" background: "rgba(255,255,255,.6)"
}); });
const per = this.projectPermissions const per = this.projectPermissions
const { mallIds } = this const { mallId } = this
const cur = this.curs.find(e => e.mallId == mallIds[0]) const cur = this.curs.find(e => e.mallId == mallId) || {}
let data = { let data = {
classId: this.classId, classId: this.classId,
permissions: per, permissions: per,
curriculumId: cur.cid, curriculumId: cur.cid,
mallId: mallIds[0], mallId,
keyWord: this.keyword, keyWord: this.keyword,
startTime: this.startingtime, startTime: this.startingtime,
endTime: this.endTime, endTime: this.endTime,
month: this.month, month: this.month,
pageNum: this.page, pageNum: this.page,
pageSize: this.pageSize, pageSize: this.pageSize,
systemId: mallIds[1] systemId: cur.systemId
}; };
this.$post(this.api.getAchievementInfo, data).then(res => { this.$post(this.api.getAchievementInfo, data).then(res => {
let list = [] let list = []

@ -251,7 +251,8 @@ export default {
laboratory: form.laboratory, laboratory: form.laboratory,
submitTime: form.submitTime, submitTime: form.submitTime,
score: form.score, score: form.score,
userName: form.userName userName: form.userName,
className: form.className
} }
const data = report.data const data = report.data
this.userScores = userScores this.userScores = userScores

@ -50,12 +50,20 @@
</li> </li>
<li> <li>
<label>课程</label> <label>课程</label>
<el-cascader v-model="mallIds" <el-select v-model="mallId"
@change="initData">
<el-option v-for="(item, i) in curs"
:key="i"
:label="item.curriculumName"
:value="item.mallId"></el-option>
</el-select>
<!-- <el-cascader v-model="mallIds"
:options="curs" :options="curs"
:props="{ checkStrictly: true, value: 'id' }" :props="{ checkStrictly: true, value: 'id' }"
popper-class="course-cas" popper-class="course-cas"
@expand-change="curChange" @expand-change="curChange"
@change="curChange"></el-cascader> @change="curChange"></el-cascader> -->
</li> </li>
</ul> </ul>
</div> </div>
@ -269,7 +277,12 @@ export default {
keyWord: "", // keyWord: "", //
searchTimer: null, searchTimer: null,
mallIds: [], mallIds: [],
curs: [], curs: [
{
id: '',
curriculumName: '不限'
}
],
form: { form: {
type: "", type: "",
status: "", status: "",
@ -367,15 +380,15 @@ export default {
getData (counddown) { getData (counddown) {
this.listLoading = true; this.listLoading = true;
const { mallIds } = this const { mallIds } = this
const cur = this.curs.find(e => e.mallId == mallIds[0]) // const cur = this.curs.find(e => e.mallId == mallIds[0])
let data = { let data = {
...this.form, ...this.form,
keyWord: this.keyWord, keyWord: this.keyWord,
pageNum: this.pageNum, pageNum: this.pageNum,
pageSize: this.pageSize, pageSize: this.pageSize,
cid: cur.cid, // cid: cur.cid,
mallId: mallIds[0], mallId: this.mallId,
systemId: mallIds[1] // systemId: mallIds[1]
}; };
this.$post(this.api.pageByCondition, data).then(res => { this.$post(this.api.pageByCondition, data).then(res => {
this.listData = res.list; this.listData = res.list;
@ -417,27 +430,21 @@ export default {
// //
async getCourse () { async getCourse () {
const { data } = await this.$get(this.api.getSystemIdBySchool) const { data } = await this.$get(this.api.getSchoolEffectiveCourse)
const res = await this.$get(this.api.getSchoolEffectiveCourse) this.curs.push(...data)
if (res.data.length) {
res.data.map(e => {
e.id = e.mallId
e.label = e.curriculumName
e.children = data.filter(n => e.systemId.split(',').includes(n.id + '')) //
})
this.curs = res.data
this.mallIds = [res.data[0].mallId, data[0].id]
this.pageNum = 1 this.pageNum = 1
this.getData(1) this.getData(1)
console.log("🚀 ~ file: index.vue:431 ~ getSystemData ~ res.data:", this.mallIds)
}
}, },
// //
curChange (val) { curChange (val) {
const id = val[0] const id = val[0]
if (val.length === 1) { if (id) {
// //
this.mallIds = [id, this.curs.find(e => e.id == id).children[0].id] if (val.length === 1) this.mallIds = [id, this.curs.find(e => e.id == id).children[0].id]
} else {
this.mallId = ''
this.cid = ''
this.systemId = ''
} }
this.initData() this.initData()
}, },

@ -18,8 +18,9 @@
</template> </template>
</el-carousel> </el-carousel>
<div class="inner-wrap">
<div class="inner"> <div class="inner">
<div class="typw-wrap"> <div class="type-wrap">
<div> <div>
<img src="@/assets/img/hot.png" <img src="@/assets/img/hot.png"
alt=""> alt="">
@ -45,11 +46,50 @@
<div class="filter"> <div class="filter">
<dl v-if="curTab == 1"> <dl v-if="curTab == 1">
<dt>学科专业</dt> <dt>学科专业</dt>
<el-cascader style="width: 300px;padding: 0 15px" <dd :class="{active: categoryId === ''}"
@click="catetoryClick('')">全部</dd>
<dd :class="{active: categoryId === 1}"
@click="catetoryClick(1)">不限</dd>
<el-dropdown class="category"
@command="id => categoryDropdown(id, 'categoryId')">
<span class="el-dropdown-link">
{{ categoryName }}<i class="el-icon-arrow-down el-icon--right"></i>
</span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item v-for="(item, i) in subjectList"
:key="i"
:command="item.disciplineId">{{ item.disciplineName }}</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
<el-dropdown class="category"
@command="id => categoryDropdown(id, 'professionalCategoryId')">
<span class="el-dropdown-link">
{{ professionalCategoryName }}<i class="el-icon-arrow-down el-icon--right"></i>
</span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item v-for="(item, i) in professionalClassList"
:key="i"
:command="item.professionalClassId">{{ item.professionalClassName }}</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
<el-dropdown class="category"
@command="id => categoryDropdown(id, 'professionalId')">
<span class="el-dropdown-link">
{{ professionalName }}<i class="el-icon-arrow-down el-icon--right"></i>
</span>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item v-for="(item, i) in professionalList"
:key="i"
:command="item.professionalId">{{ item.professionalName }}</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
<!-- <el-cascader style="width: 300px;padding: 0 15px"
v-model="category" v-model="category"
:props="props" :props="props"
clearable clearable
@change="initData"></el-cascader> @change="initData"></el-cascader> -->
</dl> </dl>
<dl v-if="curTab == 3"> <dl v-if="curTab == 3">
<dt>产品标签</dt> <dt>产品标签</dt>
@ -157,6 +197,7 @@
</div> </div>
</div> </div>
</div> </div>
</div>
</template> </template>
<script> <script>
@ -191,15 +232,15 @@ export default {
form: { form: {
isShelves: 0, isShelves: 0,
hotTag: 1, hotTag: 1,
// categoryId: '',
// professionalCategoryId: '',
// professionalId: '',
productType: '', productType: '',
productName: '', productName: '',
purchaseStatus: '', purchaseStatus: '',
sort: 0, sort: 0,
tagId: '' tagId: ''
}, },
categoryId: '',
professionalCategoryId: '',
professionalId: '',
category: [], category: [],
// //
props: { props: {
@ -251,6 +292,9 @@ export default {
subjectList: [], // subjectList: [], //
professionalClassList: [], // professionalClassList: [], //
professionalList: [], // professionalList: [], //
categoryName: '',
professionalCategoryName: '',
professionalName: '',
classifications: [], classifications: [],
status: [ status: [
{ {
@ -312,7 +356,7 @@ export default {
this.getSubject() this.getSubject()
this.getLabel() this.getLabel()
this.getClass() this.getClass()
this.initData() // this.initData()
}, },
methods: { methods: {
// banner // banner
@ -327,15 +371,14 @@ export default {
}, },
// //
getData () { getData () {
const { category } = this
this.loadIns = Loading.service() this.loadIns = Loading.service()
this.$post(this.api.listOfGoods, { this.$post(this.api.listOfGoods, {
...this.form, ...this.form,
categoryId: category[0] || '',
professionalCategoryId: category[1] || '',
professionalId: category[2] || '',
pageNum: this.page, pageNum: this.page,
pageSize: this.pageSize, pageSize: this.pageSize,
categoryId: this.categoryId,
professionalCategoryId: this.categoryId ? this.professionalCategoryId : '',
professionalId: this.categoryId ? this.professionalId : '',
}).then(({ page }) => { }).then(({ page }) => {
const list = page.records const list = page.records
list && list.forEach(e => { list && list.forEach(e => {
@ -366,50 +409,99 @@ export default {
}, },
// //
getSubject () { getSubject () {
this.$get(this.api.courseDiscipline).then(res => { this.$get(this.api.courseDiscipline).then(({ list }) => {
this.subjectList = res.list; this.subjectList = list.slice(1)
this.getProfessionalClassData(list[1].disciplineId)
}).catch(err => { }).catch(err => {
}); });
}, },
// getProfessionalClassData (id) {
clearClass () {
this.form.professionalCategoryId = "";
this.form.professionalId = "";
},
//
getProfessionalClass () {
this.clearClass();
this.getProfessionalClassData();
this.initData();
},
getProfessionalClassData () {
let data = { let data = {
disciplineId: this.form.categoryId disciplineId: id || this.categoryId
}; };
this.$get(this.api.courseProfessionalClass, data).then(res => { const i = id === 1 ? 1 : 0
this.professionalClassList = res.list; this.$get(this.api.courseProfessionalClass, data).then(({ list }) => {
this.professionalClassList = list.slice(i)
if (id) this.professionalCategoryId = list[i].professionalClassId
this.getProfessionalData(list[i].professionalClassId)
}).catch(err => { }).catch(err => {
}); });
}, },
//
clearProfess () {
this.form.professionalId = "";
},
// //
getProfessional () { getProfessionalData (id) {
this.clearProfess();
this.getProfessionalData();
this.initData();
},
getProfessionalData () {
let data = { let data = {
professionalClassId: this.form.professionalCategoryId professionalClassId: id || this.professionalCategoryId
}; };
this.$get(this.api.courseProfessional, data).then(res => { const i = id === 1 ? 1 : 0
this.professionalList = res.list; this.$get(this.api.courseProfessional, data).then(({ list }) => {
this.professionalList = list.slice(i)
if (id) this.professionalId = list[i].professionalId
this.handleCategoryName()
this.initData()
}).catch(err => { }).catch(err => {
}); });
}, },
// name
handleCategoryName () {
if (this.subjectList.length) {
const id = this.categoryId
const list = this.subjectList
if (list.length) {
if (id === '' || id === 1) {
this.categoryName = list[0].disciplineName
} else {
const item = list.find(e => e.disciplineId == id)
this.categoryName = item ? item.disciplineName : ''
}
}
}
if (this.professionalClassList.length) {
const id = this.professionalCategoryId
const list = this.professionalClassList
if (list.length) {
if (id === '' || id === 1) {
this.professionalCategoryName = list[0].professionalClassName
} else {
const item = list.find(e => e.professionalClassId == id)
this.professionalCategoryName = item ? item.professionalClassName : ''
}
}
}
if (this.professionalList.length) {
const id = this.professionalId
const list = this.professionalList
if (list.length) {
if (id === '' || id === 1) {
this.professionalName = list[0].professionalName
} else {
const item = list.find(e => e.professionalId == id)
this.professionalName = item ? item.professionalName : ''
}
}
}
},
//
catetoryClick (id) {
this.categoryId = id
this.professionalCategoryId = id
this.professionalId = id
this.initData()
},
//
categoryDropdown (id, prop) {
this[prop] = id
if (prop === 'categoryId') {
this.getProfessionalClassData(id)
}
if (prop === 'professionalCategoryId') {
this.getProfessionalData(id)
}
if (prop === 'professionalId') {
this.handleCategoryName()
this.initData()
}
},
// //
getClass () { getClass () {
this.$get(this.api.productTypeList).then(res => { this.$get(this.api.productTypeList).then(res => {
@ -483,11 +575,17 @@ export default {
color: #2e2d31; color: #2e2d31;
} }
} }
.inner-wrap {
padding: 18px 0;
background: url(../../../assets/img/product/bg1.png) 0 159px no-repeat,
url(../../../assets/img/product/bg2.png) bottom right no-repeat;
background-color: #f3f6fa;
}
.inner { .inner {
width: 1146px; width: 1146px;
margin: 18px auto; margin: 0 auto;
} }
.typw-wrap { .type-wrap {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
margin-bottom: 18px; margin-bottom: 18px;
@ -565,6 +663,9 @@ export default {
color: #9278ff; color: #9278ff;
} }
} }
.category {
margin: 5px 10px 0;
}
} }
.vals { .vals {
display: inline-flex; display: inline-flex;

@ -311,7 +311,7 @@ export default {
// //
toPreview (i, j) { toPreview (i, j) {
this.form.goodsRes.logoOfOurSchool ? this.form.goodsRes.logoOfOurSchool ?
this.$router.push(`/station/preview?courseId=${this.form.mall.associatedProduct}&curriculumName=${this.form.mall.associatedProductName}&mallId=${this.id}&chapter=${i}&section=${j}&admin=1`) : this.$router.push(`/station/preview?courseId=${this.form.mall.associatedProduct}&curriculumName=${this.form.mall.productName}&mallId=${this.id}&chapter=${i}&section=${j}&admin=1`) :
this.toTrail() this.toTrail()
}, },
// / // /
@ -335,7 +335,7 @@ export default {
toStation () { toStation () {
if (this.isCourse) { // if (this.isCourse) { //
this.$post(`${this.api.addLearningRecord}?mallId=${this.id}`).then(res => { this.$post(`${this.api.addLearningRecord}?mallId=${this.id}`).then(res => {
this.$router.push('/station/preview?courseId=' + this.form.mall.associatedProduct + '&curriculumName=' + this.form.mall.associatedProductName + '&mallId=' + this.id) this.$router.push('/station/preview?courseId=' + this.form.mall.associatedProduct + '&curriculumName=' + this.form.mall.productName + '&mallId=' + this.id)
}).catch(res => { }) }).catch(res => { })
} else if (this.withLink) { // } else if (this.withLink) { //
this.linkVisible = true this.linkVisible = true
@ -377,7 +377,10 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.wrap { .wrap {
background: #f3f6fa; padding: 24px;
margin: -24px;
background: url(../../../assets/img/product/bg1.png) 0 373px no-repeat, url(../../../assets/img/product/bg2.png) bottom right no-repeat;
background-color: #f3f6fa;
.inner { .inner {
width: 1146px; width: 1146px;
margin: 0 auto; margin: 0 auto;

@ -4,7 +4,7 @@
class="m-b-20"> class="m-b-20">
<div class="flex-between"> <div class="flex-between">
<el-page-header @back="goBack" <el-page-header @back="goBack"
:content="courseName"></el-page-header> :content="curriculumName || courseName"></el-page-header>
</div> </div>
</el-card> </el-card>
<el-card shadow="hover" <el-card shadow="hover"
@ -86,7 +86,7 @@
@click="entry"> </el-button> @click="entry"> </el-button>
</div> </div>
<div class="list"> <div class="list">
<h4 class="title">{{ courseName }}</h4> <h4 class="title">{{ curriculumName || courseName }}</h4>
<div> <div>
<h6 class="pro-title">当前教学进度</h6> <h6 class="pro-title">当前教学进度</h6>
<el-progress :stroke-width="12" <el-progress :stroke-width="12"
@ -522,7 +522,7 @@ export default {
watch: { watch: {
'$route': { '$route': {
handler () { handler () {
this.mallId = this.$route.query.mallId || '' this.mallId = +this.$route.query.mallId || ''
this.courseId = +this.$route.query.courseId this.courseId = +this.$route.query.courseId
this.curriculumName = this.$route.query.curriculumName this.curriculumName = this.$route.query.curriculumName
this.commentId = this.$route.query.commentId // this.commentId = this.$route.query.commentId //
@ -667,7 +667,7 @@ export default {
// //
getComment () { getComment () {
this.$get(this.api.commentTreeList, { this.$get(this.api.commentTreeList, {
cid: this.courseId, mallId: this.mallId,
}).then(res => { }).then(res => {
this.deleteIdentity = res.deleteIdentity this.deleteIdentity = res.deleteIdentity
const list = res.rootComments const list = res.rootComments
@ -723,7 +723,7 @@ export default {
const content = reply ? reply.replyContent : row ? row.replyContent : this.comment const content = reply ? reply.replyContent : row ? row.replyContent : this.comment
if (!content) return util.errorMsg('请输入内容!') if (!content) return util.errorMsg('请输入内容!')
this.$post(this.api.addCommentStation, { this.$post(this.api.addCommentStation, {
cid: this.courseId, mallId: this.mallId,
content, content,
// pid: reply ? reply.commentId : row ? row.commentId : 0, // pid: reply ? reply.commentId : row ? row.commentId : 0,
pid: row ? row.commentId : 0, pid: row ? row.commentId : 0,

Loading…
Cancel
Save