邹畅 3 years ago
parent
commit
946d9a3a8f
1 changed files with 11 additions and 7 deletions
  1. 18
      src/views/sce/sceInfo/index.vue

18
src/views/sce/sceInfo/index.vue

@ -348,7 +348,7 @@
class="sz_container"
style="text-align:center"
>
<el-button size="mini" type="text" @click="setLc(item, i, 'img')"
<el-button size="mini" type="text" @click="setLc(item, s, 'img')"
>关联流程</el-button
>
</div>
@ -659,7 +659,7 @@
<el-button
size="mini"
type="text"
@click="setLc(item, i, 'video')"
@click="setLc(item, idx, 'video')"
>关联流程</el-button
>
</div>
@ -1207,8 +1207,6 @@ export default {
}, 500);
},
async subMit() {
console.log(this.imgType, this.musicType, this.videoType);
console.log(this.radioImg, this.radioMusic, this.radioVideo);
if (this.imgType == true && this.radioImg == 1) {
this.$message({
message: "请绑定图片相关流程",
@ -1546,7 +1544,9 @@ export default {
this.imgData.push({
url: res.data.wjUrl,
processNames: "",
title: res.data.wjDx
title: res.data.wjDx,
mediaType: 1,
sourceType:1
});
this.imgType = true;
});
@ -1559,7 +1559,9 @@ export default {
this.musicData.push({
url: res.data.wjUrl,
processNames: "",
title: res.data.wjDx
title: res.data.wjDx,
mediaType: 1,
sourceType:2
});
this.musicType = true;
});
@ -1572,7 +1574,9 @@ export default {
this.videoData.push({
url: res.data.wjUrl,
processNames: "",
title: res.data.wjDx
title: res.data.wjDx,
mediaType: 1,
sourceType:3
});
this.radioType = true;
});

Loading…
Cancel
Save