30415
This commit is contained in:
@@ -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`)">
|
||||
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user