优化内容加修复bug
This commit is contained in:
@@ -184,7 +184,7 @@
|
||||
|
||||
weixin.launchMiniProgram({
|
||||
id: 'gh_a765aef0172c',
|
||||
type: 0, // 0 正式版 / 1测试版 / 2预览版
|
||||
type: 1, // 0 正式版 / 1测试版 / 2预览版
|
||||
path: 'pages/arrearsPayment/arrearsPayment?' + queryString,
|
||||
}, (res) => {
|
||||
console.log('回调---回调结果(App)', JSON.stringify(res))
|
||||
|
||||
@@ -206,11 +206,12 @@ const handleBatchPay = () => {
|
||||
const query = [
|
||||
['acct', userId],
|
||||
['orderType', '10'],
|
||||
['billId', allIds.join(',')],
|
||||
['deviceType', '3'],
|
||||
['billIds', allIds.join(',')],
|
||||
// ['deviceType', '3'],
|
||||
['residentUserId', userId],
|
||||
['token', token]
|
||||
].map(([k, v]) => encodeURIComponent(k) + '=' + encodeURIComponent(v)).join('&')
|
||||
console.log('往小程序传递的参数',query)
|
||||
|
||||
// #ifdef APP-PLUS
|
||||
uni.showLoading({ title: '加载中...' })
|
||||
|
||||
@@ -45,8 +45,7 @@
|
||||
</view>
|
||||
</scroll-view>
|
||||
<!-- 物业费/垃圾处理费列表 -->
|
||||
<!-- 物业费/垃圾处理费列表 -->
|
||||
<scroll-view class="details-scroll" scroll-y="true" @scrolltolower="onLoadMore">
|
||||
<scroll-view class="details-scroll-bill" scroll-y="true" @scrolltolower="onLoadMore">
|
||||
<view class="bill-list">
|
||||
<template v-if="detailslist.length != 0">
|
||||
<view class="bill-item" :class="{ 'bill-paid': !item.amount }" @click="!item.amount ? null : goToBill(item)" v-for="item,index in detailslist" :key="index">
|
||||
@@ -446,13 +445,13 @@ page {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 2rpx 10rpx;
|
||||
padding: 4rpx 14rpx;
|
||||
border-radius: 30rpx;
|
||||
font-size: 14rpx;
|
||||
font-size: 20rpx;
|
||||
font-weight: 500;
|
||||
color: #fff;
|
||||
margin-left: 10rpx;
|
||||
line-height: 1.5;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.bill-status.debt {
|
||||
@@ -473,8 +472,11 @@ page {
|
||||
|
||||
.details-scroll {
|
||||
max-height: 500rpx;
|
||||
margin-bottom: 40rpx;
|
||||
padding: 20rpx 0;
|
||||
padding: 0 0 20rpx 0;
|
||||
}
|
||||
.details-scroll-bill{
|
||||
max-height: 500rpx;
|
||||
padding: 0 0 40rpx 0;
|
||||
}
|
||||
|
||||
.load-more-status {
|
||||
|
||||
Reference in New Issue
Block a user