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

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

@@ -10,7 +10,7 @@
<!-- 头部水费标题+水滴图标 -->
<view class="card-header">
<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>
<text class="card-title">{{paymentType+'费'}}</text>
</view>
@@ -26,7 +26,7 @@
<input class="input" placeholder="请输入设备号" placeholder-class="input-placeholder"
v-model="deviceNo" />
<!-- 右边扫码图标 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>
</view>
</view>
@@ -175,8 +175,8 @@
});
},
goBack() {
uni.switchTab({
url: '/pages/payment/paymentIndex',
uni.redirectTo({
url: '/pages/payment-list/paymentIndex',
success: res => {},
fail: () => {},
complete: () => {}

View File

@@ -12,9 +12,11 @@
<!-- 顶部蓝色标题栏 -->
<view class="header-card">
<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>
<text class="header-title">燃气费</text>
<text class="header-title">{{paymentType+'费'}}</text>
</view>
<!-- 缴费信息卡片 -->

View File

@@ -102,7 +102,7 @@
<view class="pay-way">
<text class="way-label">支付方式</text>
<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>
<text class="bank-name">建设银行储蓄卡(8888)</text>
<text class="arrow-icon">></text>

View File

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

View File

@@ -151,7 +151,7 @@
name: '燃气费',
account: '123123123123',
amount: 25,
icon: "/static/propertyImgs/gas.png",
icon: "http://47.104.199.163:9090/images/propertyImgs/gas.png",
},
{
id: 2,
@@ -159,7 +159,7 @@
name: '水费',
account: '123123123123',
amount: 25,
icon: "/static/propertyImgs/water.png",
icon: "http://47.104.199.163:9090/images/propertyImgs/water.png",
},
// 6月数据
@@ -169,7 +169,7 @@
name: '燃气费',
account: '123123123123',
amount: 30,
icon: "/static/propertyImgs/gas.png",
icon: "http://47.104.199.163:9090/images/propertyImgs/gas.png",
},
{
id: 4,
@@ -177,7 +177,7 @@
name: '水费',
account: '123123123123',
amount: 10,
icon: "/static/propertyImgs/water.png",
icon: "http://47.104.199.163:9090/images/propertyImgs/water.png",
},
{
id: 5,
@@ -185,7 +185,7 @@
name: '电费',
account: '123123123123',
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;
padding:20rpx;
display: flex;
align-items: center;
}
/* 隐藏 uni-data-picker 原生样式,只保留点击功能 */