|
|
@@ -303,20 +303,19 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
if (!this.materialTime) {
|
|
|
- alert("素材事件不能为空");
|
|
|
+ alert("素材时间不能为空");
|
|
|
return;
|
|
|
}
|
|
|
if (!this.file) {
|
|
|
alert("请导入附件");
|
|
|
return;
|
|
|
}
|
|
|
- }
|
|
|
this.submitRequest();
|
|
|
+ }
|
|
|
},
|
|
|
// 获取文件名
|
|
|
getFileInfo: function (event) {
|
|
|
this.file = event.target.files;
|
|
|
- console.log(this.file)
|
|
|
this.fileDes = [];
|
|
|
this.file.forEach((item) => {
|
|
|
this.fileDes.push(item.name);
|