2024-02-23 16:52:51 +08:00
|
|
|
|
<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="['meetingName']" />
|
|
|
|
|
</a-form-item>
|
|
|
|
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="容纳人数">
|
|
|
|
|
<a-input placeholder="容纳人数" v-decorator="['capacityNum']" />
|
|
|
|
|
</a-form-item>
|
|
|
|
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="扩充人数">
|
|
|
|
|
<a-input placeholder="扩充人数" v-decorator="['expandNum']" />
|
|
|
|
|
</a-form-item>
|
|
|
|
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="室内图片url">
|
|
|
|
|
<!-- <a-input placeholder="室内图片url" v-decorator="['indoorPicUrl']" />-->
|
|
|
|
|
<a-upload
|
|
|
|
|
v-decorator="['indoorPicUrl']"
|
|
|
|
|
list-type="picture-card"
|
|
|
|
|
class="avatar-uploader"
|
|
|
|
|
:show-upload-list="false"
|
|
|
|
|
:action="uploadUrl"
|
|
|
|
|
:headers="headers"
|
|
|
|
|
:before-upload="beforeUpload"
|
|
|
|
|
@change="handleChange"
|
|
|
|
|
>
|
|
|
|
|
<img v-if="imageUrl" :src="imageUrl" style="width: 102px; height: 102px"/>
|
|
|
|
|
<div v-else>
|
|
|
|
|
<a-icon :type="loading ? 'loading' : 'plus'" />
|
|
|
|
|
<div class="ant-upload-text"> 上传 </div>
|
|
|
|
|
</div>
|
|
|
|
|
</a-upload>
|
|
|
|
|
</a-form-item>
|
|
|
|
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="价格单位:1小时、2天、3半天">
|
|
|
|
|
<a-input placeholder="价格单位:1小时、2天、3半天" v-decorator="['priceUnit']" />
|
|
|
|
|
</a-form-item>
|
|
|
|
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="金额">
|
|
|
|
|
<a-input placeholder="金额" v-decorator="['money']" />
|
|
|
|
|
</a-form-item>
|
|
|
|
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="是否展示">
|
|
|
|
|
<a-input placeholder="是否展示" v-decorator="['isShow']" />
|
|
|
|
|
</a-form-item>
|
|
|
|
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="房间id">
|
|
|
|
|
<a-input placeholder="房间id" v-decorator="['roomId']" />
|
|
|
|
|
</a-form-item>
|
|
|
|
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="形状">
|
|
|
|
|
<a-input placeholder="形状" v-decorator="['shape']" />
|
|
|
|
|
</a-form-item>
|
|
|
|
|
</a-form>
|
|
|
|
|
</a-modal>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
import { saveRoomContent } from '@/api/admin/meeting/roomContent'
|
|
|
|
|
import pick from 'lodash.pick'
|
|
|
|
|
import storage from 'store'
|
|
|
|
|
import { ACCESS_TOKEN } from '@/store/mutation-types'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'RoomContentModal',
|
|
|
|
|
props: {},
|
|
|
|
|
components: {},
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
visible: false,
|
|
|
|
|
labelCol: {
|
|
|
|
|
xs: { span: 24 },
|
|
|
|
|
sm: { span: 5 },
|
|
|
|
|
},
|
|
|
|
|
uploadUrl: process.env.VUE_APP_API_BASE_URL + '/dfs/upload',
|
|
|
|
|
imageUrl: '',
|
|
|
|
|
headers: {
|
|
|
|
|
Authorization: 'Bearer ' + storage.get(ACCESS_TOKEN)
|
|
|
|
|
},
|
|
|
|
|
loading: false,
|
|
|
|
|
wrapperCol: {
|
|
|
|
|
xs: { span: 24 },
|
|
|
|
|
sm: { span: 16 },
|
|
|
|
|
},
|
|
|
|
|
confirmLoading: false,
|
|
|
|
|
mdl: {},
|
|
|
|
|
form: this.$form.createForm(this),
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
beforeCreate () {},
|
|
|
|
|
created () {},
|
|
|
|
|
methods: {
|
|
|
|
|
beforeUpload (file) {
|
|
|
|
|
const isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png'
|
|
|
|
|
if (!isJpgOrPng) {
|
|
|
|
|
this.$message.error('You can only upload JPG file!')
|
|
|
|
|
}
|
|
|
|
|
const isLt2M = file.size / 1024 < 500
|
|
|
|
|
if (!isLt2M) {
|
|
|
|
|
this.$message.error('图片必须小于 500kb!')
|
|
|
|
|
}
|
|
|
|
|
return isJpgOrPng && isLt2M
|
|
|
|
|
},
|
|
|
|
|
handleChange (info) {
|
|
|
|
|
if (info.file.status === 'uploading') {
|
|
|
|
|
this.loading = true
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if (info.file.status === 'done') {
|
|
|
|
|
const { form: { setFieldsValue } } = this
|
|
|
|
|
const result = info.file.response
|
|
|
|
|
// 设置值
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
setFieldsValue({
|
|
|
|
|
// 设置相对路径
|
2024-03-02 17:03:44 +08:00
|
|
|
|
indoorPicUrl: result.fileName
|
2024-02-23 16:52:51 +08:00
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
// Get this url from response in real world.
|
|
|
|
|
getBase64(info.file.originFileObj, imageUrl => {
|
|
|
|
|
this.imageUrl = imageUrl
|
|
|
|
|
this.loading = false
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
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',
|
|
|
|
|
'type',
|
|
|
|
|
'meetingName',
|
|
|
|
|
'capacityNum',
|
|
|
|
|
'expandNum',
|
|
|
|
|
'indoorPicUrl',
|
|
|
|
|
'startTime',
|
|
|
|
|
'endTime',
|
|
|
|
|
'priceUnit',
|
|
|
|
|
'money',
|
|
|
|
|
'isShow',
|
|
|
|
|
'createBy',
|
|
|
|
|
'createTime',
|
|
|
|
|
'updateBy',
|
|
|
|
|
'updateTime',
|
|
|
|
|
'version',
|
|
|
|
|
'deleteFlag',
|
|
|
|
|
'roomId',
|
|
|
|
|
'shape'
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
handleSubmit (e) {
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
this.form.validateFields((err, values) => {
|
|
|
|
|
if (!err) {
|
|
|
|
|
console.log('Received values of form: ', values)
|
|
|
|
|
this.confirmLoading = true
|
|
|
|
|
saveRoomContent(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
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
function getBase64 (img, callback) {
|
|
|
|
|
const reader = new FileReader()
|
|
|
|
|
reader.addEventListener('load', () => callback(reader.result))
|
|
|
|
|
reader.readAsDataURL(img)
|
|
|
|
|
}
|
|
|
|
|
</script>
|