Newer
Older
Nanping_sponge_JXKH / src / utils / ElMessageBox1.js
@liyingjing liyingjing on 25 Oct 354 bytes 海绵绩效考个
export default  function emgBox1(id,siteAlarmWarningInfoDelM,msg){ 
  ElMessageBox.confirm(msg, {
      confirmButtonText: "确定",
      cancelButtonText: "取消",
      type: "warning",
    }).then(() => {
      siteAlarmWarningInfoDelM(id);
      // ElMessage({
      //   type: "success",
      //   message: '操作成功',
      // });
    });
}