Commit 3bb32123 authored by zhangjianqian's avatar zhangjianqian

回显问题

parent 4d27df41
......@@ -230,6 +230,7 @@
},
},
created() {
console.log(this.fileArr);
// this.fileList = this.list;
this.addShow = this.fileArr.length > 0 ? true : false;
},
......
......@@ -11,14 +11,14 @@
class="add-lession"
:title="title"
:visible.sync="visible"
width="1000px"
width="1050px"
:close-on-click-modal="false"
:close-on-press-escape="false"
:before-close="dialogCancel"
@closed="closeFinished"
destroy-on-close
>
<div v-if="visible" ref="myBody" class="body">
<div v-if="visible" ref="myBody" class="body ">
<transition name="fade" mode="out-in">
<component
:is="currentComponent"
......
......@@ -204,7 +204,7 @@ export default {
getLessonById(this.courseId).then((res) => {
if (res.code == 200) {
const data = res.data;
const { courseName, courseType, courseConent, video, enclosure } =
const { courseName, courseType, courseConent, video, enclosure,duration,testStartTime,testEndTime } =
data;
this.form = {
courseName,
......@@ -212,6 +212,9 @@ export default {
courseConent,
video,
enclosure,
duration,
testStartTime,
testEndTime
};
this.fileListVideo = [
{
......@@ -225,6 +228,7 @@ export default {
url: uploadfile,
},
];
console.log("--",this.fileListFile);
}
});
},
......@@ -303,7 +307,7 @@ export default {
.form-wrapper {
padding-top: 22px;
width: 100%;
height: 550px;
height: 650px;
overflow: hidden;
// padding-bottom: 10px;
margin-bottom: 20px;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment