This commit is contained in:
liuye
2022-06-30 18:14:11 +08:00
parent 12124b339d
commit f9418701b1
2 changed files with 5 additions and 4 deletions

View File

@@ -27,7 +27,8 @@
</div>
<div class="item">
<div>{{info.partyOrgName}}排名</div>
<div>{{info.orderIndex || 0}}</div>
<div v-if="info.orderIndex != null">{{info.orderIndex}}</div>
<div v-else>无排名</div>
</div>
</div>
<!-- <div class="footer" @click="linkTo(`../AppApplyPoint/AppApplyPoint`)">

View File

@@ -37,7 +37,7 @@ export default {
showDate: false,
dateParams: {
year: true,
month: false,
month: true,
day: false,
hour: false,
minute: false,
@@ -57,14 +57,14 @@ export default {
var datetime = new Date();
var year = datetime.getFullYear();
var month = datetime.getMonth() + 1 < 10 ? '0' + (datetime.getMonth() + 1) : datetime.getMonth() + 1;
this.searchDate = `${year}`
this.searchDate = `${year}-${month}`
this.$dict.load("partyIntegralDetailType").then(() => {
this.getList()
})
},
methods: {
selectDate(e) {
this.searchDate = `${e.year}`
this.searchDate = `${e.year}-${e.month}`
this.getListInit()
},
getListInit() {