Showing
1 changed file
with
3 additions
and
5 deletions
| ... | @@ -48,7 +48,7 @@ | ... | @@ -48,7 +48,7 @@ |
| 48 | > | 48 | > |
| 49 | <template v-slot:content> | 49 | <template v-slot:content> |
| 50 | <div v-if="key === 'flow'" style="border-left: 1px solid #e6e6e6; width: 2px; height: 35px; position: absolute; top: 10px;"></div> | 50 | <div v-if="key === 'flow'" style="border-left: 1px solid #e6e6e6; width: 2px; height: 35px; position: absolute; top: 10px;"></div> |
| 51 | - <el-tooltip content="拖拽新增节点"> | 51 | + <el-tooltip :content="value.desc"> |
| 52 | <div :class="['vue-flow-editor-toolbar-item']"> | 52 | <div :class="['vue-flow-editor-toolbar-item']"> |
| 53 | <img style="width: 15px; height: 15px; margin-bottom: 0; margin-top: 3px;" :src="value.img" /> | 53 | <img style="width: 15px; height: 15px; margin-bottom: 0; margin-top: 3px;" :src="value.img" /> |
| 54 | <span style="font-size: 12px; transform: scale(0.8); margin-top: 2px;">{{ value.text }}</span> | 54 | <span style="font-size: 12px; transform: scale(0.8); margin-top: 2px;">{{ value.text }}</span> |
| ... | @@ -348,8 +348,6 @@ | ... | @@ -348,8 +348,6 @@ |
| 348 | <span class="dialog-footer"> | 348 | <span class="dialog-footer"> |
| 349 | <el-popconfirm | 349 | <el-popconfirm |
| 350 | v-if="state.flow_version !== state.versionForm.code" | 350 | v-if="state.flow_version !== state.versionForm.code" |
| 351 | - placement="top" | ||
| 352 | - icon="el-icon-warning" | ||
| 353 | title="是否确认启用该版本流程?" | 351 | title="是否确认启用该版本流程?" |
| 354 | width="220px" | 352 | width="220px" |
| 355 | confirm-button-text="确认" | 353 | confirm-button-text="确认" |
| ... | @@ -499,13 +497,13 @@ export default { | ... | @@ -499,13 +497,13 @@ export default { |
| 499 | controlList: { | 497 | controlList: { |
| 500 | flow: { | 498 | flow: { |
| 501 | text: '流程节点', | 499 | text: '流程节点', |
| 502 | - desc: '流程节点', | 500 | + desc: '拖拽新增流程', |
| 503 | color: '#ed8383', | 501 | color: '#ed8383', |
| 504 | img: 'https://cdn.ipadbiz.cn/oa/flow/icons-flow.png', | 502 | img: 'https://cdn.ipadbiz.cn/oa/flow/icons-flow.png', |
| 505 | }, | 503 | }, |
| 506 | cc: { | 504 | cc: { |
| 507 | text: '抄送节点', | 505 | text: '抄送节点', |
| 508 | - desc: '抄送节点', | 506 | + desc: '拖拽新增抄送', |
| 509 | color: '#ed8383', | 507 | color: '#ed8383', |
| 510 | img: 'https://cdn.ipadbiz.cn/oa/flow/icon-cc.png', | 508 | img: 'https://cdn.ipadbiz.cn/oa/flow/icon-cc.png', |
| 511 | }, | 509 | }, | ... | ... |
-
Please register or login to post a comment