全部图片替换为后端云存储路径,缴费相关页面修改

This commit is contained in:
wangyuxin
2026-04-21 15:02:25 +08:00
parent b0d90c27db
commit 7341391c32
61 changed files with 87 additions and 86 deletions

View File

@@ -50,12 +50,11 @@
"quickapp" : {}, "quickapp" : {},
/* */ /* */
"mp-weixin" : { "mp-weixin" : {
"appid" : "wx4a49ad94e2b25927", "appid" : "wx40625124315d2de1",
"setting" : { "setting" : {
"urlCheck" : false "urlCheck" : false
}, },
"usingComponents" : true, "usingComponents" : true
"lazyCodeLoading": "requiredComponents"
}, },
"mp-alipay" : { "mp-alipay" : {
"usingComponents" : true "usingComponents" : true

View File

@@ -1,6 +1,5 @@
{ {
"pages": [ "pages": [{
{
"path": "pages/navigation/navigation", "path": "pages/navigation/navigation",
"style": { "style": {
"navigationBarTitleText": "引导页", "navigationBarTitleText": "引导页",

View File

@@ -95,7 +95,7 @@
this.formData.carBrandName = '宝马'; this.formData.carBrandName = '宝马';
this.formData.model = 'X5'; this.formData.model = 'X5';
this.formData.color = '白色'; this.formData.color = '白色';
this.formData.carImg = '/static/propertyImgs/carImg.png'; this.formData.carImg = 'http://47.104.199.163:9090/images/propertyImgs/carImg.png';
this.formData.carBrandId = '1'; this.formData.carBrandId = '1';
} else if (uni.getStorageSync('operationType') == 'add') { } else if (uni.getStorageSync('operationType') == 'add') {

View File

@@ -287,8 +287,8 @@
mounted() {}, mounted() {},
data() { data() {
return { return {
frontSideOfIDcardSrc: '/static/propertyImgs/frontSideOfIDcard.png', frontSideOfIDcardSrc: 'http://47.104.199.163:9090/images/propertyImgs/frontSideOfIDcard.png',
backSideOfIDcardSrc: '/static/propertyImgs/backSideOfIDcard.png', backSideOfIDcardSrc: 'http://47.104.199.163:9090/images/propertyImgs/backSideOfIDcard.png',
/* 设定状态栏默认高度 */ /* 设定状态栏默认高度 */
statusBarHeight: 20, statusBarHeight: 20,
id: undefined, id: undefined,

View File

@@ -67,7 +67,7 @@
return { return {
/* 设定状态栏默认高度 */ /* 设定状态栏默认高度 */
statusBarHeight: 20, statusBarHeight: 20,
defaultCarImg: "/static/propertyImgs/defaultCarImg.png", defaultCarImg: "http://47.104.199.163:9090/images/propertyImgs/defaultCarImg.png",
searchKey: "", searchKey: "",
selectedId: '', selectedId: '',
selectedName: '', selectedName: '',
@@ -76,7 +76,7 @@
// 模拟车辆数据 // 模拟车辆数据
carList: [{ carList: [{
id: '1', id: '1',
imgSrc: '/static/propertyImgs/carImg.png', imgSrc: 'http://47.104.199.163:9090/images/propertyImgs/carImg.png',
plate: "京A88888", plate: "京A88888",
model: "宝马X5", model: "宝马X5",
color: "白色", color: "白色",

View File

@@ -93,7 +93,7 @@
carBrandName: '101栋2单元402', carBrandName: '101栋2单元402',
model: '张三', model: '张三',
color: '租赁', color: '租赁',
carImg: '/static/propertyImgs/carImg.png', carImg: 'http://47.104.199.163:9090/images/propertyImgs/carImg.png',
}, },

View File

@@ -11,14 +11,14 @@
<view class="form-container"> <view class="form-container">
<!-- 手机号输入框+86前缀 --> <!-- 手机号输入框+86前缀 -->
<view class="input-group phone-input"> <view class="input-group phone-input">
<image class="iconStyle" src="/static/propertyImgs/phoneIcon.png"></image> <image class="iconStyle" src="http://47.104.199.163:9090/images/propertyImgs/phoneIcon.png"></image>
<input class="input-item" type="number" v-model="phone" placeholder="请输入手机号码" <input class="input-item" type="number" v-model="phone" placeholder="请输入手机号码"
placeholder-class="input-placeholder" maxlength="11" /> placeholder-class="input-placeholder" maxlength="11" />
</view> </view>
<!-- 验证码输入框带获取验证码按钮 --> <!-- 验证码输入框带获取验证码按钮 -->
<view class="input-group code-input" style="padding: 0 0 0 20rpx;"> <view class="input-group code-input" style="padding: 0 0 0 20rpx;">
<image class="iconStyle" src="/static/propertyImgs/codeIcon.png"></image> <image class="iconStyle" src="http://47.104.199.163:9090/images/propertyImgs/codeIcon.png"></image>
<input class="input-item code-item" type="number" v-model="code" placeholder="请输入验证码" <input class="input-item code-item" type="number" v-model="code" placeholder="请输入验证码"
placeholder-class="input-placeholder" maxlength="6" /> placeholder-class="input-placeholder" maxlength="6" />

View File

@@ -71,7 +71,7 @@
return { return {
/* 设定状态栏默认高度 */ /* 设定状态栏默认高度 */
statusBarHeight: 20, statusBarHeight: 20,
defaultCarImg: "/static/propertyImgs/defaultCarImg.png", defaultCarImg: "http://47.104.199.163:9090/images/propertyImgs/defaultCarImg.png",
searchKey: "", searchKey: "",
selectedId: '', selectedId: '',
selectedName: '', selectedName: '',
@@ -80,7 +80,7 @@
// 模拟车辆数据 // 模拟车辆数据
carList: [{ carList: [{
id: '1', id: '1',
imgSrc: '/static/propertyImgs/carImg.png', imgSrc: 'http://47.104.199.163:9090/images/propertyImgs/carImg.png',
plate: "京A88888", plate: "京A88888",
model: "宝马X5", model: "宝马X5",
color: "白色", color: "白色",

View File

@@ -46,7 +46,7 @@
</view> </view>
</view> </view>
<view class="right"> <view class="right">
<image src="/static/propertyImgs/myParkingSpace.png" class="imgItem" mode="widthFix"> <image src="http://47.104.199.163:9090/images/propertyImgs/myParkingSpace.png" class="imgItem" mode="widthFix">
</image> </image>
</view> </view>

View File

@@ -6,7 +6,7 @@
<scroll-view class="page" scroll-y> <scroll-view class="page" scroll-y>
<view class="topBox"> <view class="topBox">
<view class="name"> <view class="name">
<image src="/static/propertyImgs/touxiang.jpg" class="img" /> <image src="http://47.104.199.163:9090/images/propertyImgs/touxiang.jpg" class="img" />
<span style="padding: 5rpx 5rpx;display: flex;flex-direction: column;line-height: 60rpx;"> <span style="padding: 5rpx 5rpx;display: flex;flex-direction: column;line-height: 60rpx;">
<span style="font-size: 36rpx;font-weight: 600;"> <span style="font-size: 36rpx;font-weight: 600;">
{{loginName}} {{loginName}}
@@ -28,7 +28,7 @@
style="align-self: flex-end;font-size: 24rpx;vertical-align: baseline;">{{ item.desc }}</span></span> style="align-self: flex-end;font-size: 24rpx;vertical-align: baseline;">{{ item.desc }}</span></span>
</view> </view>
<view class="item-arrow"></view> <view class="item-arrow"></view>
<!-- <image src="/static/propertyImgs/arrow-right.png" class="arrow-icon" /> --> <!-- <image src="http://47.104.199.163:9090/images/propertyImgs/arrow-right.png" class="arrow-icon" /> -->
</view> </view>
</view> </view>
@@ -68,24 +68,24 @@
loginName: "wangh", loginName: "wangh",
phoneNum: '156*****1212', phoneNum: '156*****1212',
list: [{ list: [{
icon: "/static/propertyImgs/house.png", icon: "http://47.104.199.163:9090/images/propertyImgs/house.png",
title: "我的房屋" title: "我的房屋"
}, },
{ {
icon: "/static/propertyImgs/user.png", icon: "http://47.104.199.163:9090/images/propertyImgs/user.png",
title: "住户管理", title: "住户管理",
// desc: "您可以在这里添加家人、朋友、租客~" // desc: "您可以在这里添加家人、朋友、租客~"
}, },
{ {
icon: "/static/propertyImgs/parking.png", icon: "http://47.104.199.163:9090/images/propertyImgs/parking.png",
title: "我的车位" title: "我的车位"
}, },
{ {
icon: "/static/propertyImgs/car.png", icon: "http://47.104.199.163:9090/images/propertyImgs/car.png",
title: "我的车辆" title: "我的车辆"
}, },
{ {
icon: "/static/propertyImgs/setting.png", icon: "http://47.104.199.163:9090/images/propertyImgs/setting.png",
title: "设置" title: "设置"
} }
] ]

View File

@@ -10,7 +10,7 @@
<!-- 头部水费标题+水滴图标 --> <!-- 头部水费标题+水滴图标 -->
<view class="card-header"> <view class="card-header">
<image class="iconStyle" <image class="iconStyle"
:src="paymentType=='水'?'/static/propertyImgs/water.png':'/static/propertyImgs/electric.png'"> :src="paymentType=='水'?'http://47.104.199.163:9090/images/propertyImgs/water.png':'http://47.104.199.163:9090/images/propertyImgs/electric.png'">
</image> </image>
<text class="card-title">{{paymentType+'费'}}</text> <text class="card-title">{{paymentType+'费'}}</text>
</view> </view>
@@ -26,7 +26,7 @@
<input class="input" placeholder="请输入设备号" placeholder-class="input-placeholder" <input class="input" placeholder="请输入设备号" placeholder-class="input-placeholder"
v-model="deviceNo" /> v-model="deviceNo" />
<!-- 右边扫码图标 text标签直接用 双端不乱码 --> <!-- 右边扫码图标 text标签直接用 双端不乱码 -->
<image class="scanTheCodeIconStyle" src="/static/propertyImgs/scanTheCodeIcon.png" <image class="scanTheCodeIconStyle" src="http://47.104.199.163:9090/images/propertyImgs/scanTheCodeIcon.png"
@click="scanCode"></image> @click="scanCode"></image>
</view> </view>
</view> </view>
@@ -175,8 +175,8 @@
}); });
}, },
goBack() { goBack() {
uni.switchTab({ uni.redirectTo({
url: '/pages/payment/paymentIndex', url: '/pages/payment-list/paymentIndex',
success: res => {}, success: res => {},
fail: () => {}, fail: () => {},
complete: () => {} complete: () => {}

View File

@@ -12,9 +12,11 @@
<!-- 顶部蓝色标题栏 --> <!-- 顶部蓝色标题栏 -->
<view class="header-card"> <view class="header-card">
<view class="header-icon"> <view class="header-icon">
<image class="iconStyle" src="/static/propertyImgs/gas.png"></image> <image class="iconStyle"
:src="paymentType=='燃气'?'http://47.104.199.163:9090/images/propertyImgs/gas.png':'http://47.104.199.163:9090/images/propertyImgs/heating.png'">
></image>
</view> </view>
<text class="header-title">燃气费</text> <text class="header-title">{{paymentType+'费'}}</text>
</view> </view>
<!-- 缴费信息卡片 --> <!-- 缴费信息卡片 -->

View File

@@ -102,7 +102,7 @@
<view class="pay-way"> <view class="pay-way">
<text class="way-label">支付方式</text> <text class="way-label">支付方式</text>
<view class="way-content"> <view class="way-content">
<image class="bank-icon" src="/static/propertyImgs/bank-logo.png" mode="aspectFit"> <image class="bank-icon" src="http://47.104.199.163:9090/images/propertyImgs/bank-logo.png" mode="aspectFit">
</image> </image>
<text class="bank-name">建设银行储蓄卡(8888)</text> <text class="bank-name">建设银行储蓄卡(8888)</text>
<text class="arrow-icon">></text> <text class="arrow-icon">></text>

View File

@@ -15,7 +15,7 @@
<!-- 未欠费 --> <!-- 未欠费 -->
<view class="amount-section"> <view class="amount-section">
<image src="/static/propertyImgs/noArrears.png" class="background-image-style"></image> <image src="http://47.104.199.163:9090/images/propertyImgs/noArrears.png" class="background-image-style"></image>
<text class="noArrearsText">暂未查到欠费</text> <text class="noArrearsText">暂未查到欠费</text>
<view class="recordText"> <view class="recordText">
<text>{{'最近缴费:'+lastPayTime}}</text> <text>{{'最近缴费:'+lastPayTime}}</text>

View File

@@ -5,8 +5,8 @@
<uni-nav-bar title="生活缴费" left-icon="left" @clickLeft="goBack" backgroundColor="transparent" :border="false"> <uni-nav-bar title="生活缴费" left-icon="left" @clickLeft="goBack" backgroundColor="transparent" :border="false">
</uni-nav-bar> </uni-nav-bar>
<view class="topbox"> <view class="topbox">
<image class="titleImg" src="/static/propertyImgs/payTitle.png"></image> <image class="titleImg" src="http://47.104.199.163:9090/images/propertyImgs/payTitle.png"></image>
<image class="payImg" src="/static/propertyImgs/payImg.png"></image> <image class="payImg" src="http://47.104.199.163:9090/images/propertyImgs/payImg.png"></image>
</view> </view>
<scroll-view class="page" scroll-y="true"> <scroll-view class="page" scroll-y="true">
<view class="container"> <view class="container">
@@ -86,7 +86,7 @@
name: '物业费', name: '物业费',
status: '已欠费', status: '已欠费',
address: '桂花园别墅2号楼2层', address: '桂花园别墅2号楼2层',
icon: "/static/propertyImgs/property.png", icon: "http://47.104.199.163:9090/images/propertyImgs/property.png",
}, },
{ {
@@ -94,7 +94,7 @@
name: '暖气费', name: '暖气费',
status: '', status: '',
address: '山东省日照市东港区桂花园别墅2号楼2层', address: '山东省日照市东港区桂花园别墅2号楼2层',
icon: "/static/propertyImgs/heating.png", icon: "http://47.104.199.163:9090/images/propertyImgs/heating.png",
}, },
{ {
@@ -102,7 +102,7 @@
name: '电费', name: '电费',
status: '已欠费', status: '已欠费',
address: '山东省日照市东港区桂花园别墅2号楼2层', address: '山东省日照市东港区桂花园别墅2号楼2层',
icon: "/static/propertyImgs/electric.png", icon: "http://47.104.199.163:9090/images/propertyImgs/electric.png",
} }
], ],
@@ -110,37 +110,37 @@
addList: [{ addList: [{
name: "燃气", name: "燃气",
type: "gas", type: "gas",
icon: "/static/propertyImgs/gas.png", icon: "http://47.104.199.163:9090/images/propertyImgs/gas.png",
iconClass: "gas" iconClass: "gas"
}, },
{ {
name: "水", name: "水",
type: "water", type: "water",
icon: "/static/propertyImgs/water.png", icon: "http://47.104.199.163:9090/images/propertyImgs/water.png",
iconClass: "water" iconClass: "water"
}, },
{ {
name: "物业", name: "物业",
type: "property", type: "property",
icon: "/static/propertyImgs/property.png", icon: "http://47.104.199.163:9090/images/propertyImgs/property.png",
iconClass: "property" iconClass: "property"
}, },
{ {
name: "电", name: "电",
type: "electric", type: "electric",
icon: "/static/propertyImgs/electric.png", icon: "http://47.104.199.163:9090/images/propertyImgs/electric.png",
iconClass: "electric" iconClass: "electric"
}, },
{ {
name: "暖气", name: "暖气",
type: "heating", type: "heating",
icon: "/static/propertyImgs/heating.png", icon: "http://47.104.199.163:9090/images/propertyImgs/heating.png",
iconClass: "heating" iconClass: "heating"
}, },
{ {
name: "车位", name: "车位",
type: "parking", type: "parking",
icon: "/static/propertyImgs/parkingIcon.png", icon: "http://47.104.199.163:9090/images/propertyImgs/parkingIcon.png",
iconClass: "parking" iconClass: "parking"
} }
] ]
@@ -180,7 +180,7 @@
}, },
// 跳转到新增缴费 // 跳转到新增缴费
goToAdd(type) { goToAdd(type) {
if (type.name == '燃气') { if (type.name == '燃气' || type.name == '暖气') {
uni.redirectTo({ uni.redirectTo({
url: '/pages/payment-list/selectPaymentEntity', url: '/pages/payment-list/selectPaymentEntity',
success: res => {}, success: res => {},

View File

@@ -151,7 +151,7 @@
name: '燃气费', name: '燃气费',
account: '123123123123', account: '123123123123',
amount: 25, amount: 25,
icon: "/static/propertyImgs/gas.png", icon: "http://47.104.199.163:9090/images/propertyImgs/gas.png",
}, },
{ {
id: 2, id: 2,
@@ -159,7 +159,7 @@
name: '水费', name: '水费',
account: '123123123123', account: '123123123123',
amount: 25, amount: 25,
icon: "/static/propertyImgs/water.png", icon: "http://47.104.199.163:9090/images/propertyImgs/water.png",
}, },
// 6月数据 // 6月数据
@@ -169,7 +169,7 @@
name: '燃气费', name: '燃气费',
account: '123123123123', account: '123123123123',
amount: 30, amount: 30,
icon: "/static/propertyImgs/gas.png", icon: "http://47.104.199.163:9090/images/propertyImgs/gas.png",
}, },
{ {
id: 4, id: 4,
@@ -177,7 +177,7 @@
name: '水费', name: '水费',
account: '123123123123', account: '123123123123',
amount: 10, amount: 10,
icon: "/static/propertyImgs/water.png", icon: "http://47.104.199.163:9090/images/propertyImgs/water.png",
}, },
{ {
id: 5, id: 5,
@@ -185,7 +185,7 @@
name: '电费', name: '电费',
account: '123123123123', account: '123123123123',
amount: 30, amount: 30,
icon: "/static/propertyImgs/electric.png", icon: "http://47.104.199.163:9090/images/propertyImgs/electric.png",
} }
] ]

View File

@@ -318,6 +318,7 @@
background-color: #fff; background-color: #fff;
padding:20rpx; padding:20rpx;
display: flex; display: flex;
align-items: center;
} }
/* 隐藏 uni-data-picker 原生样式,只保留点击功能 */ /* 隐藏 uni-data-picker 原生样式,只保留点击功能 */

View File

@@ -116,9 +116,9 @@
statusBarHeight: 20, statusBarHeight: 20,
// 问题照片列表,替换为你的实际图片路径 // 问题照片列表,替换为你的实际图片路径
photoList: [ photoList: [
"/static/propertyImgs/community1.png", "http://47.104.199.163:9090/images/propertyImgs/community1.png",
"/static/propertyImgs/community2.png", "http://47.104.199.163:9090/images/propertyImgs/community2.png",
"/static/propertyImgs/community3.png" "http://47.104.199.163:9090/images/propertyImgs/community3.png"
] ]
} }

View File

@@ -104,9 +104,9 @@
desc: '1栋楼下道路路灯不亮并且有的亮度不够请物业公司及时更换防止发生意外事故。', desc: '1栋楼下道路路灯不亮并且有的亮度不够请物业公司及时更换防止发生意外事故。',
time: '2026-08-01 10:05:46', time: '2026-08-01 10:05:46',
imgList: [ imgList: [
"/static/propertyImgs/community1.png", "http://47.104.199.163:9090/images/propertyImgs/community1.png",
"/static/propertyImgs/community2.png", "http://47.104.199.163:9090/images/propertyImgs/community2.png",
"/static/propertyImgs/community3.png" "http://47.104.199.163:9090/images/propertyImgs/community3.png"
] ]
}, },
{ {
@@ -116,9 +116,9 @@
desc: '1栋楼下道路路灯不亮并且有的亮度不够请物业公司及时更换防止发生意外事故。', desc: '1栋楼下道路路灯不亮并且有的亮度不够请物业公司及时更换防止发生意外事故。',
time: '2026-08-01 10:05:46', time: '2026-08-01 10:05:46',
imgList: [ imgList: [
"/static/propertyImgs/community1.png", "http://47.104.199.163:9090/images/propertyImgs/community1.png",
"/static/propertyImgs/community2.png", "http://47.104.199.163:9090/images/propertyImgs/community2.png",
"/static/propertyImgs/community3.png" "http://47.104.199.163:9090/images/propertyImgs/community3.png"
] ]
}, },
{ {
@@ -128,9 +128,9 @@
desc: '1栋楼下道路路灯不亮并且有的亮度不够请物业公司及时更换防止发生意外事故。', desc: '1栋楼下道路路灯不亮并且有的亮度不够请物业公司及时更换防止发生意外事故。',
time: '2026-08-01 10:05:46', time: '2026-08-01 10:05:46',
imgList: [ imgList: [
"/static/propertyImgs/community1.png", "http://47.104.199.163:9090/images/propertyImgs/community1.png",
"/static/propertyImgs/community2.png", "http://47.104.199.163:9090/images/propertyImgs/community2.png",
"/static/propertyImgs/community3.png" "http://47.104.199.163:9090/images/propertyImgs/community3.png"
] ]
}, },
{ {
@@ -140,9 +140,9 @@
desc: '1栋楼下道路路灯不亮并且有的亮度不够请物业公司及时更换防止发生意外事故。', desc: '1栋楼下道路路灯不亮并且有的亮度不够请物业公司及时更换防止发生意外事故。',
time: '2026-08-01 10:05:46', time: '2026-08-01 10:05:46',
imgList: [ imgList: [
"/static/propertyImgs/community1.png", "http://47.104.199.163:9090/images/propertyImgs/community1.png",
"/static/propertyImgs/community2.png", "http://47.104.199.163:9090/images/propertyImgs/community2.png",
"/static/propertyImgs/community3.png" "http://47.104.199.163:9090/images/propertyImgs/community3.png"
] ]
} }
], ],
@@ -162,9 +162,9 @@
desc: '1栋楼下道路路灯不亮并且有的亮度不够请物业公司及时更换防止发生意外事故。', desc: '1栋楼下道路路灯不亮并且有的亮度不够请物业公司及时更换防止发生意外事故。',
time: '2026-08-01 10:05:46', time: '2026-08-01 10:05:46',
imgList: [ imgList: [
"/static/propertyImgs/community1.png", "http://47.104.199.163:9090/images/propertyImgs/community1.png",
"/static/propertyImgs/community2.png", "http://47.104.199.163:9090/images/propertyImgs/community2.png",
"/static/propertyImgs/community3.png" "http://47.104.199.163:9090/images/propertyImgs/community3.png"
] ]
}], }],
} }

View File

@@ -69,7 +69,7 @@
/* 设定状态栏默认高度 */ /* 设定状态栏默认高度 */
statusBarHeight: 20, statusBarHeight: 20,
dataList: [{ dataList: [{
src: '/static/propertyImgs/community1.png', src: 'http://47.104.199.163:9090/images/propertyImgs/community1.png',
propertyName: '北境碧桂园小区物业中心', propertyName: '北境碧桂园小区物业中心',
propertyAddress: 'A栋3单元1801', propertyAddress: 'A栋3单元1801',
phoneList: [{ phoneList: [{

View File

@@ -8,7 +8,7 @@
<view class="container"> <view class="container">
<!-- 顶部 Banner 轮播 --> <!-- 顶部 Banner 轮播 -->
<view class="banner-box" style="overflow-y: hidden;"> <view class="banner-box" style="overflow-y: hidden;">
<image class="banner-img" src="/static/propertyImgs/serviceImg2.png" /> <image class="banner-img" src="http://47.104.199.163:9090/images/propertyImgs/serviceImg2.png" />
</view> </view>
<!-- 常用功能区 --> <!-- 常用功能区 -->
@@ -87,69 +87,69 @@
// 常用功能列表 // 常用功能列表
commonFuncList: [{ commonFuncList: [{
name: "一键开门", name: "一键开门",
icon: "/static/propertyImgs/icon-door.png", icon: "http://47.104.199.163:9090/images/propertyImgs/icon-door.png",
path: "/pages/notice-list/oneClickOpen" path: "/pages/notice-list/oneClickOpen"
}, },
{ {
name: "生活缴费", name: "生活缴费",
icon: "/static/propertyImgs/icon-pay.png", icon: "http://47.104.199.163:9090/images/propertyImgs/icon-pay.png",
path: "/pages/payment-list/paymentIndex" path: "/pages/payment-list/paymentIndex"
}, },
{ {
name: "在线报修", name: "在线报修",
icon: "/static/propertyImgs/icon-repair.png", icon: "http://47.104.199.163:9090/images/propertyImgs/icon-repair.png",
path: "/pages/online-repair/onlineRepair" path: "/pages/online-repair/onlineRepair"
}, },
{ {
name: "访客邀请", name: "访客邀请",
icon: "/static/propertyImgs/icon-visitor.png", icon: "http://47.104.199.163:9090/images/propertyImgs/icon-visitor.png",
path: "/pages/visitor/visitor-list" path: "/pages/visitor/visitor-list"
} }
], ],
// 智慧社区功能列表 // 智慧社区功能列表
communityFuncList: [{ communityFuncList: [{
name: "一键开门", name: "一键开门",
icon: "/static/propertyImgs/icon-door.png", icon: "http://47.104.199.163:9090/images/propertyImgs/icon-door.png",
path: "/pages/notice-list/oneClickOpen" path: "/pages/notice-list/oneClickOpen"
}, },
{ {
name: "生活缴费", name: "生活缴费",
icon: "/static/propertyImgs/icon-pay.png", icon: "http://47.104.199.163:9090/images/propertyImgs/icon-pay.png",
path: "/pages/payment-list/paymentIndex" path: "/pages/payment-list/paymentIndex"
}, },
{ {
name: "在线报修", name: "在线报修",
icon: "/static/propertyImgs/icon-repair.png", icon: "http://47.104.199.163:9090/images/propertyImgs/icon-repair.png",
path: "/pages/online-repair/onlineRepair" path: "/pages/online-repair/onlineRepair"
}, },
{ {
name: "访客邀请", name: "访客邀请",
icon: "/static/propertyImgs/icon-visitor.png", icon: "http://47.104.199.163:9090/images/propertyImgs/icon-visitor.png",
path: "/pages/visitor/visitor-list" path: "/pages/visitor/visitor-list"
}, },
{ {
name: "投诉意见", name: "投诉意见",
icon: "/static/propertyImgs/icon-complaint.png", icon: "http://47.104.199.163:9090/images/propertyImgs/icon-complaint.png",
path: "/pages/service-list/complaintsSuggestionsIndex" path: "/pages/service-list/complaintsSuggestionsIndex"
}, },
{ {
name: "问卷调查", name: "问卷调查",
icon: "/static/propertyImgs/icon-survey.png", icon: "http://47.104.199.163:9090/images/propertyImgs/icon-survey.png",
path: "/pages/service-list/questionnaireSurveyIndex" path: "/pages/service-list/questionnaireSurveyIndex"
}, },
{ {
name: "社区活动", name: "社区活动",
icon: "/static/propertyImgs/icon-activity.png", icon: "http://47.104.199.163:9090/images/propertyImgs/icon-activity.png",
path: "/pages/activity-list/activityList" path: "/pages/activity-list/activityList"
}, },
{ {
name: "公告公示", name: "公告公示",
icon: "/static/propertyImgs/icon-notice.png", icon: "http://47.104.199.163:9090/images/propertyImgs/icon-notice.png",
path: "/pages/notice-list/noticeList" path: "/pages/notice-list/noticeList"
}, },
{ {
name: "联系物业", name: "联系物业",
icon: "/static/propertyImgs/icon-contact.png", icon: "http://47.104.199.163:9090/images/propertyImgs/icon-contact.png",
path: "/pages/service-list/contactProperty" path: "/pages/service-list/contactProperty"
} }
] ]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 613 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 661 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 786 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 638 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1013 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 747 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 748 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 772 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 343 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 782 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 793 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 897 B