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
| <template>
| <div class="apply-info">
| <CommForm :inline="true" :list="formList" formType="info" ref="applyForm" title="贴息信息"></CommForm>
| </div>
| </template>
| <script>
| // 贴息信息
| import { mapMutations } from 'vuex'
| import CommForm from '@/components/CommForm'
| import disCountInfo from '@/controller/disCountInfo'
|
| export default {
| components: {
| CommForm
| },
| props: {
| conf: {
| type: Object,
| default: () => ({})
| }
| },
| 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, conf } = this
| const { serialNo,discountWay } = query
| const { edit } = conf
| const model = disCountInfo(query)
| const info = await model.request({
| payDate: '',
| serialNo,
| discountWay
| })
| this.setDiscountWay(info.discountWay)
| // const formList = model.getFormList(info)
| // this.formList =
| // edit === 'Y'
| // ? formList
| // : formList.map(item => ({ ...item, type: 'text' }))
| this.formList = model.getFormList(info)
| this.model = model
| },
| ...mapMutations(['setDiscountWay'])
| },
| watch: {
| $route() {
| const { serialNo } = this.$route.query
| if (serialNo) {
| this.init()
| }
| }
| }
| }
| </script>
| <style lang="postcss" scoped>
| .apply-info {
| }
| </style>
|
|