mirror of
https://gitee.com/elegant_wings/dbd-meeting-html.git
synced 2025-06-21 07:59:37 +08:00
116 lines
3.2 KiB
Vue
116 lines
3.2 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="['serveName']"/>
|
|
</a-form-item>
|
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="服务名称">
|
|
<a-select placeholder="服务类型" v-decorator="['serveType', {initialValue:'0',rules: [{ message: '请选择服务类型' }]}]">
|
|
<a-select-option :value="'1'">免费服务</a-select-option>
|
|
<a-select-option :value="'2'">会务服务</a-select-option>
|
|
<a-select-option :value="'3'">其他服务</a-select-option>
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="服务时间30分钟起步">
|
|
<a-input placeholder="服务时间30分钟起步" v-decorator="['serveTime']"/>
|
|
</a-form-item>
|
|
|
|
</a-form>
|
|
</a-modal>
|
|
</template>
|
|
<script>
|
|
import {saveRoomServe} from '@/api/admin/meeting/roomServe'
|
|
import pick from 'lodash.pick'
|
|
|
|
export default {
|
|
name: 'RoomServeModal',
|
|
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', 'serveName', 'serveType', 'serveTime', 'remake', 'createBy', 'createTime', 'updateBy', 'updateTime', 'version', 'deleteFlag'))
|
|
})
|
|
},
|
|
handleSubmit (e) {
|
|
e.preventDefault()
|
|
this.form.validateFields((err, values) => {
|
|
if (!err) {
|
|
console.log('Received values of form: ', values)
|
|
this.confirmLoading = true
|
|
saveRoomServe(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
|
|
})
|
|
}
|
|
})
|
|
}
|
|
},
|
|
watch: {
|
|
/*
|
|
'selectedRows': function (selectedRows) {
|
|
this.needTotalList = this.needTotalList.map(item => {
|
|
return {
|
|
...item,
|
|
total: selectedRows.reduce( (sum, val) => {
|
|
return sum + val[item.dataIndex]
|
|
}, 0)
|
|
}
|
|
})
|
|
}
|
|
*/
|
|
}
|
|
}
|
|
</script>
|