瑶都万能墙
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

443 lines
8.8 KiB

<template>
<view class="page">
<navbar title="发布租房" leftClick @leftClick="$utils.navigateBack" />
<view class="form">
<view class="help-issue">
<text>租房标题</text>
<text style="color: #BD3624;">*</text>
</view>
<view class="form-sheet-cell">
<input type="text" class="title-input" v-model="form.title"/>
</view>
<uv-cell
title="租房地点"
rightIconStyle="fontSize: 30rpx;"
:value="form.address || '请选择租房地点'"
@click="selectAddr"
isLink
></uv-cell>
<uv-cell
title="朝向"
rightIconStyle="fontSize: 30rpx;"
:value="form.face || '请选择朝向'"
@click="openPicker('face')"
isLink
></uv-cell>
<uv-cell
title="装修"
rightIconStyle="fontSize: 30rpx;"
:value="form.decoration || '请选择装修'"
@click="openPicker('decoration')"
isLink
></uv-cell>
<!-- <uv-cell
title="楼层"
rightIconStyle="fontSize: 30rpx;"
value="请选择楼层"
isLink
></uv-cell> -->
<view class="form-sheet-cell">
<view class="label">
楼层
</view>
<view class="price">
<input placeholder="请输入楼层(1楼)" v-model="form.floor" />
</view>
</view>
<view class="form-sheet-cell">
<view class="label">
户型
</view>
<view class="price">
<input placeholder="请输入户型(三室一厅)" v-model="form.home" />
</view>
</view>
<view class="form-sheet-cell">
<view class="label">
付款方式
</view>
<view class="price">
<input placeholder="请输入付款方式(押一付三)" v-model="form.payment" />
</view>
</view>
<view class="form-sheet-cell">
<view class="label">
租金/月
</view>
<view class="price">
<input placeholder="请输入租金" type="text" v-model="form.money" />
</view>
</view>
<view class="form-sheet-cell">
<view class="label">
面积
</view>
<view class="price">
<input placeholder="请输入面积(平方米)" type="number" v-model="form.crm" />
</view>
</view>
<view class="form-sheet-cell">
<view class="label">
看房
</view>
<uv-radio-group v-model="form.showings">
<view class="price">
<uv-radio
:customStyle="{margin: '8px'}"
iconSize="30rpx"
size="40rpx"
labelSize="26rpx"
:label="t.name"
v-for="(t, i) in showingsRadio"
:key="i"
:name="t.name">
</uv-radio>
</view>
</uv-radio-group>
</view>
<view class="form-sheet-cell">
<view class="label">
电梯
</view>
<uv-radio-group v-model="form.lift">
<view class="price">
<uv-radio
:customStyle="{margin: '8px'}"
iconSize="30rpx"
size="40rpx"
labelSize="26rpx"
:label="t.name"
:name="t.name"
v-for="(t, i) in liftRadio"
:key="i">
</uv-radio>
</view>
</uv-radio-group>
</view>
<view class="form-sheet-cell">
<view class="label">
交付
</view>
<uv-radio-group v-model="form.deliver">
<view class="price">
<uv-radio
:customStyle="{margin: '8px'}"
iconSize="30rpx"
size="40rpx"
labelSize="26rpx"
:label="t.name"
:name="t.name"
v-for="(t, i) in deliverRadio"
:key="i">
</uv-radio>
</view>
</uv-radio-group>
</view>
<view class="form-sheet-cell">
<view class="label">
联系电话
</view>
<input placeholder="请输入联系电话" v-model="form.phone" />
</view>
<view class="form-sheet-cell">
<view class="label">
备注
</view>
<input placeholder="请输入备注" v-model="form.titleSub" />
</view>
<view class="images box">
<view class="">
精选照片
</view>
<uv-upload
:fileList="fileList"
:maxCount="imageMax"
multiple
width="150rpx"
height="150rpx"
@delete="deleteImage"
@afterRead="afterRead"
:previewFullImage="true"></uv-upload>
</view>
<view class="category">
<view class="title">
选择地区
</view>
<view class="tagList">
<view
:class="{act : t.id == form.addId}"
@click="form.addId = t.id"
v-for="(t, i) in cityList"
:key="i">
{{ t.name }}
</view>
</view>
</view>
<!-- <view class="">
<uv-textarea
v-model="form.content"
count
:maxlength="300"
autoHeight
placeholder="请输入详细介绍"></uv-textarea>
</view> -->
<uv-picker
ref="picker"
:columns="columns"
@confirm="pickerConfirm"></uv-picker>
<view class="uni-color-btn"
@click="submit">
发布
</view>
</view>
</view>
</template>
<script>
import Position from '@/utils/position.js'
import { mapState } from 'vuex'
export default {
data() {
return {
form : {
addId : '',//地区id
address : '',//地址
crm : '',//面积
showings : '随时可看',//看房
face : '',
lift : '有',
deliver : '整租',
floor : '',
decoration : '',
},
showingsRadio : [//看房
{
name : '随时可看',
},
{
name : '电话预约',
},
],
liftRadio : [
{
name : '有',
},
{
name : '无',
},
],
deliverRadio : [
{
name : '整租',
},
{
name : '合租',
},
],
fileList : [],
imageMax : 9,
picker : {
face : [
'朝东',
'朝南',
'朝西',
'朝北',
],
decoration : [
'精装',
'毛胚',
],
},
pickerKey : '',
}
},
onLoad() {
// for (var i = 0; i < 30; i++) {
// this.picker.workYear.push((i + 1) + '年')
// }
this.form.addId = this.cityList[0].id
},
computed : {
columns(){
return [this.picker[this.pickerKey]]
},
...mapState(['cityList', 'category']),
},
methods: {
openPicker(key){
this.pickerKey = key
this.$refs.picker.open()
},
pickerConfirm(e){
this.form[this.pickerKey] = e.value[0]
},
deleteImage(e){
this.fileList.splice(e.index, 1)
},
afterRead(e){
let self = this
e.file.forEach(file => {
self.$Oss.ossUpload(file.url).then(url => {
self.fileList.push({
url
})
})
})
},
//地图上选择地址
selectAddr() {
Position.selectAddress(0, 0, res => {
//经纬度信息
this.form.latitude = res.latitude
this.form.longitude = res.longitude
if (res.name) {
return this.form.address = res.name
}
this.form.address = ''
})
},
// 提交
submit(){
if (this.$utils.verificationAll(this.form, {
title: '请输入标题',
address : '请选择租房地点',
face : '请选择朝向',
decoration : '请选择装修',
floor : '请输入楼层',
home : '请输入户型',
payment : '请输入付款方式',
money : '请输入租金',
crm : '请输入面积',
showings : '请选择看房',
lift : '请选择电梯',
deliver : '请选择交付方式',
phone: '请输入联系电话',
// titleSub : '请输入备注',
})) {
return
}
if(this.fileList.length == 0){
return uni.showToast({
title: '请上传精选照片',
icon : 'none'
})
}
this.form.image = this.fileList.map(n => n.url).join(',')
this.$api('publishRent', this.form, res => {
if(res.code == 200){
uni.showToast({
title: '发布成功!',
icon: 'none'
})
setTimeout(uni.navigateBack, 1000, -1)
}
})
},
}
}
</script>
<style scoped lang="scss">
.page{
background-color: #fff;
min-height: 100vh;
box-sizing: border-box;
color: #333333;
font-size: 28rpx;
/deep/ text{
font-size: 28rpx !important;
}
.form{
padding: 30rpx;
.help-issue {
margin: 20rpx;
}
.title-input{
border: 1px solid $uni-color;
width: 100%;
border-radius: 10rpx;
padding: 10rpx 20rpx;
box-sizing: border-box;
height: 65rpx;
}
.form-sheet-cell{
display: flex;
background-color: #fff;
padding: 20rpx 30rpx;
align-items: center;
.label{
width: 160rpx;
}
.price{
display: flex;
// text-align: center;
input{
width: 450rpx;
// border: 1px solid $uni-color;
margin: 0 10rpx;
}
}
.right-icon{
margin-left: auto;
}
}
.images{
padding: 30rpx;
view{
padding-bottom: 20rpx;
}
}
}
.category{
padding: 20rpx;
.title{
// font-weight: 900;
// font-size: 30rpx;
}
.tagList{
display: flex;
flex-wrap: wrap;
padding: 10rpx 0;
view{
background: rgba($uni-color, 0.1);
padding: 10rpx 20rpx;
margin: 10rpx;
border-radius: 10rpx;
font-size: 26rpx;
}
.act{
color: #fff;
background: $uni-color;
}
}
}
}
</style>