1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
| <template>
| <div ref="container">
| <a-modal
| :title="title"
| :width="width"
| :visible="visible"
| :getContainer="() => $refs.container"
| :maskStyle="{'top':'93px','left':'154px'}"
| :wrapClassName="wrapClassNameInfo()"
| :mask="isDesktop()"
| :maskClosable="false"
| :style="modalStyle"
| @cancel="handleCancel"
| cancelText="关闭">
| <template slot="footer">
| <a-button key="back" @click="handleCancel">取消</a-button>
| <a-button type="primary" :loading="loading" @click="handleSubmit">确认提交</a-button>
| </template>
| <a-form :form="form">
| <template>
| <iframe :src="sendWorkflowUrl" width="100%" :height="height" frameborder="0" scrolling="no"></iframe>
| </template>
| <template>
| <a-row>
| <a-col>
| <a-form-item>
| <a-input v-decorator="['id']" hidden/>
| </a-form-item>
| </a-col>
| </a-row>
| </template>
| </a-form>
| </a-modal>
| </div>
| </template>
|
| <script>
| import pick from 'lodash.pick'
| import {mixinDevice} from '@/utils/mixin'
| import { postAction } from '@api/manage'
| export default {
| name: 'WorkflowIframe',
| mixins: [mixinDevice],
| data () {
| return {
| title: "发起流程",
| width: '500px',
| visible: false,
| modalStyle: '',
| sendWorkflowUrl: '',
| height: "",
| model: {},
| form: this.$form.createForm(this),
| loading: false,
| }
| },
| created () {
| },
| methods: {
| show(record, sendWorkflowUrl, billNo, type, height) {
| this.height = height
| this.sendWorkflowUrl = sendWorkflowUrl
| //单号
| this.billNo = billNo
| //1-进销存单据 2-财务单据 3-生产单据
| this.bigType = type
| this.visible = true
| this.modalStyle = 'top:20%; height: 55%;'
| this.model = Object.assign({}, record)
| this.$nextTick(() => {
| this.form.setFieldsValue(pick(this.model,'id'))
| });
| },
| handleSubmit() {
| const that = this
| let formData = {}
| formData.bigType = this.bigType
| formData.billNo = this.billNo
| that.loading = true
| postAction('/api/plugin/workflow/workflowTask/add', formData).then((res)=>{
| if(res.code === 200){
| that.$message.success('提交成功!')
| that.close()
| setTimeout(function (){
| that.$emit('ok')
| },2000)
| }else{
| that.$message.warning(res.data.message)
| }
| }).finally(() => {
| that.loading = false
| })
| },
| handleCancel() {
| this.close()
| },
| close() {
| this.sendWorkflowUrl = ''
| this.$emit('close')
| this.visible = false
| this.modalStyle = ''
| }
| }
| }
| </script>
|
| <style scoped>
|
| </style>
|
|