mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-24 05:46:04 +08:00
342 lines
8.6 KiB
Vue
342 lines
8.6 KiB
Vue
<template>
|
|
<view>
|
|
<view class="block__title">业主信息</view>
|
|
<!-- <view class="cu-form-group">
|
|
<view class="title">业主ID</view>
|
|
{{ownerInfo.memberId}}
|
|
</view> -->
|
|
<view class="cu-form-group">
|
|
<view class="title">名称</view>
|
|
{{userName}}
|
|
</view>
|
|
<!-- <view class="cu-form-group">
|
|
<view class="title">身份证</view>
|
|
{{ownerInfo.idCard}}
|
|
</view> -->
|
|
<view class="cu-form-group">
|
|
<view class="title">联系方式</view>
|
|
{{userTel}}
|
|
</view>
|
|
|
|
<view class="block__title">房屋信息</view>
|
|
<!-- <view class="cu-form-group">
|
|
<view class="title">房屋ID</view>
|
|
{{roomDetail.roomId}}
|
|
</view> -->
|
|
<view class="cu-form-group">
|
|
<view class="title">楼栋</view>
|
|
{{roomDetail.floorNum}}号楼
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="title">单元</view>
|
|
{{roomDetail.unitNum}}单元
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="title">房屋编号</view>
|
|
{{roomDetail.roomNum}}室
|
|
</view>
|
|
|
|
<view class="cu-form-group">
|
|
<view class="title">楼层</view>
|
|
{{roomDetail.layer+'层'}}
|
|
</view>
|
|
<!-- <view class="cu-form-group">
|
|
<view class="title">房间数</view>
|
|
{{roomDetail.section}}个
|
|
</view> -->
|
|
<view class="cu-form-group">
|
|
<view class="title">户型</view>
|
|
{{roomDetail.apartment}}
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="title">建筑面积</view>
|
|
{{roomDetail.builtUpArea+'平方米'}}
|
|
</view>
|
|
<!-- <view class="cu-form-group">
|
|
<view class="title">单价</view>
|
|
{{roomDetail.unitPrice+'元/平方米'}}
|
|
</view> -->
|
|
|
|
<view class="block__title">空置房申请信息填写</view>
|
|
<view class="cu-form-group arrow">
|
|
<view class="title">优惠类型</view>
|
|
<picker mode="selector" :range="applyTypes" range-key="typeName" @change="applyTypeChange">
|
|
<view class="picker">
|
|
{{applyTypeShow?applyTypeShow:"请选择"}}
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
<view class="cu-form-group arrow">
|
|
<view class="title">费用项目</view>
|
|
<picker mode="selector" :range="feeTypeCds" range-key="feeName" @change="feeTypeCdsChange">
|
|
<view class="picker">
|
|
{{feeTypeCd?feeTypeCd:"请选择"}}
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
<view class="cu-form-group arrow">
|
|
<view class="title">开始日期</view>
|
|
<picker mode="date" :value="bindStartDate" start="2020-09-01" end="2050-09-01" @change="dateStartChange">
|
|
<view class="picker">
|
|
{{bindStartDate}}
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
<view class="cu-form-group arrow">
|
|
<view class="title">结束日期</view>
|
|
<picker mode="date" :value="bindEndDate" start="2020-09-01" end="2050-09-01" @change="dateEndChange">
|
|
<view class="picker">
|
|
{{bindEndDate}}
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
<view class="cu-form-group arrow">
|
|
<view class="title">申请说明</view>
|
|
<input type="text" v-model="createRemark">
|
|
</view>
|
|
<view class="block__title">图片材料</view>
|
|
<uploadImageAsync ref="vcUploadRef" :communityId="communityId" :maxPhotoNum="uploadImage.maxPhotoNum" :canEdit="uploadImage.canEdit" :title="uploadImage.imgTitle" @sendImagesData="sendImagesData"></uploadImageAsync>
|
|
|
|
<view class="btn-box">
|
|
<button type="default" class="btn-sub" @click="subApply()">提交申请</button>
|
|
</view>
|
|
|
|
<view class="button_up_blank"></view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
// pages/my/myHouseDetail.js
|
|
import * as TanslateImage from '../../lib/java110/utils/translate-image.js';
|
|
import context from '../../lib/java110/Java110Context.js'
|
|
const factory = context.factory;
|
|
import {compareDate,addDay,date2String} from '../../lib/java110/utils/DateUtil.js'
|
|
import {queryApplyRoomDiscountType,saveApplyRoomDiscount,listRoomFee} from '../../api/applyRoom/applyRoomApi.js'
|
|
import uploadImageAsync from "../../components/vc-upload-async/vc-upload-async.vue";
|
|
import {getUserId,getUserName,getUserTel} from '../../api/user/userApi.js';
|
|
import {getCommunityId} from '@/api/community/communityApi.js'
|
|
export default {
|
|
data() {
|
|
return {
|
|
ownerInfo: {},
|
|
// 用户信息
|
|
ownerFlag: false,
|
|
// 是否有业主信息 标记 如果有为 true 没有为false
|
|
roomDetail: {},
|
|
bindStartDate: '请选择',
|
|
bindEndDate: '请选择',
|
|
createRemark: '',
|
|
applyType: '',
|
|
applyTypeShow: '',
|
|
applyTypes: [],
|
|
feeTypeCds: [],
|
|
feeId: '',
|
|
feeTypeCd: '',
|
|
photos: [],
|
|
communityId: '',
|
|
userName:'',
|
|
userTel:'',
|
|
uploadImage: {
|
|
maxPhotoNum: 4,
|
|
imgTitle: '图片上传',
|
|
canEdit: true
|
|
}
|
|
};
|
|
},
|
|
|
|
components: {
|
|
uploadImageAsync
|
|
},
|
|
props: {},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
*/
|
|
onLoad: function(options) {
|
|
let _that = this;
|
|
context.onLoad(options);
|
|
_that.roomDetail = JSON.parse(options.room);
|
|
_that.communityId = _that.roomDetail.communityId;
|
|
_that.loadApplyRoomDiscountType();
|
|
_that.loadOwenrInfo();
|
|
_that.loadRoomFee();
|
|
this.userName = getUserName();
|
|
this.userTel = getUserTel();
|
|
},
|
|
|
|
/**
|
|
* 用户点击右上角分享
|
|
*/
|
|
onShareAppMessage: function() {},
|
|
methods: {
|
|
sendImagesData: function(e){
|
|
this.photos = [];
|
|
if(e.length > 0){
|
|
e.forEach((img) => {
|
|
this.photos.push(img.fileId);
|
|
})
|
|
}
|
|
},
|
|
loadRoomFee: function(){
|
|
let _that = this;
|
|
let params = {
|
|
page: 1,
|
|
row: 50,
|
|
communityId: getCommunityId(),
|
|
payerObjId: this.roomDetail.roomId,
|
|
state: '2008001'
|
|
};
|
|
listRoomFee(params).then(function(data){
|
|
let fees = data.fees;
|
|
_that.feeTypeCds = fees;
|
|
})
|
|
},
|
|
|
|
loadApplyRoomDiscountType: function(){
|
|
let _that = this;
|
|
let params = {
|
|
communityId: getCommunityId(),
|
|
page: 1,
|
|
row: 50
|
|
}
|
|
queryApplyRoomDiscountType(params).then(function(types){
|
|
_that.applyTypes = types;
|
|
})
|
|
},
|
|
|
|
loadOwenrInfo: function() {
|
|
let _that = this;
|
|
|
|
context.getOwner(function(_ownerInfo) {
|
|
console.log(_ownerInfo);
|
|
|
|
if (_ownerInfo) {
|
|
_that.ownerFlag = true;
|
|
_that.ownerInfo = _ownerInfo;
|
|
} else {
|
|
_that.ownerFlag = false;
|
|
}
|
|
});
|
|
},
|
|
|
|
/**
|
|
* 类型修改
|
|
* @param {Object} e
|
|
*/
|
|
applyTypeChange: function(e){
|
|
if(this.applyTypes.length > 0){
|
|
this.applyType = this.applyTypes[e.detail.value].applyType;
|
|
this.applyTypeShow = this.applyTypes[e.detail.value].typeName;
|
|
}
|
|
},
|
|
|
|
/**
|
|
* @param {Object} e
|
|
* 费用项改变
|
|
*/
|
|
feeTypeCdsChange: function(e){
|
|
if(this.feeTypeCds.length > 0){
|
|
this.feeId = this.feeTypeCds[e.detail.value].feeId;
|
|
this.feeTypeCd = this.feeTypeCds[e.detail.value].feeName;
|
|
}
|
|
},
|
|
|
|
/**
|
|
* 修改开始时间
|
|
* @param {Object} e
|
|
*/
|
|
dateStartChange: function(e) {
|
|
this.bindStartDate = e.detail.value;
|
|
},
|
|
|
|
/**
|
|
* 修改结束时间
|
|
* @param {Object} e
|
|
*/
|
|
dateEndChange: function(e) {
|
|
this.bindEndDate = e.detail.value;
|
|
},
|
|
|
|
/**
|
|
* 提交申请
|
|
*/
|
|
subApply: function(){
|
|
let msg = '';
|
|
if(this.applyType == ''){
|
|
msg = '请选择优惠类型';
|
|
}else if(this.feeId == ''){
|
|
msg = '请选择费用项目';
|
|
}else if(this.bindStartDate == '请选择' || this.bindEndDate == '请选择'){
|
|
msg = '请选择时间范围';
|
|
}else if(!compareDate(this.bindEndDate, this.bindStartDate)){
|
|
msg = '时间范围有误';
|
|
}else if(this.createRemark == ''){
|
|
msg = '请填写申请说明';
|
|
}
|
|
|
|
if(msg != ''){
|
|
uni.showToast({
|
|
title: msg,
|
|
icon: 'none'
|
|
});
|
|
return;
|
|
}
|
|
|
|
let params = {
|
|
startTime: this.bindStartDate,
|
|
// endTime: this.bindEndDate + ' 23:59:59',
|
|
// endTime: date2String(addDay(new Date(this.bindEndDate.replace(/-/g, "/")), 1)),
|
|
endTime: this.bindEndDate,
|
|
roomName: this.roomDetail.floorNum + '-' + this.roomDetail.unitNum + '-' + this.roomDetail.roomNum,
|
|
roomId: this.roomDetail.roomId,
|
|
communityId: getCommunityId(),
|
|
createUserName: this.userName,
|
|
createUserTel: this.userTel,
|
|
createRemark: this.createRemark,
|
|
ardId: '',
|
|
applyType: this.applyType,
|
|
feeId: this.feeId,
|
|
photos: this.photos
|
|
}
|
|
saveApplyRoomDiscount(params).then(function(_res){
|
|
uni.showToast({
|
|
title: '申请成功'
|
|
});
|
|
setTimeout(function(){
|
|
uni.navigateBack({})
|
|
}, 1000);
|
|
})
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.block__title {
|
|
margin: 0;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
color: rgba(69, 90, 100, .6);
|
|
padding: 40rpx 30rpx 20rpx;
|
|
}
|
|
|
|
.button_up_blank {
|
|
height: 40rpx;
|
|
}
|
|
|
|
.block__bottom {
|
|
height: 180rpx;
|
|
}
|
|
|
|
.btn-box{
|
|
padding: 30rpx 0;
|
|
}
|
|
.btn-sub{
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
background-color: #1F8DEE!important;
|
|
color: #fff!important;
|
|
}
|
|
</style>
|