<style>
  #temp-video-cover {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11;
    background-color: rgba(0, 0, 0, 0.3);
    transition: .15s;
    opacity: 0;
    font-family: "微软雅黑", "PingFangSC", "Helvetica neue", "Hiragino sans gb", "Arial", "Microsoft YaHei UI", "Microsoft YaHei", "SimSun", "sans-serif";
    user-select: none;
    -ms-user-select: none;
  }


  #temp-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  #temp-video-title {
    position: absolute;
    opacity: 0;
    right: 10px;
    top: 0px;
    transition: .15s;
  }

  #temp-video-container:hover #temp-video-title {
    display: inline;
    opacity: 1;
    top: 10px;
  }

  .FUI-dialog-header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.8rem 0.5rem 1rem;
    background-color: rgb(0, 135, 205);
    border-color: rgb(0, 135, 205);
  }

  .FUI-dialog-header-title {
    font-size: 1rem;
    word-break: keep-all;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    flex-grow: 1;
    color: white;
  }

  .FUI-dialog-header-close {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.8rem;
    line-height: 1.25rem;
    border-radius: 0.9rem;
    color: #0088CE;
    text-align: center;
    transition: background-color 0.5s;
    cursor: pointer;
    background-color: #2FB8FF;
  }

  .FUI-dialog-header-close:hover {
    cursor: pointer;
    background-color: #6ACCFF;
  }

  .FUI-dialog-content {
    position: relative;
    flex-grow: 1;
    background-color: rgb(0, 135, 205);
    font-size: 0;
  }

  .FUI-dialog-footer {
    position: relative;
    height: 3rem;
    min-height: 3rem;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0.5rem;
    background-color: #F0F0F0;
  }

  .FUI-button-svg {
    display: inline-block;
  }

  #speed-box {
    background-color: #070707;
    border-color: #070707;
    color: #8B8B8B;
    display: flex;
    justify-content: flex-end;
    height: 2rem;
    align-items: center;
    font-weight: 200;
  }

  .speed-box-header {
    font-size: 0.9rem;
    cursor: default;
  }

  .speed-box-content {
    display: flex;
    font-size: 0.7rem;
  }

  .speed-box-content>div {
    width: 2.7rem;
    height: 1.2rem;
    background-color: #373737;
    margin: 0 0.5rem;
    text-align: center;
    line-height: 1.2rem;
    border-radius: 0.6rem;
    cursor: pointer;
  }

  .speed-box-content>div:hover {
    background-color: #555555;
    color: #FFFFFF;
  }

  .speed-box-content .speed-box-selected {
    background-color: #767676;
    color: #FFFFFF;
  }

  .speed-box-content .speed-box-selected:hover {
    background-color: #767676;
  }
</style>
<div style="text-align:right;">
  <a title="观看本节视频" href="javascript:showVideo();" style="text-decoration:none;">
    <img src="https://help.grapecity.com.cn/download/attachments/46173032/VideoPortal.png?api=v2" />
  </a>
</div>

<div id="temp-video-cover">
  <div id="temp-video-container">
    <div class="FUI-dialog-header">
      <span class="FUI-dialog-header-title">活字格视频</span>
      <div class="FUI-dialog-header-close" id="FUI-dialog-close" title="" onclick="closeVideo()">
        <span class="FUI-button-svg"></span><span class="FUI-button-text">&#10005;</span></div>
    </div>

    <div class="FUI-dialog-content">
      <div style="overflow:hidden;">
        <video id="temp-video" src="http://video1.grapecity.com.cn/HuoZiGe/Tutorials/v5.0/教学视频/命令-条件-条件表达式.mp4"
          height="450" controls="controls" onplaying="startplay()">您的浏览器不支持播放此视频。</video>
      </div>
    </div>
    <div id="speed-box">
      <div class="speed-box-header">
        <div>倍速:</div>
      </div>
      <div class="speed-box-content">
        <div>0.5X</div>
        <div class="speed-box-selected">1.0X</div>
        <div>1.25X</div>
        <div>1.5X</div>
        <div>2.0X</div>
      </div>
    </div>
  </div>
</div>

