123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- <template>
- <view class="index-container">
- <view class="project-box">
- <view class="project-name" @click="$navigateTo('/pages/projectList/projectList')">
- <text class="label">项目名称</text>
- <uni-icons class="project-icon" type="right" size="16"></uni-icons>
- </view>
- <view class="change-role">
- <uni-icons type="contact" size="14" class="role-icon"></uni-icons>切换角色
- </view>
- </view>
- <view class="banner-box">
- <swiper class="swiper-box">
- <swiper-item class="swiper-item-box" v-for="(item, index) in info" :key="index">
- <view class="swiper-item" :style="'background-image:url(' + item.url + ')'"></view>
- </swiper-item>
- </swiper>
- </view>
- <view class="grid">
- <view class="grid-item red" @click="$navigateTo('/pages/house/house')">
- <view>
- <view class="label">房源列表</view>
- <view class="sub-label">
- 查看房源
- <uni-icons class="sub-label-icon" type="right" size="14"></uni-icons>
- </view>
- </view>
- <uni-icons class="home-filled" type="home-filled" size="40"></uni-icons>
- </view>
- <view class="grid-item blue">
- <view>
- <view class="label">客户管理</view>
- <view class="sub-label">
- 查看客户
- <uni-icons class="sub-label-icon" type="right" size="14"></uni-icons>
- </view>
- </view>
- <uni-icons class="home-filled" type="person-filled" size="40"></uni-icons>
- </view>
- </view>
- <view class="house-box">
- <view class="good-box">
- <text>推荐房源</text>
- </view>
- <house-list :list="houseList"></house-list>
- </view>
- </view>
- </template>
- <script>
- import houseList from '@/components/house/houseList.vue'
- import {
- getHouseListByPage
- } from '@/request/api/house'
- import {
- getProjectList
- } from '@/request/api/project'
- export default {
- data() {
- return {
- info: [{
- url: 'https://file-node.oss-cn-shanghai.aliyuncs.com/youji/3556e2b4f9c844758c3af76407b3a5d5'
- },
- {
- url: 'https://file-node.oss-cn-shanghai.aliyuncs.com/youji/f488a1cc0e904ed089d52d88e3c1b33d'
- }
- ],
- houseList: []
- }
- },
- onShow() {
- this.getAllProjectList();
- this.getHouseList();
- },
- methods: {
- getAllProjectList() {
- getProjectList().then(res => {
- if (res.code == 200) {
- }
- console.log(res);
- })
- },
- getHouseList() {
- getHouseListByPage({
- currPage: 1,
- pageSize: 10,
- projectId: 9
- }).then(res => {
- if (res.code === 200) {
- let commonUrl =
- 'https://file-node.oss-cn-shanghai.aliyuncs.com/youji/f488a1cc0e904ed089d52d88e3c1b33d';
- this.houseList = res.data.dataList.map(node => {
- if (node.picture) {
- let picture = JSON.parse(node.picture);
- if (picture.length === 0) {
- node['privewImage'] = commonUrl;
- } else {
- node['privewImage'] = picture[0].url;
- }
- } else {
- node['privewImage'] = commonUrl;
- }
- return node;
- });
- }
- })
- }
- },
- components: {
- houseList
- }
- }
- </script>
- <style lang="scss">
- .index-container {
- box-sizing: border-box;
- position: relative;
- .project-box {
- padding: 20rpx 30rpx;
- display: flex;
- justify-content: space-between;
- background-color: $uni-white;
- border-top: 1px solid $uni-border-2;
- position: fixed;
- /* #ifdef MP-WEIXIN */
- top: 0;
- /* #endif */
- /* #ifdef H5 */
- top: calc(44px + env(safe-area-inset-top));
- /* #endif */
- left: 0;
- right: 0;
- z-index: 99;
- .project-name {
- display: flex;
- align-items: center;
- font-weight: 400;
- align-items: center;
- flex: 1;
- width: 0;
- overflow: hidden;
- }
- .project-icon {
- margin-left: 8rpx;
- }
- .change-role {
- font-size: 24rpx;
- color: $uni-secondary-color;
- border: 1px solid $uni-border-3;
- width: 160rpx;
- height: 40rpx;
- border-radius: 40rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .role-icon {
- text {
- color: $uni-secondary-color !important;
- }
- margin-right: 8rpx;
- }
- }
- .banner-box {
- padding: 30rpx;
- box-sizing: border-box;
- margin-top: 86rpx;
- .swiper-box {
- height: 400rpx;
- border-radius: 20rpx;
- overflow: hidden;
- }
- .swiper-item {
- width: 100%;
- height: 100%;
- background-size: cover;
- background-position: bottom;
- }
- .swiper-item-box:first-child {
- border-radius: 20rpx 0 0 20rpx;
- }
- .swiper-item-box:last-child {
- border-radius: 0 20rpx 20rpx 0;
- }
- }
- .grid {
- display: flex;
- flex-wrap: wrap;
- padding: 0 30rpx;
- box-sizing: border-box;
- .grid-item {
- flex: 1;
- height: 180rpx;
- border-radius: 16rpx;
- color: $uni-white;
- display: flex;
- align-items: center;
- padding: 0 20rpx;
- justify-content: space-between;
- &.red {
- background: linear-gradient(to right, rgb(242, 79, 104), rgb(237, 133, 152));
- }
- &.blue {
- background: linear-gradient(to right, rgb(69, 159, 230), rgb(108, 201, 228));
- }
- }
- .label {
- font-size: 32rpx;
- margin-bottom: 5px;
- }
- .sub-label {
- color: $uni-extras-color;
- font-size: 24rpx;
- display: flex;
- align-items: center;
- height: 40rpx;
- opacity: 0.5;
- }
- .sub-label-icon {
- /* #ifdef H5 */
- color: $uni-extras-color !important;
- /* #endif */
- /* #ifdef MP-WEIXIN */
- text {
- color: $uni-extras-color !important;
- }
- /* #endif */
- }
- .grid-item:nth-child(2n) {
- margin-left: 30rpx;
- }
- .home-filled {
- opacity: 0.3;
- /* #ifdef H5 */
- color: $uni-extras-color !important;
- /* #endif */
- /* #ifdef MP-WEIXIN */
- text {
- color: $uni-extras-color !important;
- }
- /* #endif */
- }
- }
- .house-box {
- padding: 0 30rpx;
- box-sizing: border-box;
- .good-box {
- margin-top: 30rpx;
- position: relative;
- text-align: center;
- text {
- background: $uni-background-color;
- z-index: 9;
- position: relative;
- padding: 5px 10px;
- color: $uni-secondary-color;
- }
- &:before {
- content: '';
- bottom: 20rpx;
- position: absolute;
- left: 0;
- height: 1px;
- right: 0;
- background: $uni-border-2;
- z-index: 8;
- }
- }
- }
- }
- </style>
|