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

Loading…
Cancel
Save