linwei
2024-01-04 0270a1c72a4496ee88c0778cbc5fe22b17d9993e
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
110
111
112
113
114
115
116
117
118
119
120
<template>
  <avue-form :option="option" v-model="data"></avue-form>
</template>
<script>
  import {
    getDetail
  } from "@/api/task/labelReporting"
  export default {
    data() {
      return {
        data: {},
        option: {
          submitBtn: false,
          emptyBtn: false,
          column: [{
            label: '发生时间',
            prop: 'happenTime',
            disabled: true,
          }, {
            label: '身份证图片',
            prop: 'imageUrls',
            fileType: 'img',
            type: "upload",
            listType: "picture-card",
            dataType: "string",
            disabled: true,
          }, {
            label: '确认标记',
            prop: 'confirmFlag',
            disabled: true,
          }, {
            label: '确认时间',
            prop: 'confirmTime',
            disabled: true,
          }, {
            label: '位置',
            prop: 'localtion',
            disabled: true,
          }, {
            label: '确认意见',
            prop: 'confirmNotion',
            disabled: true,
          }, {
            label: '确认标记',
            prop: 'confirmFlag',
            type: 'select',
            dicData: [{
              label: '待审核',
              value: '1'
            }, {
              label: '审核通过',
              value: '2'
            }, {
              label: '审核不通过',
              value: '3'
            }],
            disabled: true,
          }, {
            label: '手机号',
            prop: 'phoneNumber',
            disabled: true,
          }, {
            label: '房屋名称',
            prop: 'houseName',
            disabled: true,
          }, {
            label: '对象电话',
            prop: 'transactionObjectTel',
            disabled: true,
          }, {
            label: '交易金额',
            prop: 'transactionMoney',
            disabled: true,
          }, {
            label: '物品数量',
            prop: 'goodsNums',
            disabled: true,
          }, {
            label: '物品照片',
            prop: 'goodsImageUrls',
            fileType: 'img',
            type: "upload",
            listType: "picture-card",
            dataType: "string",
            disabled: true,
          }, {
            label: '交易对象',
            prop: 'transactionObject',
            disabled: true,
          }, {
            label: '交易过程',
            prop: 'transactionProcess',
            disabled: true,
          }, {
            label: '创建时间',
            prop: 'createTime',
            disabled: true,
          }, ]
        }
      }
    },
    methods: {
      init(data) {
        this.getTaskDetail(data.id)
      },
 
      getTaskDetail(taskId) {
        getDetail({
          taskId: taskId
        }).then((res) => {
          this.data = res.data.data
        })
      }
 
    }
  }
</script>
 
<style>
</style>