This commit is contained in:
daihh
2022-08-31 19:24:35 +08:00
parent c398ba0ed0
commit 5da2052ed0
2 changed files with 7 additions and 1 deletions

View File

@@ -374,7 +374,8 @@
{id:'5',type:'link',name:'外部连接',img:'el-icon-link',resType:52},
{id:'6',type:'exam',name:'考试',img:'el-icon-document-checked',resType:61},
{id:'7',type:'homework',name:'作业',img:'el-icon-reading',resType:60},
{id:'8',type:'assess',name:'评估',img:'el-icon-user',resType:62}
{id:'8',type:'assess',name:'评估',img:'el-icon-user',resType:62},
{id:'9',type:'scorm',name:'SCORM',img:'el-icon-folder',resType:50}
],
htmlContent:'',
linkInfo:{

View File

@@ -28,6 +28,7 @@
<div class="grid-content bg-purple">
<el-select v-model="params.resType" clearable placeholder="课件类型">
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"></el-option>
<el-option label="SCORM" value="60"></el-option>
</el-select>
</div>
</el-col>
@@ -144,6 +145,9 @@
<div style="margin-top: 10px">
<file-upload dir="files" :showList="true" :value="imageShowUrl" :limit="5" @success="handleUploadSuccess" @remove="handleRemoveSuccess"></file-upload>
</div>
<div style="padding: 20px;">
<el-checkbox v-model="scorm" label="SCORM课件"></el-checkbox>
</div>
</div>
<div style="margin-top: 10px">
<el-table border stripe :data="fileList" style="width: 100%" @selection-change="handleSelectionChange">
@@ -308,6 +312,7 @@ export default {
form: {
device1:false,
device2:false,
scorm:0,
},
editCoursewareShow: false,
currentPage4: 4,