弹框提示

   UI.Confirm('切换医疗单位,是否继续?', '三佳提示', {})
        .then(() => {
          //  清空右上表格数据
          this.$refs['dynamicValidateForm'].resetFields();
        })
     .catch(() => {});

  

   this.$confirm('是否确认删除?', '三佳提示', {
      confirmButtonText: '确定',
      cancelButtonText: '取消',
      type: 'warning'
    }).then(async () => {
      this.initSetDeptOfficeWindowsForm = [];
      this.initSetDeptOfficeWindowsFormAggrid();
    }).catch(() => {
      this.$message({
        type: 'info',
        message: '已取消删除'
      });
    });

  

posted @ 2019-06-27 14:17  龙旋风  阅读(246)  评论(2)    收藏  举报