描述:房间管理 选择地区、园区

This commit is contained in:
SelfRidicule 2024-04-02 11:36:34 +08:00
parent faa73f6ec4
commit c3eadeac05

View File

@ -1,122 +1,151 @@
<template>
<a-card :body-style="{padding: '24px 32px'}" :bordered="false">
<a-form @submit="handleSubmit" :form="form" :label-col="{ span: 4 }" :wrapper-col="{ span: 6 }">
<a-form-item style="display:none">
<a-input v-decorator="['id']"/>
<a-card :body-style="{padding: '24px 32px'}" :bordered='false'>
<a-form @submit='handleSubmit' :form='form' :label-col='{ span: 4 }' :wrapper-col='{ span: 6 }'>
<a-form-item style='display:none'>
<a-input v-decorator="['id']" />
</a-form-item>
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="所属楼宇">
<a-select ref="buildingId" v-decorator="['buildingId', {rules: [{ required: true, message: '请选择所属楼宇' }]}]" @change="onSelectBuilding">
<a-select-option v-for="item in buildingData" :key="item.value">{{ item.text }}</a-select-option>
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='所属地区'>
<a-select v-decorator="['tenantId', {rules: [{ required: true, message: '请选择所属地区' }]}]"
@change='selectTenant'
:disabled='tenantEnable'>
<a-select-option v-for='item in tenantList' :key='item.id'>{{ item.name }}</a-select-option>
</a-select>
</a-form-item>
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="所属楼层">
<a-select ref="buildingDetailId" v-decorator="['buildingDetailId', {rules: [{ required: true, message: '请选择所属楼层' }]}]">
<a-select-option v-for="item in buildingDetailData" :key="item.value">{{ item.text }}</a-select-option>
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='所属园区'>
<a-select v-decorator="['parkId', {rules: [{ required: true, message: '请选择所属园区' }]}]"
@change='selectPark'
:disabled='parkEnable'>
<a-select-option v-for='item in parkList' :key='item.id'>{{ item.name }}</a-select-option>
</a-select>
</a-form-item>
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="房间名称">
<a-input placeholder="请输入房间名称" v-decorator="['name', {rules: [{ required: true, message: '请填写房间名称' }]}]"/>
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='所属楼宇'>
<a-select v-decorator="['buildingId', {rules: [{ required: true, message: '请选择所属楼宇' }]}]"
@change='selectBuilding'>
<a-select-option v-for='item in buildingList' :key='item.id'>{{ item.buildingName }}</a-select-option>
</a-select>
</a-form-item>
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="租金">
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='所属楼层'>
<a-select v-decorator="['buildingDetailId', {rules: [{ required: true, message: '请选择所属楼层' }]}]">
<a-select-option v-for='item in buildingDetailList' :key='item.id'>{{ item.floorName }}</a-select-option>
</a-select>
</a-form-item>
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='房间名称'>
<a-input placeholder='请输入房间名称'
v-decorator="['name', {rules: [{ required: true, message: '请填写房间名称' }]}]" />
</a-form-item>
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='租金'>
<a-input-group compact>
<a-input-number :min="1" style="width: 150px; text-align: center" placeholder="租金" v-decorator="['rent', {rules: [{ required: true, message: '请输入租金' }]}]"/>
<a-select style="width: 10%" v-decorator="['rentType', {initialValue: '4', rules: [{ required: true, 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-option value="4"> / </a-select-option>
<a-input-number :min='1' style='width: 150px; text-align: center' placeholder='租金'
v-decorator="['rent', {rules: [{ required: true, message: '请输入租金' }]}]" />
<a-select style='width: 10%'
v-decorator="['rentType', {initialValue: '4', rules: [{ required: true, 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-option value='4'> /</a-select-option>
</a-select>
</a-input-group>
</a-form-item>
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="物业费">
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='物业费'>
<a-input-group compact>
<a-input-number :min="1" style="width: 150px; text-align: center" placeholder="物业费" v-decorator="['managementFee', {rules: [{ required: true, message: '请输入物业费' }]}]"/>
<a-select style="width: 10%" v-decorator="['managementFeeType', {initialValue: '4', rules: [{ required: true, 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-option value="4"> / </a-select-option>
<a-input-number :min='1' style='width: 150px; text-align: center' placeholder='物业费'
v-decorator="['managementFee', {rules: [{ required: true, message: '请输入物业费' }]}]" />
<a-select style='width: 10%'
v-decorator="['managementFeeType', {initialValue: '4', rules: [{ required: true, 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-option value='4'> /</a-select-option>
</a-select>
</a-input-group>
</a-form-item>
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="房间面积(平方米)">
<a-input-number :min="1" style="width: 20%" placeholder="请输入房间面积" v-decorator="['area', {rules: [{ required: true, message: '请输入房间面积' }]}]"/>
<div><a-checkbox :checked="mdl.canBeDivided" @change="onChangeCheckBox" v-decorator="['canBeDivided']">可分割</a-checkbox></div>
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='房间面积(平方米)'>
<a-input-number :min='1' style='width: 20%' placeholder='请输入房间面积'
v-decorator="['area', {rules: [{ required: true, message: '请输入房间面积' }]}]" />
<div>
<a-checkbox :checked='mdl.canBeDivided' @change='onChangeCheckBox' v-decorator="['canBeDivided']">可分割
</a-checkbox>
</div>
</a-form-item>
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="收租面积(平方米)">
<a-input-number :min="1" style="width: 20%" placeholder="请输入收租面积" v-decorator="['rentArea', {rules: [{ required: true, message: '请输入收租面积' }]}]"/>
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='收租面积(平方米)'>
<a-input-number :min='1' style='width: 20%' placeholder='请输入收租面积'
v-decorator="['rentArea', {rules: [{ required: true, message: '请输入收租面积' }]}]" />
</a-form-item>
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="公摊面积(平方米)">
<a-input-number :min="0" style="width: 20%" placeholder="请输入公摊面积" v-decorator="['commonArea', {rules: [{ required: true, message: '请输入公摊面积' }]}]"/>
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='公摊面积(平方米)'>
<a-input-number :min='0' style='width: 20%' placeholder='请输入公摊面积'
v-decorator="['commonArea', {rules: [{ required: true, message: '请输入公摊面积' }]}]" />
</a-form-item>
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="房型">
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='房型'>
<a-select v-decorator="['layout', {initialValue:'',rules: [{ required: true, message: '请选择房型' }]}]">
<a-select-option value="LOFT">loft</a-select-option>
<a-select-option value="BUSINESS">商业配套</a-select-option>
<a-select-option value="OFFICE">办公场所</a-select-option>
<a-select-option value="OTHER">其他</a-select-option>
<a-select-option value='LOFT'>loft</a-select-option>
<a-select-option value='BUSINESS'>商业配套</a-select-option>
<a-select-option value='OFFICE'>办公场所</a-select-option>
<a-select-option value='OTHER'>其他</a-select-option>
</a-select>
</a-form-item>
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="层高(米)">
<a-input-number :min="1" style="width: 20%" placeholder="请输入层高" v-decorator="['floorHeight']"/>
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='层高(米)'>
<a-input-number :min='1' style='width: 20%' placeholder='请输入层高' v-decorator="['floorHeight']" />
</a-form-item>
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="可入住日期">
<a-date-picker @change="onChange" v-decorator="['availableFrom', {rules: [{required: true, message: '请输入可入住日期'}]}]" placeholder="可入住日期" />
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='可入住日期'>
<a-date-picker @change='onChange'
v-decorator="['availableFrom', {rules: [{required: true, message: '请输入可入住日期'}]}]"
placeholder='可入住日期' />
</a-form-item>
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="装修类型">
<a-select v-decorator="['decorationType', {initialValue:'',rules: [{ required: true, message: '请选择装修类型' }]}]">
<a-select-option value="SIMPLE">简装</a-select-option>
<a-select-option value="SPECIAL">精装</a-select-option>
<a-select-option value="ROUGH">毛坯房</a-select-option>
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='装修类型'>
<a-select
v-decorator="['decorationType', {initialValue:'',rules: [{ required: true, message: '请选择装修类型' }]}]">
<a-select-option value='SIMPLE'>简装</a-select-option>
<a-select-option value='SPECIAL'>精装</a-select-option>
<a-select-option value='ROUGH'>毛坯房</a-select-option>
</a-select>
</a-form-item>
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="奖金(元)">
<a-input-number :min="1" style="width: 150px; text-align: center" placeholder="奖金" v-decorator="['bonus']"/>
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='奖金(元)'>
<a-input-number :min='1' style='width: 150px; text-align: center' placeholder='奖金' v-decorator="['bonus']" />
</a-form-item>
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="上传房间小图" extra="尺寸建议宽160px高160px">
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='上传房间小图' extra='尺寸建议宽160px高160px'>
<a-upload
v-decorator="['smallPic']"
list-type="picture-card"
class="avatar-uploader"
:show-upload-list="false"
:action="uploadUrl"
:headers="headers"
:before-upload="beforeUpload"
@change="handleChange"
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"/>
<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 class='ant-upload-text'> 上传</div>
</div>
</a-upload>
</a-form-item>
<!-- <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="上传园区banner图" extra="尺寸建议宽750px高300px">-->
<!-- <a-upload-->
<!-- v-decorator="['bannerImages']"-->
<!-- list-type="picture-card"-->
<!-- class="avatar-uploader"-->
<!-- :file-list="fileList"-->
<!-- :action="uploadUrl"-->
<!-- :headers="headers"-->
<!-- @preview="handlePreview"-->
<!-- @change="handleChangeFileList"-->
<!-- >-->
<!-- <div v-if="fileList.length < 4">-->
<!-- <a-icon type="plus" />-->
<!-- <div class="ant-upload-text"> 上传 </div>-->
<!-- </div>-->
<!-- </a-upload>-->
<!-- <a-modal :visible="previewVisible" :footer="null" @cancel="handleCancel">-->
<!-- <img style="width: 100%" :src="previewImage" />-->
<!-- </a-modal>-->
<!-- </a-form-item>-->
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="房间简介(可选)" extra="不要超过50个字符">
<a-textarea placeholder="请输入房间简介" :rows="5" v-decorator="['briefIntro']"/>
<!-- <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="上传园区banner图" extra="尺寸建议宽750px高300px">-->
<!-- <a-upload-->
<!-- v-decorator="['bannerImages']"-->
<!-- list-type="picture-card"-->
<!-- class="avatar-uploader"-->
<!-- :file-list="fileList"-->
<!-- :action="uploadUrl"-->
<!-- :headers="headers"-->
<!-- @preview="handlePreview"-->
<!-- @change="handleChangeFileList"-->
<!-- >-->
<!-- <div v-if="fileList.length < 4">-->
<!-- <a-icon type="plus" />-->
<!-- <div class="ant-upload-text"> 上传 </div>-->
<!-- </div>-->
<!-- </a-upload>-->
<!-- <a-modal :visible="previewVisible" :footer="null" @cancel="handleCancel">-->
<!-- <img style="width: 100%" :src="previewImage" />-->
<!-- </a-modal>-->
<!-- </a-form-item>-->
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='房间简介(可选)' extra='不要超过50个字符'>
<a-textarea placeholder='请输入房间简介' :rows='5' v-decorator="['briefIntro']" />
</a-form-item>
<a-form-item :wrapper-col="{ span: 12, offset: 12 }">
<a-button htmlType="submit" type="primary">提交</a-button>
<a-button icon="rollback" style="margin-left: 8px" @click="rollback">关闭</a-button>
<a-form-item :wrapper-col='{ span: 12, offset: 12 }'>
<a-button htmlType='submit' type='primary'>提交</a-button>
<a-button icon='rollback' style='margin-left: 8px' @click='rollback'>关闭</a-button>
</a-form-item>
</a-form>
</a-card>
@ -134,13 +163,15 @@ import moment from 'moment'
import { getParkList } from '@/api/admin/park'
import { getBuildingList } from '@/api/admin/building'
import { getBuildingDetailList } from '@/api/admin/buildingDetail'
import { getInfo } from '@/api/login'
import { getTenantList } from '@/api/tenant'
export default {
name: 'BaseForm',
components: {
WangEditor
},
data () {
data() {
return {
labelCol: {
xs: { span: 24 },
@ -160,26 +191,21 @@ export default {
previewImage: '',
fileList: [],
options: [],
parkData: [],
buildingData: [],
buildingDetailData: [],
mdl: {},
// form
form: this.$form.createForm(this)
form: this.$form.createForm(this),
userDetail: {},
tenantList: [],
parkList: [],
buildingList: [],
buildingDetailList: [],
tenantEnable: false,
parkEnable: false
}
},
created () {
this.onSelectPark()
//
getParkList().then(res => {
if (res.code === 0) {
const result = res.rows
result.forEach(r => {
this.parkData.push({ value: r.id, text: r.name })
})
}
})
created() {
//
this.getUserDetail()
//
getDistVOList().then(res => {
this.options = res.data
@ -188,44 +214,106 @@ export default {
this.handleInit()
},
methods: {
//
onSelectPark () {
this.buildingData = []
this.form.setFieldsValue({ buildingId: '' })
getBuildingList().then(res => {
if (res.code === 0) {
const result = res.rows
result.forEach(r => {
this.buildingData.push({ value: r.id, text: r.buildingName })
//
getUserDetail() {
getInfo().then(res => {
console.log('getUserDetail', res)
this.userDetail = res
// 5
if (this.userDetail.roleIds && this.userDetail.roleIds.length > 0 && this.userDetail.roleIds[0] == 5) {
//
//
let { id } = this.$route.query
if (!id) {
// ->
this.selectTenant(this.userDetail.tenantId)
// ->
this.selectPark(this.userDetail.parkId)
}
//
//
this.tenantEnable = true
this.parkEnable = true
//
this.mdl.parkId = this.userDetail.parkId
this.mdl.tenantId = this.userDetail.tenantId
this.form.setFieldsValue({
parkId: this.mdl.parkId,
tenantId: this.mdl.tenantId
})
}
})
},
//
onSelectBuilding (buildingId) {
this.buildingDetailData = []
this.form.setFieldsValue({ buildingDetailId: '' })
if (buildingId) {
getBuildingDetailList({ buildingId: buildingId }).then(res => {
if (res.code === 0) {
const result = res.rows
result.forEach(r => {
this.buildingDetailData.push({ value: r.id, text: r.floorName })
})
}
})
}
//
getTenantData() {
getTenantList().then(res => {
this.tenantList = res.rows
})
},
onChangeCheckBox (e) {
// ->
selectTenant(id) {
console.log('selectTenant', id)
//
this.mdl.parkId = null
this.mdl.buildingId = null
this.mdl.buildingDetailId = null
this.form.setFieldsValue({
parkId: null,
buildingId: null,
buildingDetailId: null
})
//
getParkList({
tenantId: id
}).then(res => {
this.parkList = res.rows
})
},
// ->
selectPark(id) {
//
this.mdl.buildingId = null
this.mdl.buildingDetailId = null
this.form.setFieldsValue({
buildingId: null,
buildingDetailId: null
})
//
getBuildingList({
parkId: id
}).then(res => {
this.buildingList = res.rows
})
},
// ->
selectBuilding(id) {
//
this.mdl.buildingDetailId = null
this.form.setFieldsValue({
buildingDetailId: null
})
//
getBuildingDetailList({
buildingId: id
}).then(res => {
this.buildingDetailList = res.rows
})
},
onChangeCheckBox(e) {
this.mdl.canBeDivided = e.target.checked
},
onChange (date, dateString) {
onChange(date, dateString) {
},
handleInit () {
handleInit() {
const { id } = this.$route.query
this.form.resetFields()
//
this.getTenantData()
//
if (id) {
getRoomById(id).then(record => {
this.mdl = Object.assign(record)
this.mdl = Object.assign(this.mdl, record)
let copyMdl = JSON.parse(JSON.stringify(this.mdl))
this.visible = true
//
if (this.mdl.smallPic) {
@ -239,18 +327,30 @@ export default {
this.$nextTick(() => {
this.form.setFieldsValue(pick(this.mdl, 'id', 'name', 'area', 'smallPic', 'bannerImages', 'rent', 'briefIntro', 'bonus',
'rentType', 'managementFee', 'managementFeeType', 'parkingFee', 'layout', 'floorHeight', 'availableFrom',
'decorationType', 'isMarketable', 'marketableTime', 'canBeDivided', 'parkId', 'buildingId', 'buildingDetailId', 'rentArea', 'commonArea'))
'decorationType', 'isMarketable', 'marketableTime', 'canBeDivided', 'tenantId', 'parkId', 'buildingId', 'buildingDetailId', 'rentArea', 'commonArea'))
})
if (this.mdl.parkId) {
this.onSelectPark(this.mdl.parkId)
if (this.mdl.buildingId) {
this.onSelectBuilding(this.mdl.buildingId)
}
//
// ->
if (copyMdl.tenantId) {
this.mdl = JSON.parse(JSON.stringify(copyMdl))
this.selectTenant(copyMdl.tenantId)
}
// ->
if (copyMdl.parkId) {
this.mdl = JSON.parse(JSON.stringify(copyMdl))
this.selectPark(copyMdl.parkId)
}
// ->
if (copyMdl.buildingId) {
this.mdl = JSON.parse(JSON.stringify(copyMdl))
this.selectBuilding(copyMdl.buildingId)
}
//
this.mdl = JSON.parse(JSON.stringify(copyMdl))
})
}
},
beforeUpload (file) {
beforeUpload(file) {
const isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png'
if (!isJpgOrPng) {
this.$message.error('You can only upload JPG file!')
@ -261,7 +361,7 @@ export default {
}
return isJpgOrPng && isLt500KB
},
handleChange (info) {
handleChange(info) {
if (info.file.status === 'uploading') {
this.loading = true
return
@ -282,22 +382,22 @@ export default {
})
}
},
async handlePreview (file) {
async handlePreview(file) {
if (!file.url && !file.preview) {
file.preview = await getBase64FileList(file.originFileObj)
}
this.previewImage = file.url || file.preview
this.previewVisible = true
},
handleCancel () {
handleCancel() {
this.previewVisible = false
},
// banner
handleChangeFileList ({ fileList }) {
handleChangeFileList({ fileList }) {
this.fileList = fileList
},
// handler
handleSubmit (e) {
handleSubmit(e) {
e.preventDefault()
this.form.validateFields((err, values) => {
if (!err) {
@ -335,21 +435,21 @@ export default {
}
})
},
rollback () {
rollback() {
this.$router.push({ name: 'room', query: { type: this.$route.query.type } })
}
}
}
//
function getBase64 (img, callback) {
function getBase64(img, callback) {
const reader = new FileReader()
reader.addEventListener('load', () => callback(reader.result))
reader.readAsDataURL(img)
}
// banner
function getBase64FileList (file) {
function getBase64FileList(file) {
return new Promise((resolve, reject) => {
const reader = new FileReader()
reader.readAsDataURL(file)