style:图形定位
Showing
2 changed files
with
36 additions
and
2 deletions
| 1 | <!-- | ||
| 2 | * @Description: | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-07-12 14:20:58 | ||
| 5 | --> | ||
| 6 | <template> | ||
| 7 | <div> | ||
| 8 | 图形定位 | ||
| 9 | </div> | ||
| 10 | </template> | ||
| 11 | <script> | ||
| 12 | export default { | ||
| 13 | props: { | ||
| 14 | formData: { | ||
| 15 | type: Object, | ||
| 16 | default: {} | ||
| 17 | } | ||
| 18 | }, | ||
| 19 | data () { | ||
| 20 | return { | ||
| 21 | } | ||
| 22 | }, | ||
| 23 | methods: { | ||
| 24 | } | ||
| 25 | } | ||
| 26 | </script> | ||
| 27 | <style scoped lang='scss'> | ||
| 28 | </style> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-06-26 17:03:07 | 4 | * @LastEditTime: 2023-07-12 14:20:44 |
| 5 | */ | 5 | */ |
| 6 | import { getWorkFlowImage } from "@/api/workflow/jsydsyqFlow.js"; | 6 | import { getWorkFlowImage } from "@/api/workflow/jsydsyqFlow.js"; |
| 7 | import { getPrintTemplateByCode } from "@/api/system"; | 7 | import { getPrintTemplateByCode } from "@/api/system"; |
| ... | @@ -76,7 +76,7 @@ export default { | ... | @@ -76,7 +76,7 @@ export default { |
| 76 | rejectedTaskSet: {}, | 76 | rejectedTaskSet: {}, |
| 77 | finishedSequenceFlowSet: result.finishedSequenceFlowIds | 77 | finishedSequenceFlowSet: result.finishedSequenceFlowIds |
| 78 | }, | 78 | }, |
| 79 | handlinglist:result.runningTasks, | 79 | handlinglist: result.runningTasks, |
| 80 | allCommentList: result.finishedTasks | 80 | allCommentList: result.finishedTasks |
| 81 | }, '80%', true) | 81 | }, '80%', true) |
| 82 | }) | 82 | }) |
| ... | @@ -143,6 +143,12 @@ export default { | ... | @@ -143,6 +143,12 @@ export default { |
| 143 | bsm: '' | 143 | bsm: '' |
| 144 | }, '90%', true) | 144 | }, '90%', true) |
| 145 | break; | 145 | break; |
| 146 | // 图形定位 | ||
| 147 | case "B-TXDW": | ||
| 148 | this.$popupDialog('图形定位', 'workflow/components/dialog/txdw', { | ||
| 149 | bsm: '' | ||
| 150 | }, '60%', true) | ||
| 151 | break; | ||
| 146 | case "back": //退回按钮 | 152 | case "back": //退回按钮 |
| 147 | this.$popupDialog("退回", "workflow/components/th", { | 153 | this.$popupDialog("退回", "workflow/components/th", { |
| 148 | bsmSlsq: this.bsmSlsq, | 154 | bsmSlsq: this.bsmSlsq, | ... | ... |
-
Please register or sign in to post a comment