若依? vue? ?弹窗提示:
this.$modal.msgError("文件格式错误,请上传图片类型,如:JPG,PNG后缀的文件。");
this.$modal.msgSuccess("修改成功");
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除工位编号为"' + ids + '"的数据项?').then(function() {
return delGongwei(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
this.$message(' 操作提示 : 开始时间必须小于结束时间');