Browse Source

修改公寓详情样式

修改用户信息修改
dev
396316021 1 year ago
parent
commit
599576ff27
  1. 74
      components/FxxPage/index.vue
  2. 1
      pages/Room/components/index.scss
  3. 27
      pages/Room/index.vue

74
components/FxxPage/index.vue

@ -95,41 +95,42 @@
borderBottom
>
<view class="" v-if="tipShow && tips.length > 0" style="
background-color:#fff;
border:2rpx solid #dedede;
border-radius: 20rpx;
position: absolute;
top:110%;
z-index: 10;
padding:0 20rpx;
">
<view
v-for="(item,index) in tips"
class=""
style="
border-bottom:2rpx solid #dedede;
padding:20rpx 0;
min-width:150rpx;
"
@click="selectTip(item)"
@mousedown.prevent>
<u-text :text="item" size="28"></u-text>
</view>
<!-- <view style="padding:20rpx 0;display:flex;justify-content: flex-end;text-align: right;" @click="tipShow = false;">-->
<!-- <u-button text="关闭提示" size="mini" custom-style="background-color:#FF9545;"></u-button>-->
<!-- </view>-->
</view>
<u-input
fontSize="28"
placeholder="请输入"
v-model="model.userInfo.company"
border="none"
@change="filterTip"
@focus="filterTip"
@blur="blurCompany"
>
</u-input>
<uni-combox labelWidth="0" placeholder="请选择公司" v-model="model.userInfo.company" :border="false"></uni-combox>
<!-- <view class="" v-if="tipShow && tips.length > 0" style="-->
<!-- background-color:#fff;-->
<!-- border:2rpx solid #dedede;-->
<!-- border-radius: 20rpx;-->
<!-- position: absolute;-->
<!-- top:110%;-->
<!-- z-index: 10;-->
<!-- padding:0 20rpx;-->
<!-- ">-->
<!-- <view-->
<!-- v-for="(item,index) in tips"-->
<!-- class=""-->
<!-- style="-->
<!-- border-bottom:2rpx solid #dedede;-->
<!-- padding:20rpx 0;-->
<!-- min-width:150rpx;-->
<!-- "-->
<!-- @click="selectTip(item)"-->
<!-- @mousedown.prevent>-->
<!-- <u-text :text="item" size="28"></u-text>-->
<!-- </view>-->
<!-- &lt;!&ndash; <view style="padding:20rpx 0;display:flex;justify-content: flex-end;text-align: right;" @click="tipShow = false;">&ndash;&gt;-->
<!-- &lt;!&ndash; <u-button text="关闭提示" size="mini" custom-style="background-color:#FF9545;"></u-button>&ndash;&gt;-->
<!-- &lt;!&ndash; </view>&ndash;&gt;-->
<!-- </view>-->
<!-- <u-input-->
<!-- fontSize="28"-->
<!-- placeholder="请输入"-->
<!-- v-model="model.userInfo.company"-->
<!-- border="none"-->
<!-- @change="filterTip"-->
<!-- @focus="filterTip"-->
<!-- @blur="blurCompany"-->
<!-- >-->
<!-- </u-input>-->
</u-form-item>
<u-form-item
@ -459,4 +460,7 @@ export default {
<style lang="scss">
@import './components/index.scss';
::v-deep .uni-combox{
padding-left:0 !important;
}
</style>

1
pages/Room/components/index.scss

@ -89,6 +89,7 @@
}
}
&.info,&.detail{
.body{
padding:50rpx 14rpx;
.item{

27
pages/Room/index.vue

@ -70,7 +70,7 @@
</view>
</view>
</view>
<view class="detail-item info">
<view class="detail-item info" >
<view class="cell-two-container row">
<view class="cell-border"></view>
<view class="cell-title">
@ -78,18 +78,10 @@
</view>
</view>
<view class="body">
<view class="item row" style="margin-bottom:20rpx;">
<u-text line-height="40" text="1、丰行侠需在小程序选定公寓后,在线下签订租房协议,并支付房租;" color="#020b18" size="28"></u-text>
</view>
<view class="item row" style="margin-bottom:20rpx;">
<u-text line-height="40" text="2、在小程序点击暖新币兑换,上传支付凭证和租赁协议提交审核;" color="#020b18" size="28"></u-text>
</view>
<view class="item row" style="margin-bottom:20rpx;">
<u-text line-height="40" text="3、街道对丰行侠提交的暖新币兑换进行审核;" color="#020b18" size="28"></u-text>
</view>
<view class="item row">
<u-text line-height="40" text="4、审核通过后,丰行侠可在每月指定时间(请留意小程序首页消息提醒)前往社区领取暖新币兑换金额;" color="#020b18" size="28"></u-text>
</view>
<uv-read-more ref="readMore" showHeight="200rpx" font-size="28rpx" color="#FF9545" :toggle="true">
<u-parse :content="exchangeContent" @load="contentLoad"></u-parse>
</uv-read-more>
</view>
</view>
<view class="detail-item info">
@ -152,6 +144,7 @@
import {systemConfig} from "@/api/other";
import {imghost} from "@/config/host";
import follow from "@/components/Follow/index.vue";
import {webConfig} from "../../api/other";
export default {
computed: {
@ -163,6 +156,7 @@
},
data() {
return {
exchangeContent:'',
title: '公寓详情',
size:{
height:0
@ -202,6 +196,9 @@
this.size.height = api.navHeight().navigationBar + api.navHeight().systemBar
},
methods: {
contentLoad(){
this.$refs.readMore.init();
},
navTo(url,token = false) {
if(token){
if(uni.getStorageSync('token')){
@ -237,6 +234,10 @@
systemConfig({type:'jiadian'}).then(res => {
this.all.jiadian = res.data;
});
webConfig({type:'house_info'}).then(res => {
this.exchangeContent = res.data.house_info;
this.$refs.readMore.init();
});
},
callPhone(){
uni.makePhoneCall({

Loading…
Cancel
Save