提交 88555523 编写于 作者: bo.dang's avatar bo.dang

编辑直播回显

上级 046c1143
......@@ -274,7 +274,7 @@
<!-- <img v-if="!cleatBroadcast.liveInfo.mgUrl" class="video-bg-img" src="../../../static/img/small.png"> -->
</el-upload>
</el-col>
<el-col :span="16" v-if="formData.rtcMaterial.fileName != ''">
<el-col :span="16" v-if="formData.rtcMaterial != null && formData.rtcMaterial.fileName != ''">
<el-progress
:text-inside="true"
......@@ -884,7 +884,7 @@
beforeUploadPdf(file) {
let fileLimit = {
size: 100,
sizeText: "2Mb",
sizeText: "100Mb",
key: "imageContent",
more: "imgUrl1More",
show: "uploadImgMessage1"
......@@ -924,9 +924,17 @@
// else {
// vm.fileSize = file.size;
// }
this.formData.rtcMaterial.fileName = file.name;
this.formData.rtcMaterial.fileSize = file.size;
this.formData.rtcMaterial.rtcId = this.rtcId;
// this.formData.rtcMaterial.fileName = file.name;
// this.formData.rtcMaterial.fileSize = file.size;
// this.formData.rtcMaterial.rtcId = this.rtcId;
this.formData.rtcMaterial = {
fileName: file.name,
fileSize: file.size,
fileUrl: "",
rtcId: this.rtcId,
};
// 初始化
this.uploadProgress1 = Number("0.00");
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册