评论管理
This commit is contained in:
49
src/views/modules/course/commontList.vue
Normal file
49
src/views/modules/course/commontList.vue
Normal file
@@ -0,0 +1,49 @@
|
||||
<template>
|
||||
<div class="mod-config">
|
||||
<div
|
||||
style="padding:0 20px;box-sizing: border-box;height:calc(100% - 100px);"
|
||||
>
|
||||
<common-commont
|
||||
ref="commonCommont"
|
||||
|
||||
|
||||
></common-commont>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
import commonCommont from "@/views/components/courseList/commont.vue";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
aaa:111,
|
||||
};
|
||||
},
|
||||
components: {
|
||||
|
||||
commonCommont
|
||||
},
|
||||
activated() {
|
||||
this.$nextTick(() => {
|
||||
this.$refs.commonCommont.init();
|
||||
});
|
||||
},
|
||||
created(){
|
||||
this.$nextTick(() => {
|
||||
this.$refs.commonCommont.init();
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
|
||||
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<style lang="less" scoped>
|
||||
.mod-config{
|
||||
height: 80vh;
|
||||
}
|
||||
</style>
|
||||
@@ -169,7 +169,7 @@
|
||||
fixed="right"
|
||||
header-align="center"
|
||||
align="center"
|
||||
width="340"
|
||||
width="280"
|
||||
label="操作"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
@@ -195,12 +195,12 @@
|
||||
@click="handleQuestionBank(scope.row)"
|
||||
>题库管理</el-button
|
||||
>
|
||||
<el-button
|
||||
<!-- <el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click="showLinkComment(scope.row)"
|
||||
>评论管理<i class="el-icon-s-comment"></i
|
||||
></el-button>
|
||||
></el-button> -->
|
||||
<el-button type="text" size="small" @click="showLinkTags(scope.row)"
|
||||
>查看引用</el-button
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user