|
@@ -8,7 +8,8 @@
|
|
|
custom-class="side-dialog"
|
|
|
@open="visibleChange"
|
|
|
>
|
|
|
- <el-form>
|
|
|
+ <h2 style="color: #262626; margin-bottom: 10px">知识点</h2>
|
|
|
+ <!-- <el-form>
|
|
|
<el-form-item label="可选属性">
|
|
|
<property-select
|
|
|
v-model="coursePropertyId"
|
|
@@ -17,7 +18,7 @@
|
|
|
>
|
|
|
</property-select>
|
|
|
</el-form-item>
|
|
|
- </el-form>
|
|
|
+ </el-form> -->
|
|
|
<el-table
|
|
|
:data="paperData.data"
|
|
|
style="width: 100%"
|
|
@@ -72,7 +73,7 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
modalIsShow: false,
|
|
|
- coursePropertyId: "",
|
|
|
+ // coursePropertyId: "",
|
|
|
paperData: { head: [] },
|
|
|
headFirst: [],
|
|
|
headSecond: [],
|
|
@@ -89,11 +90,11 @@ export default {
|
|
|
this.modalIsShow = true;
|
|
|
},
|
|
|
async getPaperData() {
|
|
|
- if (!this.coursePropertyId) return;
|
|
|
+ // if (!this.coursePropertyId) return;
|
|
|
const res = await paperBlueInfoApi({
|
|
|
paperId: this.paperId,
|
|
|
courseId: this.courseId,
|
|
|
- coursePropertyId: this.coursePropertyId,
|
|
|
+ // coursePropertyId: this.coursePropertyId,
|
|
|
rootOrgId: this.$store.state.user.rootOrgId,
|
|
|
});
|
|
|
this.paperData = res.data;
|