30415
This commit is contained in:
@@ -27,7 +27,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<div>{{info.partyOrgName}}排名</div>
|
<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>
|
</div>
|
||||||
<!-- <div class="footer" @click="linkTo(`../AppApplyPoint/AppApplyPoint`)">
|
<!-- <div class="footer" @click="linkTo(`../AppApplyPoint/AppApplyPoint`)">
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ export default {
|
|||||||
showDate: false,
|
showDate: false,
|
||||||
dateParams: {
|
dateParams: {
|
||||||
year: true,
|
year: true,
|
||||||
month: false,
|
month: true,
|
||||||
day: false,
|
day: false,
|
||||||
hour: false,
|
hour: false,
|
||||||
minute: false,
|
minute: false,
|
||||||
@@ -57,14 +57,14 @@ export default {
|
|||||||
var datetime = new Date();
|
var datetime = new Date();
|
||||||
var year = datetime.getFullYear();
|
var year = datetime.getFullYear();
|
||||||
var month = datetime.getMonth() + 1 < 10 ? '0' + (datetime.getMonth() + 1) : datetime.getMonth() + 1;
|
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.$dict.load("partyIntegralDetailType").then(() => {
|
||||||
this.getList()
|
this.getList()
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
selectDate(e) {
|
selectDate(e) {
|
||||||
this.searchDate = `${e.year}`
|
this.searchDate = `${e.year}-${e.month}`
|
||||||
this.getListInit()
|
this.getListInit()
|
||||||
},
|
},
|
||||||
getListInit() {
|
getListInit() {
|
||||||
|
|||||||
Reference in New Issue
Block a user