| | |
| | | <template #footer> |
| | | <span class="avue-dialog__footer"> |
| | | <el-button @click="handleNutflowClose(() => {}, true)">取 消</el-button> |
| | | <el-button v-if="nutflowOption.step === 1" type="success" @click="handleStep(1)">下 一 步</el-button> |
| | | <el-button v-if="nutflowOption.step === 2" type="success" @click="handleStep(-1)">上 一 步</el-button> |
| | | <el-button color="#4C34FF" v-if="nutflowOption.step === 1" type="success" @click="handleStep(1)">下 一 步</el-button> |
| | | <el-button color="#4C34FF" v-if="nutflowOption.step === 2" type="success" @click="handleStep(-1)">上 一 步</el-button> |
| | | <el-button v-if="nutflowOption.step === 2" type="primary" @click="handleSubmitModel">确 定</el-button> |
| | | </span> |
| | | </template> |
| | |
| | | } |
| | | </script> |
| | | |
| | | <style scoped lang="scss"></style> |
| | | <style scoped lang="scss"> |
| | | :deep() { |
| | | /* 隐藏右下角的 BPMN.io 标识 */ |
| | | .bjs-powered-by, |
| | | .bjs-powered-by *, |
| | | .bjs-powered-by-overlay, |
| | | [data-id="logo-bpmn-io"], |
| | | .bpmn-io-logo, |
| | | [data-overlay-id="powered-by"], |
| | | .overlay-sidebar-powered-by, |
| | | a[href="https://bpmn.io"] { |
| | | display: none !important; |
| | | } |
| | | } |
| | | </style> |