zoukankan      html  css  js  c++  java
  • BOS消息对话框

    1、是/取消

    1 if (MsgBox.showConfirm2("在出盘前,请确认是否已经完成了预算冲抵、金额调整操作。您确认出盘?") != 0) {
    2     SysUtil.abort();
    3 }

    2、是/否/取消

     1 int i = MsgBox.showConfirm3("请选择是否走OA审批流程?");
     2 System.out.println("------i:"+i);
     3 if(i==0)
     4 {
     5     MsgBox.showInfo("走OA审批");
     6     showFilterDialog();
     7 }else if(i==1)
     8 {
     9     //直接保存
    10     MsgBox.showInfo("直接保存");
    11 }else
    12 {
    13     SysUtil.abort();
    14 }
  • 相关阅读:
    poj1581
    poj3094
    poj2196
    poj1003
    poj2262
    poj1083
    poj3299
    poj2739
    poj1552
    js 获取元素高度和宽度
  • 原文地址:https://www.cnblogs.com/kumarson/p/3285246.html
Copyright © 2011-2022 走看看