合并处理-v1

This commit is contained in:
qiaojiale 2025-07-09 11:09:37 +08:00
commit c2a2f16b55
67 changed files with 1057 additions and 590 deletions

View File

@ -29,4 +29,10 @@ export const apiArr = {
getButton:"/api/v1/wechat/home-page/button-list",//获取button getButton:"/api/v1/wechat/home-page/button-list",//获取button
getHotWords:"/api/v1/wechat/home-page/search-hot-word/info",//搜索热词 getHotWords:"/api/v1/wechat/home-page/search-hot-word/info",//搜索热词
getAllList:"/api/v2/wechat/community/get-all-list",//获取小区信息列表
commRoomSelect:"/api/v2/wechat/community-room/comm-room-select",//房源筛选器
commInfo:"/api/v2/wechat/mpuser-crud/community-owner/info",//我的房产信息小区列表
create:"/api/v2/wechat/community-owners/create",//创建新的业主信息
}; };

View File

@ -9,4 +9,10 @@ export const apiArr = {
workOrderCrudDispatch: '/api/v2/wechat/work-order-crud/dispatch', // 人员派单 workOrderCrudDispatch: '/api/v2/wechat/work-order-crud/dispatch', // 人员派单
workOrderCrudAccept: '/api/v2/wechat/work-order-crud/accept', // 人员接单 workOrderCrudAccept: '/api/v2/wechat/work-order-crud/accept', // 人员接单
workOrderCrudUpdate: '/api/v2/wechat/work-order-crud/worker/update', // 工作人员更新工单 workOrderCrudUpdate: '/api/v2/wechat/work-order-crud/worker/update', // 工作人员更新工单
navPage: '/api/v2/wechat/community-navigation-crud/page', // 小区图标导航信息分页
advPage: '/api/v2/wechat/community-advertisement-crud/page', // 小区广告信息分页
categoryPage: '/api/v2/wechat/announcement-category-crud/page', // 公告分类信息分页
infoPage: '/api/v2/wechat/announcement-crud/page', // 公告信息分页
}; };

View File

