zhaoxiaoqiang1
2026-01-04 f1d30d03186c79ca2cbcfe60d6d2ce7d73fba97b
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
<template>
  <div class="apply-info">
    <CommTable title="流程流转记录" :isAutoIndex="true" :list="list" :header="tableHeader"></CommTable>
  </div>
</template>
 
<script>
import CommForm from '@/components/CommForm'
import CommTable from '@/components/CommTable'
import Dialog from '@/components/Dialog'
 
import queryFlowTaskInfoCommom from '@/controller/queryFlowTaskInfoCommom'
 
export default {
  components: {
    CommTable
  },
  props: {
    conf: {
      type: Object,
      default: () => ({})
    }
  },
  data() {
    return {
      query: {},
      list: [],
      tableHeader: [],
      model: null
    }
  },
  created() {
    this.init()
  },
  methods: {
    init() {
      const { query } = this.$route
      this.query = query
      const model = queryFlowTaskInfoCommom()
      this.model = model
      this.tableHeader = model.getTableList()
      this.getList()
    },
 
    async getList() {
      const { query, model } = this
      const { objectType, serialNo } = query
      const res = await model.request({
        objectNo: serialNo,
        objectType
      })
      const { list } = res
      this.list = [...list]
    }
  }
}
</script>
 
<style lang="postcss" scoped>
</style>