Browse Source

房屋详情添加联系电话与地址

master
mk 2 years ago
parent
commit
7d88b7405d
  1. 68
      epdc-resident-mp-yushan/project.private.config.json
  2. 6
      epdc-resident-mp-yushan/subpages/family/pages/houseDetail/index.wxml
  3. 8
      epdc-resident-mp-yushan/subpages/family/pages/houseDetail/index.wxss

68
epdc-resident-mp-yushan/project.private.config.json

@ -22,15 +22,10 @@
"scene": null "scene": null
}, },
{ {
"name": "网格注册", "name": "房屋详情",
"pathName": "pages/formid/formid", "pathName": "subpages/family/pages/houseDetail/index",
"query": "gid=1258691044142047233",
"scene": null
},
{
"name": "pages/index/index",
"pathName": "pages/index/index",
"query": "", "query": "",
"launchMode": "default",
"scene": null "scene": null
}, },
{ {
@ -46,9 +41,10 @@
"scene": null "scene": null
}, },
{ {
"name": "网格队伍", "name": "我的e家",
"pathName": "subpages/gridArmy/pages/index/index", "pathName": "subpages/family/pages/index/index",
"query": "", "query": "",
"launchMode": "default",
"scene": null "scene": null
}, },
{ {
@ -63,10 +59,60 @@
"query": "", "query": "",
"launchMode": "default", "launchMode": "default",
"scene": null "scene": null
},
{
"name": "个人中心",
"pathName": "pages/mine/mine",
"query": "",
"launchMode": "default",
"scene": null
},
{
"name": "卖房",
"pathName": "subpages/family/pages/addHouse/addHouse",
"query": "name=卖房",
"launchMode": "default",
"scene": null
},
{
"name": "创建群",
"pathName": "subpages/association/pages/createassociation/createassociation",
"query": "",
"launchMode": "default",
"scene": null
},
{
"name": "我有事要说(图片上传)",
"pathName": "subpages/discussion/pages/addIssue/addIssue",
"query": "",
"launchMode": "default",
"scene": null
},
{
"name": "发布",
"pathName": "subpages/family/pages/addGroupBuyPublish/addGroupBuyPublish",
"query": "",
"launchMode": "default",
"scene": null
},
{
"name": "房屋详情",
"pathName": "subpages/family/pages/houseDetail/index",
"query": "houseId='0221605451024'",
"launchMode": "default",
"scene": null
},
{
"name": "积分中心",
"pathName": "subpages/integralCentre/pages/exchangeIndex/exchangeIndex",
"query": "",
"launchMode": "default",
"scene": null
} }
] ]
} }
}, },
"description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html", "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
"projectname": "%25E7%258E%25B0%25E4%25BB%25A3%25E6%25A6%2586%25E5%25B1%25B1-%25E5%25B1%2585%25E6%25B0%2591%25E7%25AB%25AF" "projectname": "%2525E7%25258E%2525B0%2525E4%2525BB%2525A3%2525E6%2525A6%252586%2525E5%2525B1%2525B1-%2525E5%2525B1%252585%2525E6%2525B0%252591%2525E7%2525AB%2525AF",
"libVersion": "2.10.4"
} }

6
epdc-resident-mp-yushan/subpages/family/pages/houseDetail/index.wxml

@ -42,6 +42,12 @@
<view>用途 <text>{{houseDetailObj.houseType==1?'住宅':houseDetailObj.houseType==2?'办公':'门头'}}</text></view> <view>用途 <text>{{houseDetailObj.houseType==1?'住宅':houseDetailObj.houseType==2?'办公':'门头'}}</text></view>
<view></view> <view></view>
</view> </view>
<view class=" float">
<view><text class="gray">地址</text> <text class="l10">{{houseDetailObj.address}}</text></view>
</view>
<view class=" float">
<view><text class="gray">联系电话</text> <text class="l10">{{houseDetailObj.contact}}</text></view>
</view>
<view class="describe"> <view class="describe">
<view>房屋描述</view> <view>房屋描述</view>
<text>{{houseDetailObj.description}}</text> <text>{{houseDetailObj.description}}</text>

8
epdc-resident-mp-yushan/subpages/family/pages/houseDetail/index.wxss

@ -159,5 +159,11 @@ page {
width: 580rpx; width: 580rpx;
height: 110rpx; height: 110rpx;
padding-left: 35rpx; padding-left: 35rpx;
}
.float{
float: left;
margin-top: 20rpx;
}
.l10{
margin-left: 20rpx;
} }
Loading…
Cancel
Save