@ -29,32 +29,32 @@
return { return {
navList: [ navList: [
{ {
photo:"http://192.168.0.172:5500/footer_home.png", photo:"https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/footer_home.png",
photoAc:"http://192.168.0.172:5500/footer_homeAc.png", photoAc:"https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/footer_homeAc.png",
nav_name:"首页", nav_name:"首页",
url:"/pages/index/index" url:"/pages/index/index"
}, },
{ {
photo:"http://192.168.0.172:5500/footer_community.png", photo:"https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/footer_community.png",
photoAc:"http://192.168.0.172:5500/footer_communityAc.png", photoAc:"https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/footer_communityAc.png",
nav_name:"我的小区", nav_name:"我的小区",
url:"/packages/community/index/index" url:"/packages/community/index/index"
}, },
{ {
photo:"http://192.168.0.172:5500/footer_shop.png", photo:"https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/footer_shop.png",
photoAc:"http://192.168.0.172:5500/footer_shopAc.png", photoAc:"https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/footer_shopAc.png",
nav_name:"优选商城", nav_name:"优选商城",
url:"/packages/shop/index/index" url:"/packages/shop/index/index"
}, },
{ {
photo:"http://192.168.0.172:5500/footer_door.png", photo:"https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/footer_door.png",
photoAc:"http://192.168.0.172:5500/footer_doorAc.png", photoAc:"https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/footer_doorAc.png",
nav_name:"上门服务", nav_name:"上门服务",
url:"" url:""
}, },
{ {
photo:"http://192.168.0.172:5500/footer_mine.png", photo:"https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/footer_mine.png",
photoAc:"http://192.168.0.172:5500/footer_mineAc.png", photoAc:"https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/footer_mineAc.png",
nav_name:"我的", nav_name:"我的",
url:"/pages/user/index" url:"/pages/user/index"
}, },

View File

@ -5,23 +5,23 @@
<view class="table"> <view class="table">
<view class="label">房产</view> <view class="label">房产</view>
<view class="flexBox" @click="choseCommunity"> <view class="flexBox" @click="choseCommunity">
<input type="text" disabled placeholder="请选择房产"> <input type="text" v-model="changeComm" disabled placeholder="请选择房产">
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
</view> </view>
<view class="table"> <view class="table">
<view class="label">姓名</view> <view class="label">姓名</view>
<input type="text" placeholder="请输入姓名"> <input type="text" v-model="nameVal" placeholder="请输入姓名">
</view> </view>
<view class="table"> <view class="table">
<view class="label">手机</view> <view class="label">手机</view>
<input type="text" placeholder="请输入手机号"> <input type="text" v-model="phoneVal" placeholder="请输入手机号">
</view> </view>
<view class="table"> <view class="table">
<view class="label">身份</view> <view class="label">身份</view>
<view class="flexBox" @click="chooseIdentity"> <view class="flexBox" @click="chooseIdentity">
<input type="number" disabled placeholder="请选择身份"> <input type="number" v-model="selectedLabel" disabled placeholder="请选择身份">
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
@ -39,15 +39,27 @@
</template> </template>
<script> <script>
import { request, NavgateTo, isPhone } from '../../../utils'; import {
import { apiArr } from '../../../api/community'; request,
export default { NavgateTo,
isPhone
} from '../../../utils';
import {
apiArr
} from '../../../api/community';
export default {
onBackPress(options) {
console.log('from:' + options.from)
},
data() { data() {
return { return {
communityId: '',
roomId: '',
managementMobile: '', managementMobile: '',
show: false, show: false,
columns: [[ changeComm: '',
{ columns: [
[{
label: "业主", label: "业主",
value: "1" value: "1"
}, },
@ -62,18 +74,27 @@ export default {
{ {
label: "访客", label: "访客",
value: "4" value: "4"
},] },
] ]
],
selectedValue: '',
selectedLabel: '',
nameVal: '',
phoneVal: '',
} }
}, },
methods: { methods: {
close(){ close() {
this.show = false this.show = false
}, },
chooseIdentity(){ chooseIdentity() {
this.show = true this.show = true
console.log()
}, },
confirm() { confirm(selected) {
console.log(selected.value[0].value)
this.selectedValue = selected.value[0].value
this.selectedLabel = selected.value[0].label
this.show = false this.show = false
}, },
headerCloseClick() { headerCloseClick() {
@ -81,28 +102,52 @@ export default {
}, },
headerInputClick(e) { headerInputClick(e) {
const { name } = e.currentTarget.dataset; const {
const { value } = e.detail; name
} = e.currentTarget.dataset;
const {
value
} = e.detail;
this[name] = value; this[name] = value;
}, },
async headerSubmitClick() {
await request(apiArr.create, "POST", {
choseCommunity(){ community_id: parseInt(this.communityId),
room_id: parseInt(this.roomId),
user_id: uni.getStorageSync('userId'),
name: this.nameVal, //
mobile: this.phoneVal, //
type: parseInt(this.selectedValue), //
id_type: 1
}).then(res => {
console.log(res)
uni.showToast({
title: '创建成功',
icon: "none",
duration: 2000
});
NavgateTo("/packages/community/myCommunity/index")
})
},
choseCommunity() {
NavgateTo("/packages/community/choseCommunity/index") NavgateTo("/packages/community/choseCommunity/index")
}, },
}, },
onLoad(options) { onLoad(options) {
console.log("接收到的参数:", options);
this.communityId = options.community_id ? decodeURIComponent(options.community_id) : ''
this.roomId = options.room_id ? decodeURIComponent(options.room_id) : ''
this.changeComm = options.changeVal ? decodeURIComponent(options.changeVal) : ''
}, },
onReachBottom() { onReachBottom() {
}, },
} }
</script> </script>
<style> <style>
@import url("./index.css"); @import url("./index.css");
</style> </style>

View File

@ -3,7 +3,7 @@
<view class="container"> <view class="container">
<div class="userAva"> <div class="userAva">
<image src="http://192.168.0.172:5500/com_MsgImg1.png" alt="" mode="aspectFill" /> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_MsgImg1.png" alt="" mode="aspectFill" />
</div> </div>
<div class="Name">MarrekoZhang</div> <div class="Name">MarrekoZhang</div>

View File

@ -1,14 +1,14 @@
<template> <template>
<view class="container"> <view class="container">
<div class="searchBox"> <div class="searchBox">
<img src="http://192.168.0.172:5500/com_communitySearchIcon.png" alt="" /> <img src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communitySearchIcon.png" alt="" />
<input placeholder="请输入小区名称" type="text"> <input placeholder="请输入小区名称" type="text">
</div> </div>
<div class="communityList"> <div class="communityList">
<div class="communityItem" v-for="(item, index) in 5" :key="index" @click="chooseCommunityInfo"> <div class="communityItem" v-for="(item, index) in 5" :key="index" @click="chooseCommunityInfo">
<div class="communityItem_img"> <div class="communityItem_img">
<img src="http://192.168.0.172:5500/com_act2Img.png" alt="" /> <img src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_act2Img.png" alt="" />
</div> </div>
<div class="communityItem_msg"> <div class="communityItem_msg">
@ -21,8 +21,8 @@
</div> </div>
<div class="communityItem_msg_more"> <div class="communityItem_msg_more">
<img src="http://192.168.0.172:5500/com_check1.png" alt="" /> <img src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_check1.png" alt="" />
<!-- <img src="http://192.168.0.172:5500/com_check2.png" alt="" /> --> <!-- <img src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_check2.png" alt="" /> -->
</div> </div>
</div> </div>

View File

@ -7,7 +7,7 @@
<div class="communityList"> <div class="communityList">
<div class="communityItem"> <div class="communityItem">
<div class="communityItem_img"> <div class="communityItem_img">
<image mode="aspectFill" src="http://192.168.0.172:5500/com_act2Img.png" alt="" /> <image mode="aspectFill" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_act2Img.png" alt="" />
</div> </div>
<div class="communityItem_msg"> <div class="communityItem_msg">
@ -20,7 +20,7 @@
</div> </div>
<div class="communityItem_msg_more"> <div class="communityItem_msg_more">
<image src="http://192.168.0.172:5500/com_communityMore.png" alt="" /> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communityMore.png" alt="" />
</div> </div>
</div> </div>

View File

@ -167,7 +167,7 @@ image {
position: absolute; position: absolute;
right: 0; right: 0;
bottom: 0; bottom: 0;
background: url(http://192.168.0.172:5500/com_activeIcon.png) no-repeat; background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_activeIcon.png) no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
} }
@ -206,7 +206,7 @@ image {
position: absolute; position: absolute;
right: 0; right: 0;
bottom: 0; bottom: 0;
background: url(http://192.168.0.172:5500/com_activeIcon.png) no-repeat; background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_activeIcon.png) no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
} }

View File

@ -4,81 +4,119 @@
<div class="currentAdd_left">河北省衡水市桃城区</div> <div class="currentAdd_left">河北省衡水市桃城区</div>
<div class="currentAdd_right" @click="changeAddress"> <div class="currentAdd_right" @click="changeAddress">
切换城市 切换城市
<image src="http://192.168.0.172:5500/com_choseAddress.png"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_choseAddress.png"></image>
</div> </div>
</div> </div>
<div class="communityBox" v-if="step == 1"> <div class="communityBox" v-if="step == 1">
<div class="search"> <div class="search">
<input type="text" placeholder="请输入小区名称"> <input type="text" placeholder="请输入小区名称" v-model="communityName">
<image src="http://192.168.0.172:5500/com_communitySearchIcon.png"></image> <image @click="searchByName" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communitySearchIcon.png"></image>
</div> </div>
<div class="communityList"> <div class="communityList">
<div class="communityItem" v-for="item in 3"> <div class="communityItem" v-for="item in communityList">
<div class="communityItem_left"> <div class="communityItem_left">
<div class="communityItem_tit">世纪名城东区</div> <div class="communityItem_tit">{{item.name}}</div>
<div class="communityItem_address">河北省衡水市中心街120号</div> <div class="communityItem_address">{{item.addr}}</div>
</div> </div>
<div class="communityItem_right"> <div class="communityItem_right">
<image src="http://192.168.0.172:5500/com_communityMore.png"></image> <image @click="nextStep(item)" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communityMore.png"></image>
</div> </div>
</div> </div>
</div> </div>
<div class="empty" v-if="false"> <div class="empty" v-if="!communityList">
<image src="http://192.168.0.172:5500/com_noSearch.png"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_noSearch.png"></image>
<span>未找到康家美园相关信息的小区</span> <span>未找到相关信息的小区</span>
</div> </div>
</div> </div>
<div class="communityBox" v-if="step == 2"> <!-- <div class="communityBox" v-if="step == 2">
<div class="search"> <div class="search">
<input type="text" placeholder="请输入楼栋"> <input type="text" placeholder="请输入楼栋名称">
<image src="http://192.168.0.172:5500/com_communitySearchIcon.png"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communitySearchIcon.png"></image>
</div> </div>
<div class="floorList"> <div class="floorList">
<div class="floorItem" v-for="(item,index) in 4" :class="index == 1?'active':''"> <div @click="nextStep(item)" class="floorItem" v-for="(item,index) in foloorList" :key="index">
1号楼2单元 {{item.label}}
</div> </div>
</div> </div>
<div class="empty" v-if="false"> <div class="empty" v-if="!foloorList">
<image src="http://192.168.0.172:5500/com_noSearch.png"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_noSearch.png"></image>
<span>未找到康家美园相关信息的小区</span> <span>未找到相关信息的楼栋</span>
</div>
</div> -->
<div class="communityBox" v-if="step == 2">
<div class="search">
<input v-model="searchQuery" type="text" placeholder="请输入楼栋名称">
<image @click="searchName" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communitySearchIcon.png"></image>
</div>
<div class="floorList">
<div @click="nextStep(item)" class="floorItem" v-for="(item, index) in filteredFloorsList" :key="index">
{{ item.label }}
</div>
</div>
<div class="empty" v-if="filteredFloorsList.length === 0">
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_noSearch.png"></image>
<span>未找到相关信息的楼栋</span>
</div> </div>
</div> </div>
<div class="communityBox" v-if="step == 3"> <div class="communityBox" v-if="step == 3">
<div class="search"> <div class="search">
<input type="text" placeholder="请输入楼层"> <input v-model="searchQuery" type="text" placeholder="请输入楼层名称">
<image src="http://192.168.0.172:5500/com_communitySearchIcon.png"></image> <image @click="searchName" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communitySearchIcon.png"></image>
</div> </div>
<div class="roomList"> <div class="roomList">
<div class="roomItem" v-for="(item,index) in 5" :class="index == 1?'active2':''"> <!-- <div class="roomItem" v-for="(item,index) in 5" :class="index == 1?'active2':''"> -->
{{ index + 1 }} <div @click="nextStep(item)" class="roomItem" v-for="(item,index) in filteredFloorsList" :key="index">
{{item.label}}
</div> </div>
</div> </div>
<div class="empty" v-if="false"> <div class="empty" v-if="filteredFloorsList.length === 0">
<image src="http://192.168.0.172:5500/com_noSearch.png"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_noSearch.png"></image>
<span>未找到康家美园相关信息的小区</span> <span>未找到相关信息的楼层</span>
</div>
</div>
<div class="communityBox" v-if="step == 4">
<div class="search">
<input v-model="searchQuery" type="text" placeholder="请输入房间名称">
<image @click="searchName" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communitySearchIcon.png"></image>
</div>
<div class="roomList">
<!-- <div class="roomItem" v-for="(item,index) in 5" :class="index == 1?'active2':''"> -->
<div @click="nextStep(item)" class="roomItem" v-for="(item,index) in filteredFloorsList" :key="index">
{{item.label}}
</div>
</div>
<div class="empty" v-if="filteredFloorsList.length === 0">
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_noSearch.png"></image>
<span>未找到相关信息的房间</span>
</div> </div>
</div> </div>
<areaPopup :show="show" @selectArea="selectArea" @close="close"></areaPopup> <areaPopup :show="show" @selectArea="selectArea" @close="close"></areaPopup>
<div class="dialogBox" v-if="false"> <div class="dialogBox" v-if="dialogBoxShow">
<div class="dialogBoxCon"> <div class="dialogBoxCon">
<div class="dialogBoxCon1">确认选择</div> <div class="dialogBoxCon1">确认选择</div>
<div class="dialogBoxCon2">世纪名城</div> <div class="dialogBoxCon2">{{cName}}</div>
<div class="dialogBoxCon3">1栋1单元101室</div> <div class="dialogBoxCon3">{{facilityName + fName + rName}}</div>
<div class="dialogBoxConBtnList"> <div class="dialogBoxConBtnList">
<div class="dialogBoxConBtnItem1">取消</div> <div class="dialogBoxConBtnItem1" @click="dialogBoxShow = false">取消</div>
<div class="dialogBoxConBtnItem2">确定</div> <div class="dialogBoxConBtnItem2" @click="confirmComm">确定</div>
</div> </div>
</div> </div>
</div> </div>
@ -86,20 +124,39 @@
</template> </template>
<script> <script>
import { apiArr } from '../../../api/community'; import {
import { apiArr
} from '../../../api/community';
import {
request, request,
picUrl, picUrl,
uniqueByField, uniqueByField,
menuButtonInfo, menuButtonInfo,
NavgateTo NavgateTo
} from '../../../utils'; } from '../../../utils';
export default { export default {
data() { data() {
return { return {
show: false, show: false,
step:"2" step: "1",
communityName: '',
cName: '',
fName: '',
communityId: '',
communityList: [],
facilityName: '',
// foloorList: [],
// floorsList: [],
rName: '',
roomId: '',
// roomList: [],
page_num: 1,
page_size: 10,
dialogBoxShow: false,
searchQuery: '',
filteredFloorsList: [],
searchList: []
} }
}, },
methods: { methods: {
@ -112,21 +169,94 @@ export default {
selectArea(e1) { selectArea(e1) {
console.log(e1); console.log(e1);
this.show = false this.show = false
}, },
async searchByName() {
console.log(this.communityName,'zzz')
await request(apiArr.getAllList, "POST", {
community_id: '',
name: this.communityName,
comm_code: '',
ad_code: uni.getStorageSync('ad_code'),
page_num: this.page_num,
page_size: this.page_size
}).then(res => {
console.log(res.rows)
this.communityList = res.rows
})
},
async nextStep(item) {
console.log(item)
this.communityId = item.community_id ? item.community_id : this.communityId;
this.facilityName = this.facilityName ? this.facilityName : item.label;
this.fName = this.step == 4 ? this.fName : (this.facilityName ? item.label : '')
await request(apiArr.commRoomSelect, "POST", {
community_ids: item.community_id ? item.community_id : this.communityId,
facility_names: this.facilityName,
floors: this.facilityName ? (this.facilityName == this.fName ? '' : item.label) : '',
}).then(res => {
this.filteredFloorsList = this.step == 4 ? this.filteredFloorsList : res.rows
this.searchList = res.rows
this.searchQuery = ''
if (this.step == '1') {
this.step = '2';
this.cName = item.name;
// this.foloorList = res.rows
} else if (this.step == '2') {
this.step = '3';
// this.floorsList = res.rows
} else if (this.step == '3') {
console.log(item.label);
this.fName = item.label;
// this.roomList = res.rows
this.step = '4';
} else {
this.dialogBoxShow = true;
this.rName = item.label
this.romId = item.value
}
})
},
searchName() {
//
this.filteredFloorsList = this.searchList.filter(item =>
item.label.includes(this.searchQuery)
);
},
confirmComm() {
const params = {
changeVal: `${this.cName}${this.facilityName}${this.fName}${this.rName}`,
community_id: this.communityId,
room_id: this.romId
};
console.log(params)
//
function createQueryString(params) {
return Object.keys(params)
.map(key => `${encodeURIComponent(key)}=${encodeURIComponent(params[key])}`)
.join('&');
}
//
const targetPath = "/packages/community/addCommunity/index";
const queryString = createQueryString(params);
const fullPath = `${targetPath}?${queryString}`;
//
NavgateTo(fullPath);
}
}, },
onLoad(options) { onLoad(options) {
const meun = menuButtonInfo(); const meun = menuButtonInfo();
this.searchByName()
}, },
onReachBottom() { onReachBottom() {
}, },
} }
</script> </script>
<style> <style>
@import url("./index.css"); @import url("./index.css");
</style> </style>

View File

@ -378,17 +378,17 @@ page {
} }
.tabItem1 { .tabItem1 {
background: url(http://192.168.0.172:5500/com_tabBg1.png); background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_tabBg1.png);
background-size: cover; background-size: cover;
} }
.tabItem2 { .tabItem2 {
background: url(http://192.168.0.172:5500/com_tabBg2.png); background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_tabBg2.png);
background-size: cover; background-size: cover;
} }
.tabItem3 { .tabItem3 {
background: url(http://192.168.0.172:5500/com_tabBg3.png); background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_tabBg3.png);
background-size: cover; background-size: cover;
} }
@ -470,7 +470,7 @@ page {
content: ''; content: '';
width: 52rpx; width: 52rpx;
height: 22rpx; height: 22rpx;
background: url(http://192.168.0.172:5500/com_active.png); background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_active.png);
background-size: cover; background-size: cover;
position: absolute; position: absolute;
left: 50%; left: 50%;

View File

@ -2,57 +2,57 @@
<view class="container"> <view class="container">
<view class="searchBox" :style="{ height: localHeight + 'px', paddingTop: top + 'px' }"> <view class="searchBox" :style="{ height: localHeight + 'px', paddingTop: top + 'px' }">
<view class="searchBox_add"> <view class="searchBox_add">
<img src="http://192.168.0.172:5500/com_communityIcon.png" alt="" /> <img src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communityIcon.png" alt="" />
我的房产 我的房产
</view> </view>
</view> </view>
<div class="myRealEstate"> <div class="myRealEstate">
<div class="myRealEstates"> <div class="myRealEstates">
<image src="http://192.168.0.172:5500/com_communityNav.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communityNav.png" mode="aspectFill"></image>
<div class="name">滏阳锦苑</div> <div class="name">滏阳锦苑</div>
<div class="Visitor">访客身份 点击立即入驻本社区</div> <div class="Visitor">访客身份 点击立即入驻本社区</div>
</div> </div>
<div class="Announcement"> <div class="Announcement">
<image src="http://192.168.0.172:5500/com_Announcement.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_Announcement.png" mode="aspectFill"></image>
<div class="line"></div> <div class="line"></div>
<div class="msg" @click="notice"> <div class="msg" @click="notice">
<div>asdasdasd</div> <div>asdasdasd</div>
<image src="http://192.168.0.172:5500/com_more.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_more.png" mode="aspectFill"></image>
</div> </div>
</div> </div>
</div> </div>
<div class="navList"> <div class="navList">
<div class="navItem"> <div class="navItem">
<image src="http://192.168.0.172:5500/com_NavIcon1.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_NavIcon1.png" mode="aspectFill"></image>
物业服务 物业服务
</div> </div>
<div class="navItem" @click="repair"> <div class="navItem" @click="repair">
<image src="http://192.168.0.172:5500/com_NavIcon2.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_NavIcon2.png" mode="aspectFill"></image>
在线报修 在线报修
</div> </div>
<div class="navItem" @click="propertyPayment"> <div class="navItem" @click="propertyPayment">
<image src="http://192.168.0.172:5500/com_NavIcon3.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_NavIcon3.png" mode="aspectFill"></image>
物业缴费 物业缴费
</div> </div>
<div class="navItem"> <div class="navItem">
<image src="http://192.168.0.172:5500/com_NavIcon4.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_NavIcon4.png" mode="aspectFill"></image>
物业公积 物业公积
</div> </div>
<div class="navItem"> <div class="navItem">
<image src="http://192.168.0.172:5500/com_NavIcon5.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_NavIcon5.png" mode="aspectFill"></image>
社区管家 社区管家
</div> </div>
<div class="navItem" @click="mores"> <div class="navItem" @click="mores">
<image src="http://192.168.0.172:5500/com_NavIconMore.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_NavIconMore.png" mode="aspectFill"></image>
更多 更多
</div> </div>
</div> </div>
@ -78,7 +78,7 @@
<div class="nearbyList"> <div class="nearbyList">
<div class="emptys" v-if="false"> <div class="emptys" v-if="false">
<image src="http://192.168.0.172:5500/com_nearbyList_empty.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_nearbyList_empty.png" mode="aspectFill"></image>
周边暂无补贴公积金商家 周边暂无补贴公积金商家
<div class="emptysBtn"> <div class="emptysBtn">
@ -88,21 +88,21 @@
<div class="nearbyList_left"> <div class="nearbyList_left">
<div class="nearbyList_leftItem"> <div class="nearbyList_leftItem">
<image src="http://192.168.0.172:5500/com_nearbyImg1.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_nearbyImg1.png" mode="aspectFill"></image>
</div> </div>
<div class="nearbyList_leftItem"> <div class="nearbyList_leftItem">
<image src="http://192.168.0.172:5500/com_nearbyImg1.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_nearbyImg1.png" mode="aspectFill"></image>
</div> </div>
</div> </div>
<div class="nearbyList_right"> <div class="nearbyList_right">
<div class="nearbyList_rightItem"> <div class="nearbyList_rightItem">
<image src="http://192.168.0.172:5500/com_nearbyImg2.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_nearbyImg2.png" mode="aspectFill"></image>
</div> </div>
<div class="nearbyList_rightItem"> <div class="nearbyList_rightItem">
<image src="http://192.168.0.172:5500/com_nearbyImg2.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_nearbyImg2.png" mode="aspectFill"></image>
</div> </div>
<div class="nearbyList_rightItem"> <div class="nearbyList_rightItem">
<image src="http://192.168.0.172:5500/com_nearbyImg2.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_nearbyImg2.png" mode="aspectFill"></image>
</div> </div>
</div> </div>
</div> </div>
@ -124,7 +124,7 @@
<div v-if="active == 0" class="act1"> <div v-if="active == 0" class="act1">
<div class="empty" > <div class="empty" >
<image src="http://192.168.0.172:5500/com_empty.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_empty.png" mode="aspectFill"></image>
暂无信息 暂无信息
<div class="emptyAdd">发布社区互动信息</div> <div class="emptyAdd">发布社区互动信息</div>
@ -133,20 +133,20 @@
<div class="MsgList_left" v-if="false"> <div class="MsgList_left" v-if="false">
<div class="MsgList_leftItem"> <div class="MsgList_leftItem">
<div class="MsgList_leftItemImg"> <div class="MsgList_leftItemImg">
<image src="http://192.168.0.172:5500/com_MsgImg1.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_MsgImg1.png" mode="widthFix"></image>
</div> </div>
<div class="MsgList_leftItemName">我家的小猫丢了谁看见了请联系我~</div> <div class="MsgList_leftItemName">我家的小猫丢了谁看见了请联系我~</div>
<div class="MsgList_leftItemMsg"> <div class="MsgList_leftItemMsg">
<div class="MsgList_leftItemMsg_like"> <div class="MsgList_leftItemMsg_like">
<image src="http://192.168.0.172:5500/com_likeIcon.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_likeIcon.png" mode="aspectFill"></image>
134 134
</div> </div>
<div class="MsgList_leftItemMsg_like"> <div class="MsgList_leftItemMsg_like">
<image src="http://192.168.0.172:5500/com_comIcon.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_comIcon.png" mode="aspectFill"></image>
134 134
</div> </div>
<div class="MsgList_leftItemMsg_like"> <div class="MsgList_leftItemMsg_like">
<image src="http://192.168.0.172:5500/com_shareIcon.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_shareIcon.png" mode="aspectFill"></image>
134 134
</div> </div>
</div> </div>
@ -156,7 +156,7 @@
<div class="MsgList_right" v-if="false"> <div class="MsgList_right" v-if="false">
<div class="MsgList_rightItem"> <div class="MsgList_rightItem">
<div class="MsgList_rightItemImg"> <div class="MsgList_rightItemImg">
<image src="http://192.168.0.172:5500/com_MsgImg2.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_MsgImg2.png" mode="widthFix"></image>
</div> </div>
<div class="MsgList_rightItemName"> <div class="MsgList_rightItemName">
@ -165,15 +165,15 @@
<div class="MsgList_leftItemMsg"> <div class="MsgList_leftItemMsg">
<div class="MsgList_leftItemMsg_like"> <div class="MsgList_leftItemMsg_like">
<image src="http://192.168.0.172:5500/com_likeIcon.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_likeIcon.png" mode="aspectFill"></image>
134 134
</div> </div>
<div class="MsgList_leftItemMsg_like"> <div class="MsgList_leftItemMsg_like">
<image src="http://192.168.0.172:5500/com_comIcon.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_comIcon.png" mode="aspectFill"></image>
134 134
</div> </div>
<div class="MsgList_leftItemMsg_like"> <div class="MsgList_leftItemMsg_like">
<image src="http://192.168.0.172:5500/com_shareIcon.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_shareIcon.png" mode="aspectFill"></image>
134 134
</div> </div>
</div> </div>
@ -187,15 +187,15 @@
<div class="MsgList_leftItemMsg"> <div class="MsgList_leftItemMsg">
<div class="MsgList_leftItemMsg_like"> <div class="MsgList_leftItemMsg_like">
<image src="http://192.168.0.172:5500/com_likeIcon.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_likeIcon.png" mode="aspectFill"></image>
134 134
</div> </div>
<div class="MsgList_leftItemMsg_like"> <div class="MsgList_leftItemMsg_like">
<image src="http://192.168.0.172:5500/com_comIcon.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_comIcon.png" mode="aspectFill"></image>
134 134
</div> </div>
<div class="MsgList_leftItemMsg_like"> <div class="MsgList_leftItemMsg_like">
<image src="http://192.168.0.172:5500/com_shareIcon.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_shareIcon.png" mode="aspectFill"></image>
134 134
</div> </div>
</div> </div>
@ -206,7 +206,7 @@
<div v-if="active == 1" class="act2"> <div v-if="active == 1" class="act2">
<div class="empty" > <div class="empty" >
<image src="http://192.168.0.172:5500/com_empty.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_empty.png" mode="aspectFill"></image>
暂无信息 暂无信息
<div class="emptyAdd">发布社区互动信息</div> <div class="emptyAdd">发布社区互动信息</div>
@ -214,7 +214,7 @@
<div class="act2Item" v-for="itme in 3"> <div class="act2Item" v-for="itme in 3">
<div class="act2Item_left"> <div class="act2Item_left">
<image src="http://192.168.0.172:5500/com_act2Img.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_act2Img.png" mode="widthFix"></image>
</div> </div>
<div class="act2Item_right"> <div class="act2Item_right">
<div class="act2Item_right_Name">约1.7~2.3/ 软糯甜香新鲜水果 玉米</div> <div class="act2Item_right_Name">约1.7~2.3/ 软糯甜香新鲜水果 玉米</div>
@ -224,7 +224,7 @@
<div class="act2Item_right_Btn"> <div class="act2Item_right_Btn">
<div class="act2Item_right_Btn_left"> <div class="act2Item_right_Btn_left">
<image src="http://192.168.0.172:5500/com_act2Ms.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_act2Ms.png" mode="widthFix"></image>
<span>5.58</span> <span>5.58</span>
</div> </div>
@ -242,7 +242,7 @@
<div v-if="active == 2" class="act2"> <div v-if="active == 2" class="act2">
<div class="empty" > <div class="empty" >
<image src="http://192.168.0.172:5500/com_empty.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_empty.png" mode="aspectFill"></image>
暂无信息 暂无信息
<div class="emptyAdd">发布社区互动信息</div> <div class="emptyAdd">发布社区互动信息</div>
@ -250,7 +250,7 @@
<div class="act2Item" v-for="itme in 3"> <div class="act2Item" v-for="itme in 3">
<div class="act2Item_left"> <div class="act2Item_left">
<image src="http://192.168.0.172:5500/com_act2Img.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_act2Img.png" mode="widthFix"></image>
</div> </div>
<div class="act2Item_right"> <div class="act2Item_right">
<div class="act2Item_right_Name">约1.7~2.3/ 软糯甜香新鲜水果 玉米</div> <div class="act2Item_right_Name">约1.7~2.3/ 软糯甜香新鲜水果 玉米</div>
@ -278,7 +278,7 @@
<div v-if="active == 3" class="act4"> <div v-if="active == 3" class="act4">
<div class="act4Item" v-for="itme in 4"> <div class="act4Item" v-for="itme in 4">
<div class="act4Img"> <div class="act4Img">
<image src="http://192.168.0.172:5500/com_act2Img.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_act2Img.png" mode="aspectFill"></image>
</div> </div>
<div class="act4Name"> <div class="act4Name">
舒克小苏打牙膏洁白细护120G 舒克小苏打牙膏洁白细护120G

View File

@ -170,7 +170,7 @@ image {
.active2::after { .active2::after {
content: ''; content: '';
background: url(http://192.168.0.172:5500/com_active.png) no-repeat; background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_active.png) no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
width: 52rpx; width: 52rpx;
height: 22rpx; height: 22rpx;

View File

@ -2,75 +2,69 @@
<div class="container"> <div class="container">
<div class="searchBox" :style="{ height: localHeight + 'px', paddingTop: top + 'px' }"> <div class="searchBox" :style="{ height: localHeight + 'px', paddingTop: top + 'px' }">
<div class="searchBox_add"> <div class="searchBox_add">
<div class="emptyCommunity" @click="addCommunity">添加我的房产</div> <div class="emptyCommunity" @click="addCommunity"> {{communityVal}} </div>
<div class="MyCommunity" v-if="false"> <!-- <div class="MyCommunity" v-if="false">
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/community/community_mycommunity.png" <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/community/community_mycommunity.png"
mode="aspectFill"></image> mode="aspectFill"></image>
<span>惠生活</span> <span>惠生活</span>
<u-icon name="arrow-down" color="#999999" size="28"></u-icon> <u-icon name="arrow-down" color="#999999" size="28"></u-icon>
</div> </div> -->
</div> </div>
</div> </div>
<div class="swiperBox1"> <div class="swiperBox1">
<swiper> <swiper @animationfinish="swipers" autoplay circular>
<swiper-item> <swiper-item v-for="(item, index) in bannerList" :key="index" @click="headerServerClick(item)">
<image src="http://192.168.0.172:5500/test.png"></image> <image :src="item.ad_picture" mode="aspectFill" />
</swiper-item>
<swiper-item>
<image src="http://192.168.0.172:5500/test.png"></image>
</swiper-item> </swiper-item>
</swiper> </swiper>
<div class="dot"> <view class="dot">
<view :class="['dotItem', currentIdx == index ? 'active' : '']" v-for="(item, index) in bannerList"
:key="index">
</view>
</view>
<!-- <div class="dot">
<div class="dotItem"></div> <div class="dotItem"></div>
<div class="dotItem active"></div> <div class="dotItem active"></div>
</div> </div> -->
</div> </div>
<div class="swiperBox2"> <div class="swiperBox2">
<swiper> <swiper @animationfinish="swipers" autoplay circular>
<swiper-item> <swiper-item v-for="(item, index) in streamerList" :key="index" @click="headerServerClick(item)">
<image src="http://192.168.0.172:5500/com_communityNav.png"></image> <image :src="item.ad_picture" mode="aspectFill" />
</swiper-item>
<swiper-item>
<image src="http://192.168.0.172:5500/com_communityNav.png"></image>
</swiper-item> </swiper-item>
</swiper> </swiper>
</div> </div>
<div class="funcList"> <div class="funcList">
<div class="funcItem" v-for="item in functionList" @click="jump(item.link)"> <div class="funcItem" v-for="item in functionList" @click="jump(item.mini_program_url)">
<image :src="item.url"></image> <image :src="item.nav_icon"></image>
{{ item.name }} {{ item.nav_name }}
</div> </div>
</div> </div>
<div class="ads"> <div v-for="(item, index) in tileList" :key="index" class="ads" @click="headerServerClick(item)">
<image src="http://192.168.0.172:5500/com_communityNav.png" mode="aspectFill"></image> <image :src="item.ad_picture" mode="aspectFill" />
</div>
<div class="ads">
<image src="http://192.168.0.172:5500/com_communityNav.png" mode="aspectFill"></image>
</div> </div>
<div class="tabs"> <div class="tabs">
<div class="tabItem active2">物业公告</div> <div v-for="(item, index) in categoryList" :key="index"
<div class="tabItem">天气</div> :class="['tabItem', selectedTab === index ? 'active2' : '']" @click="selectTab(index, item)">
<div class="tabItem">放假时间</div> {{ item.category_name }}
<div class="tabItem">送饭</div> </div>
</div> </div>
<div class="newsList"> <div class="newsList">
<div class="newsItem" v-for="item in 4"> <div class="newsItem" v-for="item in infoList">
<div class="newsItem_left"> <div class="newsItem_left">
<div class="newsItem_left_tit">关于小区停车场治理通告</div> <div class="newsItem_left_tit">{{item.title}}</div>
<div class="newsItem_left_sub">高尚</div> <div class="newsItem_left_sub">{{item.author}}</div>
</div> </div>
<div class="newsItem_right"> <div class="newsItem_right">
<image src="http://192.168.0.172:5500/test.png"></image> <image :src="item.list_image" mode="aspectFill" />
</div> </div>
</div> </div>
</div> </div>
@ -80,10 +74,15 @@
<div class="bigAds" v-if="ads1Show"> <div class="bigAds" v-if="ads1Show">
<div class="bigAdsCon"> <div class="bigAdsCon">
<div class="bigAdsCon_img"> <div class="bigAdsCon_img">
<image src="http://192.168.0.172:5500/test.png"></image> <swiper @animationfinish="swipers" autoplay circular>
<swiper-item v-for="(item, index) in largePopList" :key="index"
@click="headerServerClick(item)">
<image :src="item.ad_picture" mode="aspectFill" />
</swiper-item>
</swiper>
</div> </div>
<div class="close" @click="closeAds"> <div class="close" @click="closeAds">
<image src="http://192.168.0.172:5500/com_close.png"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_close.png"></image>
</div> </div>
</div> </div>
</div> </div>
@ -91,33 +90,40 @@
<div class="bigAds" v-if="ads2Show"> <div class="bigAds" v-if="ads2Show">
<div class="bigAdsCon2"> <div class="bigAdsCon2">
<div class="bigAdsCon2_img"> <div class="bigAdsCon2_img">
<image src="http://192.168.0.172:5500/test.png"></image> <swiper @animationfinish="swipers" autoplay circular>
<swiper-item v-for="(item, index) in popList" :key="index">
<image :src="item.ad_picture" mode="aspectFill" />
</swiper-item>
</swiper>
</div> </div>
<div class="AdsBtnList"> <div class="AdsBtnList">
<div class="AdsBtnItem1" @click="closeAds">取消</div> <div class="AdsBtnItem1" @click="closeAds2">取消</div>
<div class="AdsBtnItem2">了解详情</div> <div class="AdsBtnItem2" @click="onDetailClick">了解详情</div>
</div> </div>
</div> </div>
</div> </div>
<nav-footer :current="1"/> <nav-footer :current="1" />
</div> </div>
</template> </template>
<script> <script>
import { import {
request, request,
picUrl, picUrl,
uniqueByField, uniqueByField,
menuButtonInfo, menuButtonInfo,
NavgateTo NavgateTo
} from '../../../utils'; } from '../../../utils';
import { apiArr } from '../../../api/v2Community'; import {
apiArr
} from '../../../api/v2Community';
export default { export default {
data() { data() {
return { return {
communityVal: '添加我的房产',
picUrl, picUrl,
top: "", top: "",
localHeight: "", localHeight: "",
@ -128,44 +134,33 @@ export default {
communityList: [], communityList: [],
flag: false, flag: false,
functionList: [ functionList: [],
{
name: "报事报修",
link: "",
url: "http://192.168.0.172:5500/com_homeIcon1.png",
},
{
name: "物业缴费",
link: "/packages/community/propertyPayment/index",
url: "http://192.168.0.172:5500/com_homeIcon2.png",
},
{
name: "物业公积",
link: "/packages/community/providentFund/index",
url: "http://192.168.0.172:5500/com_homeIcon3.png",
},
{
name: "物业公积",
link: "",
url: "http://192.168.0.172:5500/com_homeIcon4.png",
},
{
name: "物业服务",
link: "",
url: "http://192.168.0.172:5500/com_homeIcon5.png",
},
],
ads1Show: false, ads1Show: true,
ads2Show: false, ads2Show: true,
bannerList: [], //广
currentIdx: 0,
streamerList: [], //广
tileList: [], //广
largePopList: [], //广
popList: [], //广
categoryList: [],
infoList: [],
selectedTab: 0
} }
}, },
onLoad(options) { async onLoad(options) {
const meun = menuButtonInfo(); const meun = menuButtonInfo();
this.top = meun.top; this.top = meun.top;
// this.top = meun.height + meun.top; // this.top = meun.height + meun.top;
this.localHeight = meun.height; this.localHeight = meun.height;
// this.getCommunityList() // this.getCommunityList()
this.communityVal = uni.getStorageSync('changeCommData').name
await this.getfunctionList()
this.getAdvertising()
this.getCategoryList()
}, },
@ -178,6 +173,8 @@ export default {
}, },
closeAds() { closeAds() {
this.ads1Show = false this.ads1Show = false
},
closeAds2() {
this.ads2Show = false this.ads2Show = false
}, },
jump(e) { jump(e) {
@ -185,7 +182,7 @@ export default {
NavgateTo(e) NavgateTo(e)
}, },
addCommunity(){ addCommunity() {
NavgateTo("/packages/community/myCommunity/index") NavgateTo("/packages/community/myCommunity/index")
}, },
@ -207,12 +204,213 @@ export default {
// } // }
// }) // })
// }, // },
swipers(event) {
//
this.currentIdx = event.detail.current;
},
async getfunctionList() {
const res = await request(apiArr.navPage, "POST", {
community_id: Number(uni.getStorageSync('changeCommData').id),
page_num: 1,
page_size: 50
})
this.functionList = res.rows.map(item => {
return {
...item,
nav_icon: picUrl + item.nav_icon
};
});
console.log(this.functionList)
},
async getAdvertising() {
// bannerList
// streamerList
// tileList
// largePopList
// popList
const res = await request(apiArr.advPage, "POST", {
community_id: Number(uni.getStorageSync('changeCommData').id),
ad_position: 1,
page_num: 1,
page_size: 50
})
this.bannerList = res.rows.map(item => {
return {
...item,
ad_picture: picUrl + item.ad_picture
};
});
const res2 = await request(apiArr.advPage, "POST", {
community_id: Number(uni.getStorageSync('changeCommData').id),
ad_position: 2,
page_num: 1,
page_size: 50
})
this.streamerList = res2.rows.map(item => {
return {
...item,
ad_picture: picUrl + item.ad_picture
};
});
const res3 = await request(apiArr.advPage, "POST", {
community_id: Number(uni.getStorageSync('changeCommData').id),
ad_position: 3,
page_num: 1,
page_size: 50
})
this.tileList = res3.rows.map(item => {
return {
...item,
ad_picture: picUrl + item.ad_picture
};
});
const res4 = await request(apiArr.advPage, "POST", {
community_id: Number(uni.getStorageSync('changeCommData').id),
ad_position: 4,
page_num: 1,
page_size: 50
})
this.largePopList = res4.rows.map(item => {
return {
...item,
ad_picture: picUrl + item.ad_picture
};
});
const res5 = await request(apiArr.advPage, "POST", {
community_id: Number(uni.getStorageSync('changeCommData').id),
ad_position: 5,
page_num: 1,
page_size: 50
})
this.popList = res5.rows.map(item => {
return {
...item,
ad_picture: picUrl + item.ad_picture
};
});
},
headerServerClick(e) {
console.log('当前点击内容', e);
if (!e.link_url) {
this.NotOpen();
return
}
if (e.link_url) {
// #ifdef APP-PLUS
uni.navigateTo({
url: '/pages/webview/webview?url=' + encodeURIComponent(e.link_url)
});
// #endif
// #ifdef H5
window.open(e.link_url, '_blank');
// #endif
// #ifdef MP-WEIXIN || MP-ALIPAY || MP-BAIDU
if (e.appid) {
uni.navigateToMiniProgram({
appId: e.appid,
path: e.link_url,
//
extraData: {
'data1': 'test'
},
success(res) {
console.log('打开成功', res)
}
})
} else {
NavgateTo(e.link_url)
// NavgateTo('/packages/localLife/index/index')
}
// 使web-view
// uni.showModal({
// title: '',
// content: ': ' + e.link_url,
// confirmText: '',
// success(res) {
// if (res.confirm) {
// uni.setClipboardData({
// data: e.link_url,
// success() {
// uni.showToast({
// title: '',
// icon: 'success'
// });
// }
// });
// }
// }
// });
// #endif
}
},
onDetailClick() {
// 广
const currentAd = this.popList[this.currentAdIndex];
if (currentAd) {
this.headerServerClick(currentAd);
} else if (this.popList.length > 0) {
// 使
this.headerServerClick(this.popList[0]);
}
},
NotOpen() {
uni.showModal({
title: '提示',
content: '此功能暂未开通!',
showCancel: false,
complete: (res) => {
if (res.cancel) {
}
}
})
},
async getCategoryList() {
const res = await request(apiArr.categoryPage, "POST", {
community_id: Number(uni.getStorageSync('changeCommData').id),
category_code: "",
category_name: "",
page_num: 1,
page_size: 30
})
this.categoryList = res.rows
this.selectTab(0, res.rows[0])
},
async selectTab(index, item) {
this.selectedTab = index;
console.log('选中的tab:', index);
const res = await request(apiArr.infoPage, "POST", {
community_id: Number(uni.getStorageSync('changeCommData').id),
announcement_category_id: item.id,
title: '',
category_name: '',
page_num: 1,
page_size: 10,
})
this.infoList = res.rows.map(item => {
return {
...item,
list_image: picUrl + item.list_image,
};
});
}
}, },
} }
</script> </script>
<style> <style>
@import url("./index.css"); @import url("./index.css");
</style> </style>

View File

@ -1,24 +1,25 @@
<template> <template>
<view class="container"> <view class="container">
<view class="empty" v-if="false"> <view class="empty" v-if="false">
<image src="http://192.168.0.172:5500/com_newEmpty.png" alt="" /> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_newEmpty.png" alt="" />
没有添加任何房产 没有添加任何房产
</view> </view>
<div class="communityList"> <div class="communityList">
<div class="communityItem" v-for="item in 3"> <div class="communityItem" v-for="item in communityList">
<div class="communityItem_left"> <div class="communityItem_left">
<div class="communityItem_left_img"> <div class="communityItem_left_img">
<image src="http://192.168.0.172:5500/test.png"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/test.png"></image>
</div> </div>
<div class="communityItem_left_msg"> <div class="communityItem_left_msg" @click="toUpview(item)">
<div class="communityItem_left_msg_tit">世纪名城东区<span>5</span></div> <div class="communityItem_left_msg_tit">{{item.name}}<span> {{item.room_owner_list.length}}
<div class="communityItem_left_msg_msg">河北省 石家庄市 桥西区 塔谈国际 108km</div> </span></div>
<div class="communityItem_left_msg_msg">{{item.addr}}</div>
</div> </div>
</div> </div>
<div class="communityItem_right"> <div class="communityItem_right">
<image src="http://192.168.0.172:5500/com_check1.png"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_check1.png"></image>
</div> </div>
</div> </div>
</div> </div>
@ -28,30 +29,52 @@
</template> </template>
<script> <script>
import { request, NavgateTo, isPhone } from '../../../utils'; import {
import { apiArr } from '../../../api/community'; request,
export default { NavgateTo,
isPhone
} from '../../../utils';
import {
apiArr
} from '../../../api/community';
export default {
data() { data() {
return { return {
communityList: [],
page_num: 1,
page_size: 10,
} }
}, },
methods: { methods: {
addCommunity(){ addCommunity() {
NavgateTo("/packages/community/addCommunity/index") NavgateTo("/packages/community/addCommunity/index")
}, },
async getList() {
await request(apiArr.commInfo, "POST", {
user_id: uni.getStorageSync('userId'),
longitude: uni.getStorageSync('location').lng,
latitude: uni.getStorageSync('location').lat,
page_num: this.page_num,
page_size: this.page_size
}).then(res => {
this.communityList = res.rows
console.log(res)
})
},
toUpview(item) {
uni.setStorageSync('changeCommData', { id: item.community_id, name: item.name });
NavgateTo("/packages/community/index/index")
}
}, },
onLoad(options) { onLoad(options) {
this.getList();
}, },
onReachBottom() { onReachBottom() {},
}
},
}
</script> </script>
<style> <style>
@import url("./index.css"); @import url("./index.css");
</style> </style>

View File

@ -307,7 +307,7 @@ page {
content: ''; content: '';
width: 52rpx; width: 52rpx;
height: 22rpx; height: 22rpx;
background: url(http://192.168.0.172:5500/com_active.png); background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_active.png);
background-size: cover; background-size: cover;
position: absolute; position: absolute;
left: 50%; left: 50%;

View File

@ -8,7 +8,7 @@
<div class="myRealEstate"> <div class="myRealEstate">
<div class="myRealEstates"> <div class="myRealEstates">
<image src="http://192.168.0.172:5500/com_communityNav.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communityNav.png" mode="aspectFill"></image>
<div class="name">滏阳锦苑</div> <div class="name">滏阳锦苑</div>
<div class="Visitor">访客身份 点击立即入驻本社区</div> <div class="Visitor">访客身份 点击立即入驻本社区</div>
</div> </div>
@ -25,7 +25,7 @@
<div class="ConList"> <div class="ConList">
<div class="ConItem" v-for="item in 3" @click="desc"> <div class="ConItem" v-for="item in 3" @click="desc">
<div class="ConItem_left"> <div class="ConItem_left">
<image src="http://192.168.0.172:5500/com_act2Img.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_act2Img.png" mode="aspectFill"></image>
</div> </div>
<div class="ConItem_right"> <div class="ConItem_right">
<div class="ConItem_right_tit">关于小区停车场治理通告</div> <div class="ConItem_right_tit">关于小区停车场治理通告</div>

View File

@ -8,7 +8,7 @@
<div class="myRealEstate"> <div class="myRealEstate">
<div class="myRealEstates"> <div class="myRealEstates">
<image src="http://192.168.0.172:5500/com_communityNav.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communityNav.png" mode="aspectFill"></image>
<div class="name">滏阳锦苑</div> <div class="name">滏阳锦苑</div>
<div class="Visitor">访客身份 点击立即入驻本社区</div> <div class="Visitor">访客身份 点击立即入驻本社区</div>
</div> </div>

View File

@ -123,7 +123,7 @@ page {
bottom: -2rpx; bottom: -2rpx;
width: 30rpx; width: 30rpx;
height: 30rpx; height: 30rpx;
background: url(http://192.168.0.172:5500/com_activeIcon.png); background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_activeIcon.png);
background-size: 100% 100%; background-size: 100% 100%;
} }

View File

@ -68,7 +68,7 @@
<u-upload :fileList="imgList" name="imgList" @afterRead="afterReadImg" @delete="deletePic" multiple <u-upload :fileList="imgList" name="imgList" @afterRead="afterReadImg" @delete="deletePic" multiple
:maxCount="10"> :maxCount="10">
<div class="imgCon"> <div class="imgCon">
<image src="http://192.168.0.172:5500/com_imageImg.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_imageImg.png" mode="widthFix"></image>
上传图片 上传图片
</div> </div>
</u-upload> </u-upload>
@ -81,7 +81,7 @@
<u-upload v-if="!videoList.url" :fileList="videoList" @afterRead="afterReadVideo" @delete="deleteVideo" name="videoList" <u-upload v-if="!videoList.url" :fileList="videoList" @afterRead="afterReadVideo" @delete="deleteVideo" name="videoList"
:maxCount="1" accept="video"> :maxCount="1" accept="video">
<div class="imgCon"> <div class="imgCon">
<image src="http://192.168.0.172:5500/com_videoImg.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_videoImg.png" mode="widthFix"></image>
上传视频 上传视频
</div> </div>
</u-upload> </u-upload>

View File

@ -131,7 +131,7 @@ image {
position: absolute; position: absolute;
right: 8rpx; right: 8rpx;
top: 23rpx; top: 23rpx;
background: url(http://192.168.0.172:5500/com_jfImg.png) no-repeat; background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_jfImg.png) no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
} }

View File

@ -8,7 +8,7 @@
<div class="community"> <div class="community">
<div class="community_left"> <div class="community_left">
<image mode="aspectFill" src="http://192.168.0.172:5500/test.png" alt="" /> <image mode="aspectFill" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/test.png" alt="" />
</div> </div>
<div class="community_right" @click="changeShow"> <div class="community_right" @click="changeShow">
<div class="community_right_text"> <div class="community_right_text">
@ -78,7 +78,7 @@
<div class="PayTypeItem"> <div class="PayTypeItem">
<div class="PayTypeItem_left"> <div class="PayTypeItem_left">
<div class="PayTypeItem_img"> <div class="PayTypeItem_img">
<image mode="aspectFill" src="http://192.168.0.172:5500/com_wechat.png" alt="" /> <image mode="aspectFill" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_wechat.png" alt="" />
</div> </div>
<div class="PayTypeItem_con"> <div class="PayTypeItem_con">
<div class="PayTypeItem_con_tit">微信支付</div> <div class="PayTypeItem_con_tit">微信支付</div>
@ -94,7 +94,7 @@
<div class="PayTypeItem"> <div class="PayTypeItem">
<div class="PayTypeItem_left"> <div class="PayTypeItem_left">
<div class="PayTypeItem_img"> <div class="PayTypeItem_img">
<image mode="aspectFill" src="http://192.168.0.172:5500/com_homeMoney.png" alt="" /> <image mode="aspectFill" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_homeMoney.png" alt="" />
</div> </div>
<div class="PayTypeItem_con"> <div class="PayTypeItem_con">
<div class="PayTypeItem_con_tit">物业公积金支付</div> <div class="PayTypeItem_con_tit">物业公积金支付</div>
@ -192,7 +192,7 @@
<div class="BanlenceList"> <div class="BanlenceList">
<div class="banlenceItem"> <div class="banlenceItem">
<div class="banlenceItem_left"> <div class="banlenceItem_left">
<image mode="aspectFill" src="http://192.168.0.172:5500/com_wechat.png" alt="" /> <image mode="aspectFill" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_wechat.png" alt="" />
微信支付 微信支付
</div> </div>
<div class="banlenceItem_right"> <div class="banlenceItem_right">
@ -202,7 +202,7 @@
<div class="line3"></div> <div class="line3"></div>
<div class="banlenceItem"> <div class="banlenceItem">
<div class="banlenceItem_left"> <div class="banlenceItem_left">
<image mode="aspectFill" src="http://192.168.0.172:5500/com_homeMoney.png" alt="" /> <image mode="aspectFill" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_homeMoney.png" alt="" />
物业公积金支付 物业公积金支付
</div> </div>
<div class="banlenceItem_right"> <div class="banlenceItem_right">

View File

@ -3,7 +3,7 @@ page {
} }
.container { .container {
.container_body { .container_body {
background: url("http://192.168.0.152:5500/assets/community_providentFund_Group_1523.png") no-repeat; background: url("https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/community_providentFund_Group_1523.png") no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
} }
.title { .title {

View File

@ -59,13 +59,13 @@
<image <image
v-if="item.checked" v-if="item.checked"
class="pic" class="pic"
src="http://192.168.0.152:5500/assets/community_providentFund_Group_1444.png" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/community_providentFund_Group_1444.png"
mode="scaleToFill" mode="scaleToFill"
/> />
<image <image
v-else v-else
class="pic" class="pic"
src="http://192.168.0.152:5500/assets/community_providentFund_Ellipse_160.png" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/community_providentFund_Ellipse_160.png"
mode="scaleToFill" mode="scaleToFill"
/> />
</view> </view>

View File

@ -57,7 +57,7 @@
content: ''; content: '';
width: 52rpx; width: 52rpx;
height: 22rpx; height: 22rpx;
background: url(http://192.168.0.172:5500/com_active.png); background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_active.png);
background-size: cover; background-size: cover;
position: absolute; position: absolute;
left: 50%; left: 50%;

View File

@ -88,17 +88,17 @@
} }
.tabItem1 { .tabItem1 {
background: url(http://192.168.0.172:5500/com_tabBg1.png); background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_tabBg1.png);
background-size: cover; background-size: cover;
} }
.tabItem2 { .tabItem2 {
background: url(http://192.168.0.172:5500/com_tabBg2.png); background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_tabBg2.png);
background-size: cover; background-size: cover;
} }
.tabItem3 { .tabItem3 {
background: url(http://192.168.0.172:5500/com_tabBg3.png); background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_tabBg3.png);
background-size: cover; background-size: cover;
} }

View File

@ -75,128 +75,128 @@ export default {
return { return {
functionList: [ functionList: [
{ {
icon: "http://192.168.0.172:5500/com_serverIcon1.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_serverIcon1.png",
name: "业主入驻", name: "业主入驻",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_serverIcon2.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_serverIcon2.png",
name: "我的房产", name: "我的房产",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_serverIcon3.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_serverIcon3.png",
name: "生活缴费", name: "生活缴费",
url: "weixin://dl/business/?t=WvQ1ZJv0J5Z" url: "weixin://dl/business/?t=WvQ1ZJv0J5Z"
}, },
{ {
icon: "http://192.168.0.172:5500/com_serverIcon4.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_serverIcon4.png",
name: "便民服务", name: "便民服务",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_serverIcon5.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_serverIcon5.png",
name: "物业公积金", name: "物业公积金",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_serverIcon6.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_serverIcon6.png",
name: "社区互动", name: "社区互动",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_serverIcon7.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_serverIcon7.png",
name: "物业公积金", name: "物业公积金",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_serverIcon8.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_serverIcon8.png",
name: "物业服务", name: "物业服务",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_serverIcon9.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_serverIcon9.png",
name: "报事报修", name: "报事报修",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_serverIcon10.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_serverIcon10.png",
name: "物业缴费", name: "物业缴费",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_serverIcon11.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_serverIcon11.png",
name: "纠纷调解", name: "纠纷调解",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_serverIcon12.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_serverIcon12.png",
name: "社区管家", name: "社区管家",
url: "" url: ""
}, },
], ],
localList: [ localList: [
{ {
icon: "http://192.168.0.172:5500/com_localIcon1.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_localIcon1.png",
name: "美食", name: "美食",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_localIcon2.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_localIcon2.png",
name: "家教", name: "家教",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_localIcon3.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_localIcon3.png",
name: "超市", name: "超市",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_localIcon4.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_localIcon4.png",
name: "健身", name: "健身",
url: "" url: ""
}, },
], ],
shopList: [ shopList: [
{ {
icon: "http://192.168.0.172:5500/com_shopIcon1.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_shopIcon1.png",
name: "电商购物", name: "电商购物",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_shopIcon2.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_shopIcon2.png",
name: "社区团购", name: "社区团购",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_shopIcon3.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_shopIcon3.png",
name: "本地优选", name: "本地优选",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_shopIcon4.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_shopIcon4.png",
name: "社区拼团", name: "社区拼团",
url: "" url: ""
}, },
], ],
cardList: [ cardList: [
{ {
icon: "http://192.168.0.172:5500/com_cardIcon1.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_cardIcon1.png",
name: "我的积分", name: "我的积分",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_cardIcon2.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_cardIcon2.png",
name: "积分兑换", name: "积分兑换",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_cardIcon3.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_cardIcon3.png",
name: "我的优惠卡", name: "我的优惠卡",
url: "" url: ""
}, },
{ {
icon: "http://192.168.0.172:5500/com_cardIcon4.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_cardIcon4.png",
name: "我的会员卡", name: "我的会员卡",
url: "" url: ""
}, },

View File

@ -34,7 +34,7 @@ image {
} }
.container { .container {
background: url(http://192.168.0.172:5500/local_pointbg.png); background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_pointbg.png);
background-size: 750rpx 423rpx; background-size: 750rpx 423rpx;
background-repeat: no-repeat; background-repeat: no-repeat;
} }

View File

@ -11,15 +11,15 @@
<div class="point">{{banlance}}</div> <div class="point">{{banlance}}</div>
<div class="funList"> <div class="funList">
<div class="funItem"> <div class="funItem">
<image src="http://192.168.0.172:5500/local_fun1.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_fun1.png" mode="aspectFill"></image>
积分商城 积分商城
</div> </div>
<div class="funItem"> <div class="funItem">
<image src="http://192.168.0.172:5500/local_fun2.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_fun2.png" mode="aspectFill"></image>
积分抽奖 积分抽奖
</div> </div>
<div class="funItem"> <div class="funItem">
<image src="http://192.168.0.172:5500/local_fun3.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_fun3.png" mode="aspectFill"></image>
兑换优惠券 兑换优惠券
</div> </div>
</div> </div>

View File

@ -3,14 +3,14 @@
<div class="Msg"> <div class="Msg">
<div class="Msg_Tit"> <div class="Msg_Tit">
<div class="Msg_Tit_left"> <div class="Msg_Tit_left">
<image src="http://192.168.0.172:5500/user_ava.png" v-if="!info.user.avatar" mode="aspectFill"> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/user_ava.png" v-if="!info.user.avatar" mode="aspectFill">
</image> </image>
<image :src="picUrl + info.user.avatar" v-if="info.user.avatar" mode="aspectFill"></image> <image :src="picUrl + info.user.avatar" v-if="info.user.avatar" mode="aspectFill"></image>
{{ info.user.nick_name }} {{ info.user.nick_name }}
</div> </div>
<div class="Msg_Tit_right"> <div class="Msg_Tit_right">
<image v-for="indez in 5" <image v-for="indez in 5"
:src="indez < info.satisfaction ? 'http://192.168.0.172:5500/local_start1.png' : 'http://192.168.0.172:5500/local_start2.png'" :src="indez < info.satisfaction ? 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_start1.png' : 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_start2.png'"
mode="aspectFill"></image> mode="aspectFill"></image>
</div> </div>
</div> </div>
@ -22,21 +22,21 @@
<div class="Msg_iconList"> <div class="Msg_iconList">
<div class="Msg_iconList_left"> <div class="Msg_iconList_left">
<div class="Msg_iconList_leftIcon"> <div class="Msg_iconList_leftIcon">
<image src="http://192.168.0.172:5500/local_review.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_review.png" mode="widthFix"></image>
{{ info.merchant_evaluation_reply_list ? info.merchant_evaluation_reply_list.length : 0 }} {{ info.merchant_evaluation_reply_list ? info.merchant_evaluation_reply_list.length : 0 }}
</div> </div>
<div class="Msg_iconList_leftIcon"> <div class="Msg_iconList_leftIcon">
<image v-if="info.is_like == 2" src="http://192.168.0.172:5500/com_likeIcon.png" mode="widthFix" <image v-if="info.is_like == 2" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_likeIcon.png" mode="widthFix"
@click="like(info)"></image> @click="like(info)"></image>
<image v-if="info.is_like == 1" src="http://192.168.0.172:5500/com_likeIcon2.png" <image v-if="info.is_like == 1" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_likeIcon2.png"
mode="widthFix" @click="unlike(info)"></image> mode="widthFix" @click="unlike(info)"></image>
{{ info.merchant_evaluation_like_list ? info.merchant_evaluation_like_list.length : 0 }} {{ info.merchant_evaluation_like_list ? info.merchant_evaluation_like_list.length : 0 }}
</div> </div>
</div> </div>
<div class="Msg_iconList_right"> <div class="Msg_iconList_right">
<div class="Msg_iconList_leftIcon" @click="deletes" v-if="isDelte"> <div class="Msg_iconList_leftIcon" @click="deletes" v-if="isDelte">
<image src="http://192.168.0.172:5500/local_del.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_del.png" mode="widthFix"></image>
</div> </div>
</div> </div>
</div> </div>
@ -45,7 +45,7 @@
<div class="reply" v-for="item in replyList"> <div class="reply" v-for="item in replyList">
<div class="reply_tit"> <div class="reply_tit">
<div class="reply_tit_left"> <div class="reply_tit_left">
<image src="http://192.168.0.172:5500/user_ava.png" v-if="!item.user.avatar" mode="aspectFill"> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/user_ava.png" v-if="!item.user.avatar" mode="aspectFill">
</image> </image>
<image :src="picUrl + item.user.avatar" v-if="item.user.avatar" mode="aspectFill"></image> <image :src="picUrl + item.user.avatar" v-if="item.user.avatar" mode="aspectFill"></image>
{{ item.user.nick_name }} {{ item.user.nick_name }}
@ -58,7 +58,7 @@
<div class="comment"> <div class="comment">
<div class="comment_con"> <div class="comment_con">
<image src="http://192.168.0.172:5500/local_send.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_send.png" mode="aspectFill"></image>
<input type="text" v-model="reply_content" placeholder="说点什么"> <input type="text" v-model="reply_content" placeholder="说点什么">
<button id="send" @click="sendComment">发送</button> <button id="send" @click="sendComment">发送</button>

View File

@ -15,7 +15,7 @@
<div class="startList"> <div class="startList">
<div class="start" v-for="(item, index) in 5" :key="index" @click="setRating(index + 1)"> <div class="start" v-for="(item, index) in 5" :key="index" @click="setRating(index + 1)">
<image <image
:src="index < rating ? 'http://192.168.0.172:5500/local_start1.png' : 'http://192.168.0.172:5500/local_start2.png'" :src="index < rating ? 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_start1.png' : 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_start2.png'"
mode="aspectFill"></image> mode="aspectFill"></image>
</div> </div>
</div> </div>
@ -55,7 +55,7 @@
<u-upload v-if="active === 1 && videoList.length === 0" :fileList="videoList" <u-upload v-if="active === 1 && videoList.length === 0" :fileList="videoList"
@afterRead="afterReadVideo2" @delete="deletePic2" name="1" :maxCount="1" accept="video"> @afterRead="afterReadVideo2" @delete="deletePic2" name="1" :maxCount="1" accept="video">
<div class="videoCon"> <div class="videoCon">
<image src="http://192.168.0.172:5500/com_videoImg.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_videoImg.png" mode="widthFix"></image>
上传视频 上传视频
</div> </div>
</u-upload> </u-upload>
@ -64,7 +64,7 @@
<video id="myVideo" :src="picUrl + videoList2[0].url" playsinline webkit-playsinline></video> <video id="myVideo" :src="picUrl + videoList2[0].url" playsinline webkit-playsinline></video>
<div class="mask" @click="playFullScreenVideo"> <div class="mask" @click="playFullScreenVideo">
<div class="mask_con"> <div class="mask_con">
<image src="http://192.168.0.172:5500/local_play.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_play.png" mode="widthFix"></image>
</div> </div>
<div class="mask_cancel" @click="cancels">取消</div> <div class="mask_cancel" @click="cancels">取消</div>
</div> </div>

View File

@ -13,7 +13,7 @@
<!-- <u-icon name="star-fill" color="#FFB84D" /> --> <!-- <u-icon name="star-fill" color="#FFB84D" /> -->
<div class="startList"> <div class="startList">
<image v-for="index in 5" <image v-for="index in 5"
:src="index < item.rating ? 'http://192.168.0.172:5500/local_start1.png' : 'http://192.168.0.172:5500/local_start2.png'" :src="index < item.rating ? 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_start1.png' : 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_start2.png'"
mode="aspectFill"></image> mode="aspectFill"></image>
</div> </div>
@ -46,13 +46,13 @@
<div class="Msg"> <div class="Msg">
<div class="Msg_Tit"> <div class="Msg_Tit">
<div class="Msg_Tit_left"> <div class="Msg_Tit_left">
<image src="http://192.168.0.172:5500/user_ava.png" v-if="!item.user.avatar" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/user_ava.png" v-if="!item.user.avatar" mode="aspectFill"></image>
<image :src="picUrl + item.user.avatar" v-if="item.user.avatar" mode="aspectFill"></image> <image :src="picUrl + item.user.avatar" v-if="item.user.avatar" mode="aspectFill"></image>
{{ item.user.nick_name }} {{ item.user.nick_name }}
</div> </div>
<div class="Msg_Tit_right"> <div class="Msg_Tit_right">
<image v-for="indez in 5" <image v-for="indez in 5"
:src="indez < item.satisfaction ? 'http://192.168.0.172:5500/local_start1.png' : 'http://192.168.0.172:5500/local_start2.png'" :src="indez < item.satisfaction ? 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_start1.png' : 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_start2.png'"
mode="aspectFill"></image> mode="aspectFill"></image>
</div> </div>
</div> </div>
@ -64,14 +64,14 @@
<div class="Msg_iconList"> <div class="Msg_iconList">
<div class="Msg_iconList_left"> <div class="Msg_iconList_left">
<div class="Msg_iconList_leftIcon"> <div class="Msg_iconList_leftIcon">
<image src="http://192.168.0.172:5500/local_review.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_review.png" mode="widthFix"></image>
{{ item.merchant_evaluation_reply_list ? item.merchant_evaluation_reply_list.length : 0 }} {{ item.merchant_evaluation_reply_list ? item.merchant_evaluation_reply_list.length : 0 }}
</div> </div>
<div class="Msg_iconList_leftIcon"> <div class="Msg_iconList_leftIcon">
<image v-if="item.is_like == 2" src="http://192.168.0.172:5500/com_likeIcon.png" mode="widthFix" <image v-if="item.is_like == 2" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_likeIcon.png" mode="widthFix"
@click="like(item)"></image> @click="like(item)"></image>
<image v-if="item.is_like == 1" src="http://192.168.0.172:5500/com_likeIcon2.png" mode="widthFix" <image v-if="item.is_like == 1" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_likeIcon2.png" mode="widthFix"
@click="unlike(item)"></image> @click="unlike(item)"></image>
{{ item.merchant_evaluation_like_list ? item.merchant_evaluation_like_list.length : 0 }} {{ item.merchant_evaluation_like_list ? item.merchant_evaluation_like_list.length : 0 }}
</div> </div>
@ -89,11 +89,11 @@
<view>导航</view> <view>导航</view>
</view> </view>
<view class="left_label" @click="handlePhoneClick"> <view class="left_label" @click="handlePhoneClick">
<image src="http://192.168.0.152:5500/assets/localLife_detail_Frame.png" mode="" /> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/localLife_detail_Frame.png" mode="" />
<view>电话</view> <view>电话</view>
</view> </view>
<view class="left_label" @click="handleDiscussClick"> <view class="left_label" @click="handleDiscussClick">
<image src="http://192.168.0.152:5500/assets/localLife_shopList_Group_1334.png" mode="" /> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/localLife_shopList_Group_1334.png" mode="" />
<view>点评</view> <view>点评</view>
</view> </view>
</view> </view>

View File

@ -34,7 +34,7 @@ image {
} }
.container { .container {
background: url(http://192.168.0.172:5500/local_pointbg.png); background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_pointbg.png);
background-size: 750rpx 423rpx; background-size: 750rpx 423rpx;
background-repeat: no-repeat; background-repeat: no-repeat;
} }

View File

@ -31,7 +31,7 @@
<div class="row"> <div class="row">
<div class="row_label">消费用户</div> <div class="row_label">消费用户</div>
<div class="row_con"> <div class="row_con">
<image src="http://192.168.0.172:5500/user_ava.png" v-if="!item.user.avatar" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/user_ava.png" v-if="!item.user.avatar" mode="aspectFill"></image>
<image :src="picUrl + item.user.avatar" v-if="item.user.avatar" mode="aspectFill"></image> <image :src="picUrl + item.user.avatar" v-if="item.user.avatar" mode="aspectFill"></image>
{{ item.user.nick_name }} {{ item.user.nick_name }}

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="container"> <div class="container">
<div class="local"> <div class="local">
<image id="local" src="http://192.168.0.172:5500/local_localIcon.png" mode="aspectFill"></image> <image id="local" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_localIcon.png" mode="aspectFill"></image>
{{address}} {{address}}
<u-icon name="arrow-down" color="#999999" size="28"></u-icon> <u-icon name="arrow-down" color="#999999" size="28"></u-icon>
</div> </div>
@ -9,7 +9,7 @@
<div class="search"> <div class="search">
<div class="searchBox"> <div class="searchBox">
<image src="http://192.168.0.172:5500/com_communitySearchIcon.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communitySearchIcon.png" mode="aspectFill"></image>
<input type="text" placeholder="请输入您想搜索的内容"> <input type="text" placeholder="请输入您想搜索的内容">
</div> </div>
</div> </div>
@ -36,9 +36,9 @@
<!-- <scroll-view scroll-x="true" enhanced enable-flex class="scrollBox"> <!-- <scroll-view scroll-x="true" enhanced enable-flex class="scrollBox">
<div class="scrollView"> <div class="scrollView">
<div class="scroll-viewItem" v-for="(item, index) in 4" @click="checkItem(index)"> <div class="scroll-viewItem" v-for="(item, index) in 4" @click="checkItem(index)">
<image v-show="!checkedItems[index]" src="http://192.168.0.172:5500/local_uncheck.png" <image v-show="!checkedItems[index]" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_uncheck.png"
mode="aspectFill"></image> mode="aspectFill"></image>
<image v-show="checkedItems[index]" src="http://192.168.0.172:5500/local-check.png" <image v-show="checkedItems[index]" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local-check.png"
mode="aspectFill"></image> mode="aspectFill"></image>
买单返物业费 买单返物业费
</div> </div>
@ -62,13 +62,13 @@
<div class="merchantItem_right_con"> <div class="merchantItem_right_con">
<div class="merchantItem_right_con_left"> <div class="merchantItem_right_con_left">
<div class="startList"> <div class="startList">
<image v-for="index in 5" :src="index < item.rating ? 'http://192.168.0.172:5500/local_start1.png' : 'http://192.168.0.172:5500/local_start2.png'" mode="aspectFill"></image> <image v-for="index in 5" :src="index < item.rating ? 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_start1.png' : 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_start2.png'" mode="aspectFill"></image>
</div> </div>
<div class="merchangtItem_tag" v-if="item.refund_property_fee_ratio">买单反物业费</div> <div class="merchangtItem_tag" v-if="item.refund_property_fee_ratio">买单反物业费</div>
<div class="merchangtItem_tag" v-if="item.refund_user_points_ratio">买单反积分</div> <div class="merchangtItem_tag" v-if="item.refund_user_points_ratio">买单反积分</div>
</div> </div>
<div class="merchantItem_right_con_right"> <div class="merchantItem_right_con_right">
<image src="http://192.168.0.172:5500/local_review.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_review.png" mode="aspectFill"></image>
点评 点评
</div> </div>
</div> </div>
@ -81,12 +81,12 @@
<div class="btnList"> <div class="btnList">
<div class="btn_left"> <div class="btn_left">
<image src="http://192.168.0.172:5500/local_serverIcon.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_serverIcon.png" mode="aspectFill"></image>
到店服务券 到店服务券
</div> </div>
<div class="line"></div> <div class="line"></div>
<div class="btn_right"> <div class="btn_right">
<image src="http://192.168.0.172:5500/lcoal_payIcon.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/lcoal_payIcon.png" mode="aspectFill"></image>
快捷支付记录 快捷支付记录
</div> </div>
</div> </div>

View File

@ -19,7 +19,7 @@ image {
.container { .container {
position: relative; position: relative;
/* background: url(http://192.168.0.172:5500/local_payImg.png); /* background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_payImg.png);
background-size: 750rpx 302rpx; background-size: 750rpx 302rpx;
background-repeat: no-repeat; */ background-repeat: no-repeat; */
} }

View File

@ -62,7 +62,7 @@
<div class="line"></div> <div class="line"></div>
<div class="btnItem" @click="home">首页</div> <div class="btnItem" @click="home">首页</div>
<div class="btnItem2" @click="changeBoxshadow"> <div class="btnItem2" @click="changeBoxshadow">
<image src="http://192.168.0.172:5500/local_qrcode.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_qrcode.png" mode="aspectFill"></image>
本页二维码 本页二维码
</div> </div>
</div> </div>

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="container"> <div class="container">
<div class="sucessImg"> <div class="sucessImg">
<image src="http://192.168.0.172:5500/local_sucess.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_sucess.png" mode="aspectFill"></image>
</div> </div>
<div class="text1">支付成功</div> <div class="text1">支付成功</div>

View File

@ -23,7 +23,7 @@
<view class="discuss"> <view class="discuss">
<image <image
class="discuss_pic" class="discuss_pic"
src="http://192.168.0.152:5500/assets/localLife_shopList_Group_1334.png" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/localLife_shopList_Group_1334.png"
/> />
<text>点评</text> <text>点评</text>
</view> </view>
@ -49,7 +49,7 @@ export default {
list: [ list: [
{ {
title: "李氏济世堂", title: "李氏济世堂",
pic: "http://192.168.0.152:5500/assets/index_Mask_group.png", pic: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/index_Mask_group.png",
desc: ["到家服务", "买单返物业费", "买单返物业费"], desc: ["到家服务", "买单返物业费", "买单返物业费"],
address: "苏州市太仓市城厢镇桃园三村11幢105市", address: "苏州市太仓市城厢镇桃园三村11幢105市",
distance: "898km", distance: "898km",
@ -57,7 +57,7 @@ export default {
}, },
{ {
title: "美容美发", title: "美容美发",
pic: "http://192.168.0.152:5500/assets/index_Mask_group.png", pic: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/index_Mask_group.png",
desc: [ "买单返物业费"], desc: [ "买单返物业费"],
address: "苏州市太仓市城厢镇桃园三村11幢105市", address: "苏州市太仓市城厢镇桃园三村11幢105市",
distance: "898km", distance: "898km",

View File

@ -295,7 +295,7 @@ image {
.shadowBox_img { .shadowBox_img {
width: 600rpx; width: 600rpx;
height: 945rpx; height: 945rpx;
background: url('http://192.168.0.172:5500/shop_share_bg.png') no-repeat; background: url('https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_share_bg.png') no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
} }

View File

@ -10,10 +10,10 @@
<div class="swiper"> <div class="swiper">
<swiper :indicator-dots="false" :autoplay="true" :interval="3000" :duration="1000"> <swiper :indicator-dots="false" :autoplay="true" :interval="3000" :duration="1000">
<swiper-item> <swiper-item>
<image src="http://192.168.0.172:5500/shop_goodsImg.png"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_goodsImg.png"></image>
</swiper-item> </swiper-item>
<swiper-item> <swiper-item>
<image src="http://192.168.0.172:5500/shop_goodsImg.png"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_goodsImg.png"></image>
</swiper-item> </swiper-item>
</swiper> </swiper>
@ -44,7 +44,7 @@
<div class="Msg_Item"> <div class="Msg_Item">
<div class="Msg_ItemTit">商品编号</div> <div class="Msg_ItemTit">商品编号</div>
<div class="Msg_ItemCon">008475709 <image src="http://192.168.0.172:5500/shop_copy.png"></image> <div class="Msg_ItemCon">008475709 <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_copy.png"></image>
</div> </div>
</div> </div>
<div class="Msg_Item"> <div class="Msg_Item">
@ -57,20 +57,20 @@
</div> </div>
<div class="GoosMsg"> <div class="GoosMsg">
<image src="http://192.168.0.172:5500/Goods_MsgImg.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/Goods_MsgImg.png" mode="widthFix"></image>
</div> </div>
<!-- 底部购物车 --> <!-- 底部购物车 -->
<div class="Car"> <div class="Car">
<div class="car_left"> <div class="car_left">
<div class="share" @click="share"> <div class="share" @click="share">
<image src="http://192.168.0.172:5500/shop_share.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_share.png" mode="widthFix"></image>
分享 分享
</div> </div>
<div class="cars"> <div class="cars">
<u-badge numberType="limit" :type="type" max="99" :value="value"></u-badge> <u-badge numberType="limit" :type="type" max="99" :value="value"></u-badge>
<image src="http://192.168.0.172:5500/shop_car.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_car.png" mode="widthFix"></image>
购物车 购物车
</div> </div>
</div> </div>
@ -96,11 +96,11 @@
<div class="shadow" @click.stop="changeShadow" v-if="boxshadow1"> <div class="shadow" @click.stop="changeShadow" v-if="boxshadow1">
<div class="shadowBox1"> <div class="shadowBox1">
<div class="shadowBox1Item" @click="shareFriend"> <div class="shadowBox1Item" @click="shareFriend">
<image src="http://192.168.0.172:5500/shop_WX.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_WX.png" mode="aspectFill"></image>
微信好友 微信好友
</div> </div>
<div class="shadowBox1Item" @click="openSave"> <div class="shadowBox1Item" @click="openSave">
<image src="http://192.168.0.172:5500/shop_saveImg.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_saveImg.png" mode="aspectFill"></image>
生成海报 生成海报
</div> </div>
</div> </div>
@ -111,7 +111,7 @@
<div class="shadowBox_img"> <div class="shadowBox_img">
<div class="boxshadow_tit">今日商品推荐</div> <div class="boxshadow_tit">今日商品推荐</div>
<div class="boxshadow_img"> <div class="boxshadow_img">
<image src="http://192.168.0.172:5500/shop_share_img.png"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_share_img.png"></image>
</div> </div>
<div class="line"></div> <div class="line"></div>
<div class="shadowBoxInfo"> <div class="shadowBoxInfo">
@ -196,7 +196,7 @@ export default {
this.boxshadow2 = false this.boxshadow2 = false
// //
uni.downloadFile({ uni.downloadFile({
url: 'http://192.168.0.172:5500/shop_share_img.png', url: 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_share_img.png',
success: (res) => { success: (res) => {
if (res.statusCode === 200) { if (res.statusCode === 200) {
uni.saveImageToPhotosAlbum({ uni.saveImageToPhotosAlbum({

View File

@ -12,7 +12,7 @@ page {
.header { .header {
height: 360rpx; height: 360rpx;
width: 750rpx; width: 750rpx;
background: url(http://192.168.0.172:5500/shop_bg.png) no-repeat; background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_bg.png) no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
} }
@ -148,6 +148,7 @@ page {
box-sizing: border-box; box-sizing: border-box;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
overflow-y: auto;
} }
.CateInfo_tit { .CateInfo_tit {
@ -524,3 +525,22 @@ page {
width: 100%; width: 100%;
background-color: #fff; background-color: #fff;
} }
.shop_car{
width: 140rpx;
height: 140rpx;
position: fixed;
right: 33rpx;
bottom: 380rpx;
z-index: 10;
}
.shop_car image{
width: 100%;
height: 100%;
}
.u-badge {
position: absolute;
right: 0;
top: -10rpx;
}

View File

@ -6,10 +6,12 @@
<div class="header" :class="topShow ? 'op0' : ''"> <div class="header" :class="topShow ? 'op0' : ''">
<div class="searchBox" :style="{ height: localHeight + 'px', paddingTop: top + 'px' }"> <div class="searchBox" :style="{ height: localHeight + 'px', paddingTop: top + 'px' }">
<div class="searchBox_left"> <div class="searchBox_left">
<u-icon name="arrow-left" size="20px" color="#000"></u-icon> <!-- <u-icon name="arrow-left" size="20px" color="#000"></u-icon> -->
</div> </div>
<div class="searchBox_ipt" @click="searchPage"> <div class="searchBox_ipt" @click="searchPage">
<image src="http://192.168.0.172:5500/com_communitySearchIcon.png" mode="aspectFill"></image> <image
src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communitySearchIcon.png"
mode="aspectFill"></image>
<input disabled type="text" placeholder="输入商品名称"> <input disabled type="text" placeholder="输入商品名称">
</div> </div>
</div> </div>
@ -27,7 +29,8 @@
<div class="open" @click="topOpen" v-if="!topShow"> <div class="open" @click="topOpen" v-if="!topShow">
<image src="http://192.168.0.172:5500/shop_openIcon.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_openIcon.png"
mode="aspectFill"></image>
</div> </div>
</div> </div>
@ -40,7 +43,9 @@
<u-icon name="arrow-left" size="20px" color="#000"></u-icon> <u-icon name="arrow-left" size="20px" color="#000"></u-icon>
</div> </div>
<div class="searchBox_ipt"> <div class="searchBox_ipt">
<image src="http://192.168.0.172:5500/com_communitySearchIcon.png" mode="aspectFill"></image> <image
src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communitySearchIcon.png"
mode="aspectFill"></image>
<input type="text" placeholder="输入商品名称"> <input type="text" placeholder="输入商品名称">
</div> </div>
</div> </div>
@ -65,9 +70,13 @@
<div class="Con"> <div class="Con">
<div class="Con_left"> <div class="Con_left">
<div class="CateItem" v-for="item in 10" :key="index"> <div class="CateItem" v-for="item in 10" :key="index">
<image v-if="false" class="hot" src="http://192.168.0.172:5500/shop_hot.png" mode="aspectFill"> <image v-if="false" class="hot"
src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_hot.png"
mode="aspectFill">
</image> </image>
<image class="bao" src="http://192.168.0.172:5500/shop_bao.png" mode="aspectFill"></image> <image class="bao"
src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_bao.png"
mode="aspectFill"></image>
猪肉 猪肉
</div> </div>
</div> </div>
@ -95,14 +104,16 @@
<div class="boxshadow2" v-if="cateListShow"></div> <div class="boxshadow2" v-if="cateListShow"></div>
<div class="CateInfo"> <div class="CateInfo" v-for="items in 2">
<div class="CateInfo_tit"> <div class="CateInfo_tit">
</div> </div>
<div class="CateInfo_Item" v-for="item in 3" :key="index"> <div class="CateInfo_Item" v-for="item in 3" :key="index">
<div class="CateInfo_Item_Box"> <div class="CateInfo_Item_Box">
<div class="CateInfo_Item_left"> <div class="CateInfo_Item_left">
<image src="http://192.168.0.172:5500/shop_bao.png" mode="aspectFill"></image> <image
src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_bao.png"
mode="aspectFill"></image>
</div> </div>
<div class="CateInfo_Item_right" :class="GGshow ? 'noneBor' : ''"> <div class="CateInfo_Item_right" :class="GGshow ? 'noneBor' : ''">
<div class="CateInfo_Item_right_Tit" @click="goods">库尔勒香梨</div> <div class="CateInfo_Item_right_Tit" @click="goods">库尔勒香梨</div>
@ -141,7 +152,9 @@
<div class="GGList" v-if="GGshow"> <div class="GGList" v-if="GGshow">
<div class="GGItem"> <div class="GGItem">
<div class="GGItem_Image"> <div class="GGItem_Image">
<image src="http://192.168.0.172:5500/shop_bao.png" mode="aspectFill"></image> <image
src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_bao.png"
mode="aspectFill"></image>
</div> </div>
<div class="GGItem_Con"> <div class="GGItem_Con">
<div class="GGItem_Con_Tit">金枕榴莲</div> <div class="GGItem_Con_Tit">金枕榴莲</div>
@ -185,6 +198,12 @@
<nav-footer :current="2" /> <nav-footer :current="2" />
<div class="shop_car">
<u-badge numberType="limit" type="error" max="99" :value="value"></u-badge>
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_car_num.png"></image>
<!-- <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_car_empty.png"></image> -->
</div>
</div> </div>
</template> </template>
@ -212,44 +231,44 @@ export default {
iconList: [ iconList: [
{ {
icon: "http://192.168.0.172:5500/shop_icon1.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_icon1.png",
name: "休闲零食" name: "休闲零食"
}, },
{ {
icon: "http://192.168.0.172:5500/shop_icon2.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_icon2.png",
name: "肉蛋果蔬" name: "肉蛋果蔬"
}, },
{ {
icon: "http://192.168.0.172:5500/shop_icon3.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_icon3.png",
name: "酒水饮料" name: "酒水饮料"
}, },
{ {
icon: "http://192.168.0.172:5500/shop_icon4.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_icon4.png",
name: "家具电器" name: "家具电器"
}, },
{ {
icon: "http://192.168.0.172:5500/shop_icon5.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_icon5.png",
name: "电脑手机" name: "电脑手机"
}, },
{ {
icon: "http://192.168.0.172:5500/shop_icon1.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_icon1.png",
name: "休闲零食" name: "休闲零食"
}, },
{ {
icon: "http://192.168.0.172:5500/shop_icon2.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_icon2.png",
name: "肉蛋果蔬" name: "肉蛋果蔬"
}, },
{ {
icon: "http://192.168.0.172:5500/shop_icon3.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_icon3.png",
name: "酒水饮料" name: "酒水饮料"
}, },
{ {
icon: "http://192.168.0.172:5500/shop_icon4.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_icon4.png",
name: "家具电器" name: "家具电器"
}, },
{ {
icon: "http://192.168.0.172:5500/shop_icon5.png", icon: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_icon5.png",
name: "电脑手机" name: "电脑手机"
}, },
], ],

View File

@ -2,13 +2,13 @@
<view class="merchantList"> <view class="merchantList">
<div class="searchBox"> <div class="searchBox">
<div class="searchBox_left"> <div class="searchBox_left">
<image src="http://192.168.0.172:5500/com_communitySearchIcon.png"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_communitySearchIcon.png"></image>
<u--input @focus="iptFocus" @blur="iptBlur" placeholder="搜索商品" border="surround" clearable></u--input> <u--input @focus="iptFocus" @blur="iptBlur" placeholder="搜索商品" border="surround" clearable></u--input>
</div> </div>
<div class="searchBox_right"> <div class="searchBox_right">
<div class="cars"> <div class="cars">
<u-badge numberType="limit" type="error" max="99" :value="value"></u-badge> <u-badge numberType="limit" type="error" max="99" :value="value"></u-badge>
<image src="http://192.168.0.172:5500/shop_car.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shop_car.png" mode="widthFix"></image>
</div> </div>
</div> </div>
</div> </div>
@ -33,7 +33,7 @@
</div> </div>
<!-- 未搜索到 --> <!-- 未搜索到 -->
<div class="empty" v-if="false"> <div class="empty" v-if="false">
<image src="http://192.168.0.172:5500/com_noSearch.png"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_noSearch.png"></image>
对不起没有找到您想要的商品 对不起没有找到您想要的商品
</div> </div>
@ -49,7 +49,7 @@
<div class="searchItem"> <div class="searchItem">
<div class="searchItem_left"> <div class="searchItem_left">
<image src="http://192.168.0.172:5500/com_act2Img.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_act2Img.png" mode="widthFix"></image>
</div> </div>
<div class="searchItem_right"> <div class="searchItem_right">
<div class="searchItem_right_tit">泰国金枕榴莲</div> <div class="searchItem_right_tit">泰国金枕榴莲</div>

View File

@ -5,7 +5,7 @@ page {
} }
.container { .container {
background: url(http://192.168.0.172:5500/shopEn_apply.png) no-repeat; background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/shopEn_apply.png) no-repeat;
background-size: 750rpx 497rpx; background-size: 750rpx 497rpx;
box-sizing: border-box; box-sizing: border-box;
padding-top: 290rpx; padding-top: 290rpx;

View File

@ -55,7 +55,7 @@
<u-upload :fileList="imgList" @afterRead="afterReadImg" @delete="deletePic" name="1" multiple <u-upload :fileList="imgList" @afterRead="afterReadImg" @delete="deletePic" name="1" multiple
:maxCount="10"> :maxCount="10">
<div class="imgCon"> <div class="imgCon">
<image src="http://192.168.0.172:5500/com_imageImg.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_imageImg.png" mode="widthFix"></image>
上传图片 上传图片
</div> </div>
</u-upload> </u-upload>
@ -68,7 +68,7 @@
<u-upload :fileList="imgList3" @afterRead="afterReadImg2" @delete="deletePic2" name="1" multiple <u-upload :fileList="imgList3" @afterRead="afterReadImg2" @delete="deletePic2" name="1" multiple
:maxCount="10"> :maxCount="10">
<div class="imgCon"> <div class="imgCon">
<image src="http://192.168.0.172:5500/com_imageImg.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_imageImg.png" mode="widthFix"></image>
上传图片 上传图片
</div> </div>
</u-upload> </u-upload>

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="container"> <div class="container">
<div class="sucessImg"> <div class="sucessImg">
<image src="http://192.168.0.172:5500/local_sucess.png" mode="aspectFill"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_sucess.png" mode="aspectFill"></image>
</div> </div>
<div class="Msg1">提交成功</div> <div class="Msg1">提交成功</div>

View File

@ -151,7 +151,7 @@ image {
position: absolute; position: absolute;
right: 8rpx; right: 8rpx;
top: 23rpx; top: 23rpx;
background: url(http://192.168.0.172:5500/com_jfImg.png) no-repeat; background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_jfImg.png) no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
} }

View File

@ -8,7 +8,7 @@
<div class="community"> <div class="community">
<div class="community_left"> <div class="community_left">
<image mode="aspectFill" src="../../static/logo.png" alt="" /> <image mode="aspectFill" src="../../../static/logo.png" alt="" />
</div> </div>
<div class="community_right" @click="changeShow"> <div class="community_right" @click="changeShow">
<div class="community_right_text"> <div class="community_right_text">
@ -47,7 +47,7 @@
<div style="width: 100%;height: 200rpx;"> <div style="width: 100%;height: 200rpx;">
<div class="communityItem" v-for="item in 8"> <div class="communityItem" v-for="item in 8">
<div class="community_left"> <div class="community_left">
<image mode="aspectFill" src="../../static/logo.png" alt="" /> <image mode="aspectFill" src="../../../static/logo.png" alt="" />
</div> </div>
<div class="community_right" @click="changeShow2"> <div class="community_right" @click="changeShow2">
<div class="community_right_text"> <div class="community_right_text">

View File

@ -60,7 +60,7 @@
<view class="line2"></view> <view class="line2"></view>
<view class="top_bottom"> <view class="top_bottom">
<view class="bottomText2" @click="remark(item.bianhao)"> <view class="bottomText2" @click="remark(item.bianhao)">
<view style="margin: 20rpx 0;">备注</view> <view style="margin-top: 20rpx;">备注</view>
</view> </view>
<view class="line3"></view> <view class="line3"></view>
<view class="bottomText2" @click="refund(item.bianhao)"> <view class="bottomText2" @click="refund(item.bianhao)">

View File

@ -24,7 +24,7 @@
<view class="desc pay"> <view class="desc pay">
<image <image
class="payLogo" class="payLogo"
src="http://192.168.0.152:5500/assets/orderDetail_Vector17.png" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/orderDetail_Vector17.png"
mode="scaleToFill" mode="scaleToFill"
/> />
微信支付</view> 微信支付</view>
@ -52,7 +52,7 @@
<view class="popup_container"> <view class="popup_container">
<image <image
class="popup_pic" class="popup_pic"
src="http://192.168.0.152:5500/assets/orderDetail_Group_1600.png" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/orderDetail_Group_1600.png"
mode="scaleToFill" mode="scaleToFill"
/> />
<view class="title">提交成功</view> <view class="title">提交成功</view>

View File

@ -146,7 +146,7 @@
<u-upload :fileList="imgList" name="imgList" @afterRead="afterReadImg" @delete="deletePic" multiple <u-upload :fileList="imgList" name="imgList" @afterRead="afterReadImg" @delete="deletePic" multiple
:maxCount="10"> :maxCount="10">
<div class="imgCon"> <div class="imgCon">
<image src="http://192.168.0.172:5500/com_imageImg.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_imageImg.png" mode="widthFix"></image>
上传图片 上传图片
</div> </div>
</u-upload> </u-upload>
@ -159,7 +159,7 @@
<u-upload v-if="!videoList.url" :fileList="videoList" @afterRead="afterReadVideo" @delete="deleteVideo" name="videoList" <u-upload v-if="!videoList.url" :fileList="videoList" @afterRead="afterReadVideo" @delete="deleteVideo" name="videoList"
:maxCount="1" accept="video"> :maxCount="1" accept="video">
<div class="imgCon"> <div class="imgCon">
<image src="http://192.168.0.172:5500/com_videoImg.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_videoImg.png" mode="widthFix"></image>
上传视频 上传视频
</div> </div>
</u-upload> </u-upload>
@ -168,7 +168,7 @@
<video id="myVideo" :src="videoList.url" playsinline webkit-playsinline></video> <video id="myVideo" :src="videoList.url" playsinline webkit-playsinline></video>
<div class="mask" @click="playFullScreenVideo"> <div class="mask" @click="playFullScreenVideo">
<!-- <div class="mask_con"> <!-- <div class="mask_con">
<image src="http://192.168.0.172:5500/local_play.png" mode="widthFix"></image> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/local_play.png" mode="widthFix"></image>
</div> --> </div> -->
<div class="mask_cancel" @click="cancels">删除</div> <div class="mask_cancel" @click="cancels">删除</div>
</div> </div>

View File

@ -60,7 +60,7 @@
content: ''; content: '';
width: 52rpx; width: 52rpx;
height: 22rpx; height: 22rpx;
background: url(http://192.168.0.172:5500/com_active.png); background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_active.png);
background-size: cover; background-size: cover;
position: absolute; position: absolute;
left: 50%; left: 50%;

View File

@ -583,11 +583,11 @@
"path": "index/index", "path": "index/index",
"style": { "style": {
"navigationBarBackgroundColor": "#fff", "navigationBarBackgroundColor": "#fff",
"navigationStyle": "custom" "navigationStyle": "custom",
},
"usingComponents": { "usingComponents": {
"nav-footer": "/components/nav/nav" "nav-footer": "/components/nav/nav"
} }
}
}, },
{ {
"path": "search/index", "path": "search/index",

View File

@ -6,7 +6,7 @@ page {
/* height: 578rpx; */ /* height: 578rpx; */
/* background: linear-gradient(to bottom, #FFE7E1, #FFFFFF); */ /* background: linear-gradient(to bottom, #FFE7E1, #FFFFFF); */
/* background: linear-gradient( 359deg, rgba(255,255,255,0) 0%, #FDD9CA 100%); */ /* background: linear-gradient( 359deg, rgba(255,255,255,0) 0%, #FDD9CA 100%); */
background: url('http://192.168.0.152:5500/assets/page_user_Group_1584.png'); background: url('https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1584.png');
background-size: contain; background-size: contain;
background-repeat: no-repeat; background-repeat: no-repeat;
background-attachment: fixed; background-attachment: fixed;

View File

@ -10,7 +10,7 @@
<view class="avatar_title"> <view class="avatar_title">
<view class="login-btn">{{userInfo.nick_name ? userInfo.nick_name : '登录/注册'}}</view> <view class="login-btn">{{userInfo.nick_name ? userInfo.nick_name : '登录/注册'}}</view>
<view class="avatar_setting"> <view class="avatar_setting">
<image src="http://192.168.0.152:5500/assets/page_user_Vector13.png" mode="" @click.stop="headerRefreshClick"/> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Vector13.png" mode="" @click.stop="headerRefreshClick"/>
<button <button
class="login-btn" class="login-btn"
open-type="getPhoneNumber" open-type="getPhoneNumber"
@ -19,7 +19,7 @@
@getphonenumber="getPhoneNumber" @getphonenumber="getPhoneNumber"
id="hiddenLoginBtn" id="hiddenLoginBtn"
></button> ></button>
<image src="http://192.168.0.152:5500/assets/page_user_Vector14.png" mode="" @click.stop="headerSettingsClick"/> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Vector14.png" mode="" @click.stop="headerSettingsClick"/>
</view> </view>
</view> </view>
<view class="avater_mobile">{{ userInfo.mobile }}</view> <view class="avater_mobile">{{ userInfo.mobile }}</view>
@ -49,26 +49,26 @@
<view class="gold_title"> <view class="gold_title">
<span class="gold">金币</span> <span class="monenyt">0</span> | <span class="price">价值0.00</span> <u-icon size="30" name="arrow-right" /> <span class="gold">金币</span> <span class="monenyt">0</span> | <span class="price">价值0.00</span> <u-icon size="30" name="arrow-right" />
</view> </view>
<image class="gold_pic" src="http://192.168.0.152:5500/assets/page_user_Group_1556.png" /> <image class="gold_pic" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1556.png" />
</view> </view>
<view class="main main1"> <view class="main main1">
<view class="main_title">物业服务</view> <view class="main_title">物业服务</view>
<view class="item1"> <view class="item1">
<view class="item_device" @click="handleCommunityClick"> <view class="item_device" @click="handleCommunityClick">
<image class="icon-community icon-img" <image class="icon-community icon-img"
src="http://192.168.0.152:5500/assets/page_user_Group_1382.png"></image> src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1382.png"></image>
<text class="community-title title-item">我的房产</text> <text class="community-title title-item">我的房产</text>
</view> </view>
<view class="item_device" @click="handleApplyOwnerClick"> <view class="item_device" @click="handleApplyOwnerClick">
<image class="icon-img" src="http://192.168.0.152:5500/assets/page_user_Group_1559.png" /> <image class="icon-img" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1559.png" />
<text class="owner-title title-item">物业账单</text> <text class="owner-title title-item">物业账单</text>
</view> </view>
<view class="item_device" @click="handleFacilityClick"> <view class="item_device" @click="handleFacilityClick">
<image class="icon-img" src="http://192.168.0.152:5500/assets/page_user_Group_1557.png"/> <image class="icon-img" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1557.png"/>
<text class="device-title title-item">我的工单</text> <text class="device-title title-item">我的工单</text>
</view> </view>
<view class="item_device" @click="handleMeApplyClick"> <view class="item_device" @click="handleMeApplyClick">
<image class="icon-img" src="http://192.168.0.152:5500/assets/page_user_Group_1558.png"/> <image class="icon-img" src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1558.png"/>
<text class="device-title title-item">我的管家</text> <text class="device-title title-item">我的管家</text>
</view> </view>
</view> </view>
@ -121,7 +121,7 @@
</view> </view>
</view> </view>
<view class="customer" @click="headerCustomerClick"> <view class="customer" @click="headerCustomerClick">
<image src="http://192.168.0.152:5500/assets/page_user_Vector16.png" mode=""/> <image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Vector16.png" mode=""/>
<view>客服</view> <view>客服</view>
</view> </view>
<view style="padding-top: 174rpx;"></view> <view style="padding-top: 174rpx;"></view>
@ -138,70 +138,70 @@
return { return {
top: 0, top: 0,
networkList: [{ networkList: [{
image: "http://192.168.0.152:5500/assets/page_user_Group_1568.png", image: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1568.png",
name: "我的订单", name: "我的订单",
url: "", url: "",
}, },
{ {
image: "http://192.168.0.152:5500/assets/page_user_Group_1567.png", image: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1567.png",
name: "我的拼团", name: "我的拼团",
url: "", url: "",
}, },
{ {
image: "http://192.168.0.152:5500/assets/page_user_Group_1565.png", image: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1565.png",
name: "我的收藏", name: "我的收藏",
url: "", url: "",
}, },
{ {
image: "http://192.168.0.152:5500/assets/page_user_Group_1566.png", image: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1566.png",
name: "售后服务", name: "售后服务",
url: "", url: "",
}, },
{ {
image: "http://192.168.0.152:5500/assets/page_user_Group_1563.png", image: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1563.png",
name: "收货地址", name: "收货地址",
url: "", url: "",
}, },
{ {
image: "http://192.168.0.152:5500/assets/page_user_Group_1564.png", image: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1564.png",
name: "购物车", name: "购物车",
url: "", url: "",
}, },
], ],
visitList: [{ visitList: [{
image: "http://192.168.0.152:5500/assets/page_user_Group_1572.png", image: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1572.png",
name: "服务工单", name: "服务工单",
url: "", url: "",
}, },
{ {
image: "http://192.168.0.152:5500/assets/page_user_Group_1573.png", image: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1573.png",
name: "服务地址", name: "服务地址",
url: "", url: "",
}, },
{ {
image: "http://192.168.0.152:5500/assets/page_user_Group_1574.png", image: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1574.png",
name: "服务卡", name: "服务卡",
url: "", url: "",
} }
], ],
shopList: [{ shopList: [{
image: "http://192.168.0.152:5500/assets/page_user_Group_1580.png", image: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1580.png",
name: "附近门店", name: "附近门店",
url: "", url: "",
}, },
{ {
image: "http://192.168.0.152:5500/assets/page_user_Group_1581.png", image: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1581.png",
name: "服务券", name: "服务券",
url: "", url: "",
}, },
{ {
image: "http://192.168.0.152:5500/assets/page_user_Group_1582.png", image: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/page_user_Group_1582.png",
name: "支付记录", name: "支付记录",
url: "", url: "",
} }
], ],
shopManagementList:[{ shopManagementList:[{
image: "http://192.168.0.152:5500/assets/user_page_Group_1782.png", image: "https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/user_page_Group_1782.png",
name: "店铺管理", name: "店铺管理",
url: "/packages/storeManagement/index/index", url: "/packages/storeManagement/index/index",
}], }],

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -3317,7 +3317,17 @@ var apiArr = {
//获取banner图 //获取banner图
getButton: "/api/v1/wechat/home-page/button-list", getButton: "/api/v1/wechat/home-page/button-list",
//获取button //获取button
getHotWords: "/api/v1/wechat/home-page/search-hot-word/info" //搜索热词 getHotWords: "/api/v1/wechat/home-page/search-hot-word/info",
//搜索热词
getAllList: "/api/v2/wechat/community/get-all-list",
//获取小区信息列表
commRoomSelect: "/api/v2/wechat/community-room/comm-room-select",
//房源筛选器
commInfo: "/api/v2/wechat/mpuser-crud/community-owner/info",
//我的房产信息小区列表
create: "/api/v2/wechat/community-owners/create" //创建新的业主信息
}; };
exports.apiArr = apiArr; exports.apiArr = apiArr;
@ -6669,7 +6679,17 @@ var apiArr = {
// 人员派单 // 人员派单
workOrderCrudAccept: '/api/v2/wechat/work-order-crud/accept', workOrderCrudAccept: '/api/v2/wechat/work-order-crud/accept',
// 人员接单 // 人员接单
workOrderCrudUpdate: '/api/v2/wechat/work-order-crud/worker/update' // 工作人员更新工单 workOrderCrudUpdate: '/api/v2/wechat/work-order-crud/worker/update',
// 工作人员更新工单
navPage: '/api/v2/wechat/community-navigation-crud/page',
// 小区图标导航信息分页
advPage: '/api/v2/wechat/community-advertisement-crud/page',
// 小区广告信息分页
categoryPage: '/api/v2/wechat/announcement-category-crud/page',
// 公告分类信息分页
infoPage: '/api/v2/wechat/announcement-crud/page' // 公告信息分页
}; };
exports.apiArr = apiArr; exports.apiArr = apiArr;