mirror of
https://gitee.com/elegant_wings/xiongan-meeting-html.git
synced 2025-08-08 10:42:43 +08:00
89 lines
2.1 KiB
Vue
89 lines
2.1 KiB
Vue
<template>
|
|
<a-modal
|
|
title="操作"
|
|
style="top: 20px;"
|
|
:width="800"
|
|
v-model="visible"
|
|
:confirmLoading="confirmLoading"
|
|
@ok="handleSubmit"
|
|
>
|
|
<a-form :form="form">
|
|
<a-form-item style="display:none">
|
|
<a-input v-decorator="['id']"/>
|
|
</a-form-item>
|
|
<a-form-item style="display:none">
|
|
<a-input v-decorator="['version']"/>
|
|
</a-form-item>
|
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="地区名称">
|
|
<a-input placeholder="地区名称" v-decorator="['name']"/>
|
|
</a-form-item>
|
|
</a-form>
|
|
</a-modal>
|
|
</template>
|
|
<script>
|
|
import { saveTenant } from '@/api/tenant'
|
|
import pick from 'lodash.pick'
|
|
export default {
|
|
name: 'TenantModal',
|
|
props: {
|
|
},
|
|
components: {
|
|
},
|
|
data () {
|
|
return {
|
|
visible: false,
|
|
labelCol: {
|
|
xs: { span: 24 },
|
|
sm: { span: 5 }
|
|
},
|
|
wrapperCol: {
|
|
xs: { span: 24 },
|
|
sm: { span: 16 }
|
|
},
|
|
confirmLoading: false,
|
|
mdl: {},
|
|
form: this.$form.createForm(this)
|
|
}
|
|
},
|
|
beforeCreate () {
|
|
},
|
|
created () {
|
|
},
|
|
methods: {
|
|
add () {
|
|
this.form.resetFields()
|
|
this.edit({ id: 0 })
|
|
},
|
|
edit (record) {
|
|
this.mdl = Object.assign(record)
|
|
this.visible = true
|
|
this.$nextTick(() => {
|
|
this.form.setFieldsValue(pick(this.mdl, 'id', 'name'))
|
|
})
|
|
},
|
|
handleSubmit (e) {
|
|
e.preventDefault()
|
|
this.form.validateFields((err, values) => {
|
|
if (!err) {
|
|
console.log('Received values of form: ', values)
|
|
this.confirmLoading = true
|
|
saveTenant(values).then(res => {
|
|
if (res.code === 0) {
|
|
this.$message.success('保存成功')
|
|
this.$emit('ok')
|
|
this.visible = false
|
|
} else {
|
|
this.$message.error(res.msg)
|
|
}
|
|
}).catch(() => {
|
|
this.$message.error('系统错误,请稍后再试')
|
|
}).finally(() => {
|
|
this.confirmLoading = false
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|