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
| <template>
| <div class="apply-info">
| <CommForm :inline="true" formType="info" :list="formList" ref="applyForm" title="交易信息"></CommForm>
| </div>
| </template>
| <script>
| // 转账认领撤销申请交易信息
| import CommForm from '@/components/CommForm'
| import queryTransApplyInfo from '@/controller/queryTransApplyInfo'
|
| export default {
| components: {
| CommForm
| },
| data() {
| return {
| info: {},
| query: {},
| formList: [],
| model: null
| }
| },
| created() {
| this.init()
| },
| methods: {
| init() {
| const { query } = this.$route
| this.query = query
| this.getDetail()
| },
| async getDetail() {
| const { query } = this
| const { transSerialNo, transCodeOne } = query
| const model = queryTransApplyInfo()
| const info = await model.request({
| transSerialNo,
| transCode: transCodeOne
| })
| this.formList = model.getFormList(info)
| // .map(item => ({ ...item, type: 'text' }))
| this.model = model
| }
| },
| watch: {
| // $route() {
| // const { trxnBr } = this.$route.query
| // if (trxnBr) {
| // this.init()
| // }
| // }
| }
| }
| </script>
| <style lang="postcss" scoped>
| .apply-info {
| }
| </style>
|
|