Compare commits
3 Commits
660b77a732
...
0fa63c8166
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0fa63c8166 | ||
|
|
336361d383 | ||
|
|
d7118589fa |
@ -195,13 +195,17 @@ image {
|
||||
}
|
||||
|
||||
.newsItem {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 30rpx 0;
|
||||
margin: 0 20rpx;
|
||||
box-sizing: border-box;
|
||||
border-bottom: 1rpx solid #EBEBEB;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 30rpx 0;
|
||||
margin: 0 20rpx;
|
||||
box-sizing: border-box;
|
||||
border-bottom: 1rpx solid #EBEBEB;
|
||||
}
|
||||
|
||||
.newsItem:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.newsItem_left {
|
||||
|
||||
@ -62,7 +62,7 @@
|
||||
<div class="homeMoney_box_right1">
|
||||
<span>¥</span>{{ balanceMoney }}
|
||||
</div>
|
||||
<div class="homeMoney_box_right2" @click="more">
|
||||
<div class="homeMoney_box_right2" @click="more(currentRoom)">
|
||||
查看详情
|
||||
<div style="margin-left: 12rpx">
|
||||
<u-icon
|
||||
@ -127,7 +127,7 @@
|
||||
{{ items.order_datetime }}月
|
||||
</div>
|
||||
<div class="Item_type">
|
||||
{{ items.community_fee_type.type_name }}
|
||||
{{ items.community_fee_type ? items.community_fee_type.type_name : '' }}
|
||||
</div>
|
||||
<div class="Item_money">¥{{ items.money }}</div>
|
||||
<div class="Item_status" v-if="items.status == 0">未付款</div>
|
||||
@ -574,8 +574,8 @@ export default {
|
||||
},
|
||||
|
||||
//物业公积金详情
|
||||
more() {
|
||||
NavgateTo("../providentFund/index");
|
||||
more(item) {
|
||||
NavgateTo(`../providentFund/index?item=${JSON.stringify(item)}`);
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
@ -109,8 +109,11 @@ export default {
|
||||
}
|
||||
},
|
||||
async onLoad(options) {
|
||||
const itemObj = JSON.parse(decodeURIComponent(options.item));
|
||||
console.log("🚀 ~ onLoad ~ options.item:", itemObj)
|
||||
// 首次加载时从itemObj获取defaultName数据
|
||||
this.defaultName = {
|
||||
...this.houseList[0],
|
||||
...itemObj,
|
||||
checked: true
|
||||
};
|
||||
const meun = menuButtonInfo();
|
||||
@ -119,7 +122,6 @@ export default {
|
||||
await this.getInfo()
|
||||
},
|
||||
|
||||
|
||||
methods: {
|
||||
headerConfirmClick(item) {
|
||||
this.defaultName = {
|
||||
@ -165,7 +167,7 @@ export default {
|
||||
item.checked = false
|
||||
})
|
||||
this.roomList = res.rows
|
||||
this.defaultName = res.rows[0]
|
||||
// this.defaultName = res.rows[0]
|
||||
})
|
||||
},
|
||||
async getInfo(){
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user