<script>
  var videoContainer = document.getElementById("temp-video-container");
  var videoCover = document.getElementById("temp-video-cover");
  var video = document.getElementById("temp-video");

  function showVideo() {
    videoCover.style.display = "block";
    setTimeout(function () {
      videoCover.style.opacity = 1;
      video.play();
    }, 200);
  }

  function closeVideo() {
    videoCover.style.opacity = 0;
    setTimeout(function () {
      videoCover.style.display = "none";
      video.pause();
    }, 150);
    return false;
  }

  function setPlaySpeed(item) {
    video.playbackRate = parseFloat(item.textContent);
    document.getElementsByClassName("speed-box-selected")[0].classList.remove("speed-box-selected");
    item.classList.add("speed-box-selected");
  }

  var isplayed = 1;
  var startplay = function () {
    if (isplayed) {
      ga('send', 'event', 'Play Video', '活字格');
      isplayed = 0;
    }
    return false;
  }

  videoCover.onclick = function (e) {
    if (e.target.nodeName === "A") {
      closeVideo();
    }
  }

  document.querySelectorAll("#speed-box .speed-box-content>div").forEach((item) => {
    item.addEventListener('click', () => { setPlaySpeed(item) });
  });

</script>

1.描述

设置条件命令时,条件可选择“条件表达式”,满足设置的条件时,即可执行相应的命令。

单击“新建条件”,添加一个或多个条件。多个条件以并且/或者的关系关联。

选中一个条件,单击“删除条件”即可将该条件删除。单击可将条件上移或下移。

图1  条件表达式

表1  条件设置说明

设置

说明

关系

通过并且/或者把条件与之前的条件连接在一起。

括号

您可以把条件用括号括在一起,最多指定四层括号。
通过括号您可以设置如“((A并且B)或者(C并且D)”的复杂表达式。

字段

选择字段,可选择数据源、页面元素或登录用户。

创建者、创建日期、最后更新者、最后更新日期是活字格自动添加的,您也可以选择查询此类字段。

操作

比较字段和值的条件,如等于、大于或不等于等条件。

输入用来比较的值、公式或者一些特定的关键字。可直接输入,或单击选择单元格或输入公式,并将单元格的值或公式的结果作为条件的值

内置关键字如下:

  • %Null%:既表示没有输入(empty),也表示没有定义(null)。查询空值时,需将值选为“%Null%”。
  • %CurrentUer.UserName%:表示登录用户的用户名。
  • %CurrentUer.FullName%:表示登录用户的全名。
  • %CurrentUer.Email%:表示登录用户的Email地址。
  • %CurrentUer.Role%:表示登录用户的组。
  • %CurrentUser.OrganizationSuperior%:表示登录用户的组织上级。

2.条件表达式

选择条件表达式后,单击“新建条件”,可添加多个条件。下面介绍条件表达式的使用方法。

例如,在首页页面中,有一个按钮,当经理角色的用户单击此按钮时,会跳转到订单列表页;其他用户单击此按钮时,则会弹出消息框。

操作步骤

  在首页页面中,选择一片单元格区域,其类型选择为“登录用户”,并设置一个“查看订单”按钮,设置命令为“条件”命令。

图2  设置条件命令

  设置条件。单击“If [条件表达式]”,单击“新建条件”,设置字段为“登录用户.角色”,操作为“等于”,值为“经理”。

设置完成后,单击“确定”。

图3  设置条件

  设置命令。单击“If [条件表达式]”下的“[空命令]”,在右侧的“选择命令”组合框中选择命令“页面跳转”,页面选择“订单列表”。

设置完成后,单击“确定”。

图4  设置命令

  添加条件分支。选择“添加Else”。

图5  添加条件分支

  单击“Else”下面的“[空命令]”,在右侧的“选择命令”组合框中选择命令“弹出消息框”。

设置完成后,单击“确定”关闭选择命令窗口,并关闭命令窗口。

图6  设置命令

  运行页面后,需要登录用户。

使用小李的帐户登录,小李的角色为经理。登录后,单击“查看订单”,跳转到订单列表页面。如下图所示。

图7  使用小李的帐户登录

  使用小王的帐户登录,小王没有设置角色。登录后,单击“查看订单”,弹出消息框,如下图所示。

图8  使用小王的帐户登录



回到顶部