editContractPartya.vue
3.57 KB
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
136
137
138
<template>
<el-dialog
:title="$t('contractPartyaManage.edit.title')"
:visible.sync="visible"
width="50%"
@close="handleClose"
>
<el-form ref="form" :model="formData" :rules="rules" label-width="120px">
<el-form-item
:label="$t('contractPartyaManage.form.partyA')"
prop="partyA"
>
<el-input
v-model="formData.partyA"
:placeholder="$t('contractPartyaManage.form.partyAPlaceholder')"
/>
</el-form-item>
<el-form-item
:label="$t('contractPartyaManage.form.aContacts')"
prop="aContacts"
>
<el-input
v-model="formData.aContacts"
:placeholder="$t('contractPartyaManage.form.aContactsPlaceholder')"
/>
</el-form-item>
<el-form-item
:label="$t('contractPartyaManage.form.aLink')"
prop="aLink"
>
<el-input
v-model="formData.aLink"
:placeholder="$t('contractPartyaManage.form.aLinkPlaceholder')"
/>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="visible = false">
{{ $t('common.cancel') }}
</el-button>
<el-button type="primary" @click="handleSubmit">
{{ $t('common.confirm') }}
</el-button>
</span>
</el-dialog>
</template>
<script>
import { updateContractPartya } from '@/api/contract/contractPartyaManageApi'
import { getCommunityId } from '@/api/community/communityApi'
export default {
name: 'EditContractPartya',
data() {
return {
visible: false,
formData: {
partyaId: '',
partyA: '',
aContacts: '',
aLink: '',
communityId: ''
},
rules: {
partyA: [
{
required: true,
message: this.$t('contractPartyaManage.validate.partyARequired'),
trigger: 'blur'
},
{
max: 200,
message: this.$t('contractPartyaManage.validate.partyAMaxLength'),
trigger: 'blur'
}
],
aContacts: [
{
required: true,
message: this.$t('contractPartyaManage.validate.aContactsRequired'),
trigger: 'blur'
},
{
max: 64,
message: this.$t('contractPartyaManage.validate.aContactsMaxLength'),
trigger: 'blur'
}
],
aLink: [
{
required: true,
message: this.$t('contractPartyaManage.validate.aLinkRequired'),
trigger: 'blur'
},
{
pattern: /^1[3-9]\d{9}$/,
message: this.$t('contractPartyaManage.validate.aLinkFormat'),
trigger: 'blur'
}
],
partyaId: [
{
required: true,
message: this.$t('contractPartyaManage.validate.partyaIdRequired'),
trigger: 'blur'
}
]
}
}
},
methods: {
open(data) {
this.visible = true
this.formData = {
...data,
communityId: getCommunityId()
}
},
handleClose() {
this.$refs.form.resetFields()
},
handleSubmit() {
this.$refs.form.validate(async valid => {
if (valid) {
try {
await updateContractPartya(this.formData)
this.$message.success(this.$t('common.operationSuccess'))
this.visible = false
this.$emit('success')
} catch (error) {
this.$message.error(error.message || this.$t('common.editFailed'))
}
}
})
}
}
}
</script>