24d3590f
wuxw
房屋收费页面开发完成
|
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
<template>
<el-dialog
:title="batchFeeCycleInfo.fee.feeName"
:visible.sync="visible"
width="500px"
:before-close="handleClose"
>
<el-form label-width="120px">
<el-form-item :label="$t('batchFeeCycle.paymentCycle')">
<el-select
v-model="batchFeeCycleInfo.tempCycle"
@change="changeTempCycle"
style="width:100%"
:placeholder="$t('batchFeeCycle.selectCycleTip')"
>
<el-option
value="-100"
:label="$t('batchFeeCycle.default')"
></el-option>
<el-option
value="-102"
:label="$t('batchFeeCycle.customCycle')"
></el-option>
<el-option
value="-101"
:label="$t('batchFeeCycle.customAmount')"
></el-option>
<el-option
value="-103"
:label="$t('batchFeeCycle.customEndTime')"
></el-option>
</el-select>
</el-form-item>
<el-form-item
v-if="batchFeeCycleInfo.tempCycle === '-101'"
:label="$t('batchFeeCycle.customAmount')"
>
<el-input
type="number"
v-model="batchFeeCycleInfo.receivedAmount"
:placeholder="$t('batchFeeCycle.enterCustomAmount')"
></el-input>
</el-form-item>
<el-form-item
v-if="batchFeeCycleInfo.tempCycle === '-102'"
:label="$t('batchFeeCycle.actualCycle')"
>
<el-input
type="number"
v-model="batchFeeCycleInfo.cycles"
:placeholder="$t('batchFeeCycle.enterActualCycle')"
></el-input>
</el-form-item>
<el-form-item
v-if="batchFeeCycleInfo.tempCycle === '-103'"
:label="$t('batchFeeCycle.endTime')"
>
<el-date-picker
v-model="batchFeeCycleInfo.custEndTime"
type="date"
style="width:100%"
:placeholder="$t('batchFeeCycle.selectEndTime')"
value-format="yyyy-MM-dd"
></el-date-picker>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="handleClose">{{ $t('common.cancel') }}</el-button>
<el-button type="primary" @click="_doSubmitFeeCycle">{{ $t('common.confirm') }}</el-button>
</span>
</el-dialog>
</template>
<script>
export default {
name: 'BatchFeeCycle',
data() {
return {
visible: false,
batchFeeCycleInfo: {
cycles: '',
tempCycle: '',
custEndTime: '',
receivedAmount: '',
fee: {}
}
}
},
methods: {
open(fee) {
this.batchFeeCycleInfo = {
cycles: fee.cycles,
tempCycle: fee.tempCycle,
receivedAmount: fee.receivedAmount,
fee: { ...fee }
}
this.visible = true
},
handleClose() {
this.visible = false
},
changeTempCycle() {
const tempCycle = this.batchFeeCycleInfo.tempCycle + ""
if (tempCycle !== '-100') {
this.batchFeeCycleInfo.cycles = "1"
}
},
_doSubmitFeeCycle() {
const updatedFee = {
...this.batchFeeCycleInfo.fee,
tempCycle: this.batchFeeCycleInfo.tempCycle,
cycles: this.batchFeeCycleInfo.cycles,
custEndTime: this.batchFeeCycleInfo.custEndTime,
receivedAmount: this.batchFeeCycleInfo.receivedAmount
}
this.$emit('changeMonth', updatedFee)
this.handleClose()
}
}
}
</script>
<style lang="scss" scoped>
::v-deep .el-dialog__body {
padding: 20px;
}
</style>
|