Compare commits

..

No commits in common. "0fa63c81660f34c191a74656b1d0c3039b383ccd" and "660b77a7322fcba3011d325f25b4208b861b9099" have entirely different histories.

3 changed files with 14 additions and 20 deletions

View File

@ -204,10 +204,6 @@ image {
border-bottom: 1rpx solid #EBEBEB; border-bottom: 1rpx solid #EBEBEB;
} }
.newsItem:last-child {
border-bottom: none;
}
.newsItem_left { .newsItem_left {
flex: 1; flex: 1;
} }

View File

@ -62,7 +62,7 @@
<div class="homeMoney_box_right1"> <div class="homeMoney_box_right1">
<span></span>{{ balanceMoney }} <span></span>{{ balanceMoney }}
</div> </div>
<div class="homeMoney_box_right2" @click="more(currentRoom)"> <div class="homeMoney_box_right2" @click="more">
查看详情 查看详情
<div style="margin-left: 12rpx"> <div style="margin-left: 12rpx">
<u-icon <u-icon
@ -127,7 +127,7 @@
{{ items.order_datetime }} {{ items.order_datetime }}
</div> </div>
<div class="Item_type"> <div class="Item_type">
{{ items.community_fee_type ? items.community_fee_type.type_name : '' }} {{ items.community_fee_type.type_name }}
</div> </div>
<div class="Item_money">{{ items.money }}</div> <div class="Item_money">{{ items.money }}</div>
<div class="Item_status" v-if="items.status == 0">未付款</div> <div class="Item_status" v-if="items.status == 0">未付款</div>
@ -574,8 +574,8 @@ export default {
}, },
// //
more(item) { more() {
NavgateTo(`../providentFund/index?item=${JSON.stringify(item)}`); NavgateTo("../providentFund/index");
}, },
}, },
}; };

View File

@ -109,11 +109,8 @@ export default {
} }
}, },
async onLoad(options) { async onLoad(options) {
const itemObj = JSON.parse(decodeURIComponent(options.item));
console.log("🚀 ~ onLoad ~ options.item:", itemObj)
// itemObjdefaultName
this.defaultName = { this.defaultName = {
...itemObj, ...this.houseList[0],
checked: true checked: true
}; };
const meun = menuButtonInfo(); const meun = menuButtonInfo();
@ -122,6 +119,7 @@ export default {
await this.getInfo() await this.getInfo()
}, },
methods: { methods: {
headerConfirmClick(item) { headerConfirmClick(item) {
this.defaultName = { this.defaultName = {
@ -167,7 +165,7 @@ export default {
item.checked = false item.checked = false
}) })
this.roomList = res.rows this.roomList = res.rows
// this.defaultName = res.rows[0] this.defaultName = res.rows[0]
}) })
}, },
async getInfo(){ async getInfo(){