Commit 4c96e116 authored by liqin's avatar liqin 💬

bug fixed

parent 72f51c80
......@@ -267,8 +267,7 @@ export default {
authType: this.backToken
}
// param
)
.then(res => {
).then(res => {
let data = res.data.data;
// this.ruleForm = data;
console.log(this.ruleForm)
......@@ -286,11 +285,10 @@ export default {
audioIdList:data.audioIdList,
datumIdList:data.datumIdList
}
}).catch(function(err) {
}).catch(function(err) {
console.log(err);
});
});
},
// 新建视频分类
addVideoClass() {
this.dialogVisible = true;
......@@ -298,8 +296,8 @@ export default {
// 弹窗保存
save(formName) {
this.$refs[formName].validate(valid => {
this.ruleForm.expireDateEnd = this.value1[1];
this.ruleForm.expireDateStart = this.value1[0];
this.ruleForm.expireDateEnd = this.value1[1];
if (valid) {
this.$https(
{
......@@ -333,7 +331,7 @@ export default {
if (valid) {
this.$https(
{
url: "/exhibitionBoard/save",
url: "exhibitionBoard/save",
method: "post",
authType: this.backToken
},
......
......@@ -322,7 +322,7 @@ export default {
if (valid) {
this.$https(
{
url: "/videoContent/save",
url: "videoContent/save",
method: "post",
authType: this.backToken
},
......
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