Blame view

src/components/contract/addContractPartya.vue 3.41 KB
6ec243d6   wuxw   v1.9 点击提交后,成功提示没有...
1
  <template>
bc37d685   wuxw   开发完成合同功能
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
    <el-dialog
      :title="$t('contractPartyaManage.add.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 { saveContractPartya } from '@/api/contract/contractPartyaManageApi'
  import { getCommunityId } from '@/api/community/communityApi'
  
  export default {
    name: 'AddContractPartya',
    data() {
      return {
        visible: false,
        formData: {
          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'
            }
          ]
        }
      }
    },
    methods: {
      open() {
        this.visible = true
        this.formData.communityId = getCommunityId()
        this.$nextTick(() => {
          this.$refs.form && this.$refs.form.resetFields()
        })
      },
      handleClose() {
        this.$refs.form.resetFields()
      },
      handleSubmit() {
        this.$refs.form.validate(async valid => {
          if (valid) {
            try {
              await saveContractPartya(this.formData)
6ec243d6   wuxw   v1.9 点击提交后,成功提示没有...
119
              this.$message.success(this.$t('common.operationSuccess'))
bc37d685   wuxw   开发完成合同功能
120
121
122
123
124
125
126
127
128
129
130
              this.visible = false
              this.$emit('success')
            } catch (error) {
              this.$message.error(error.message || this.$t('common.addFailed'))
            }
          }
        })
      }
    }
  }
  </script>