Commit 860f43d1e368ee01b6280ab6cfa4e3c3d6a4681e

Authored by fengtao
1 parent 3fce86e5

pref:场景联动优化提示信息

... ... @@ -18,9 +18,7 @@
18 18 <!-- <Divider orientation="left">触发器</Divider> -->
19 19 <Divider orientation="left">
20 20 <a-tooltip>
21   - <template #title
22   - >场景联动触发的首要条件,"触发器"之间的关系为或,“执行条件”与“触发器”之间的关系为且。</template
23   - >
  21 + <template #title>触发器不可为空,消息只要满足触发条件中任意一个即可触发。</template>
24 22 触发器
25 23 <QuestionCircleOutlined :style="{ fontSize: '14px', marginLeft: '5px' }" />
26 24 </a-tooltip>
... ... @@ -39,7 +37,7 @@
39 37 <!-- 按钮 -->
40 38 <a-button type="primary" class="mt-4" @click="addTrigger" v-if="isView">
41 39 <PlusOutlined />
42   - 新增触发器<span style="visibility: hidden">发</span>
  40 + 触发器(OR)<span style="visibility: hidden">发</span>
43 41 </a-button>
44 42 <!-- 按钮 -->
45 43 </div>
... ... @@ -48,10 +46,7 @@
48 46 <!-- 执行条件-begin -->
49 47 <Divider orientation="left">
50 48 <a-tooltip>
51   - <template #title
52   - >场景联动触发的次要条件,"执行条件"之间的关系为或,
53   - “执行条件”与“触发器”之间的关系为且。</template
54   - >
  49 + <template #title>执行条件可为空,消息需要满足所有执行条件才会被处理。</template>
55 50 执行条件
56 51 <QuestionCircleOutlined :style="{ fontSize: '14px', marginLeft: '5px' }" />
57 52 </a-tooltip>
... ... @@ -70,7 +65,7 @@
70 65 <!-- 按钮 -->
71 66 <a-button type="primary" class="mt-4" @click="addCondition" v-if="isView">
72 67 <PlusOutlined />
73   - 新增执行条件
  68 + 执行条件(AND)
74 69 </a-button>
75 70 <!-- 按钮 -->
76 71 </div>
... ...