积分审核
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<AiTopFixed>
|
||||
<div class="top-search">
|
||||
<div class="left">
|
||||
<u-search v-model="search.name" :clearabled="true" placeholder="请输入申请人、审批人" :show-action="false" bg-color="#F5F5F5"
|
||||
<u-search v-model="search.createUserName" :clearabled="true" placeholder="请输入申请人、审批人" :show-action="false" bg-color="#F5F5F5"
|
||||
search-icon-color="#999" color="#999" height="58" @search="getListInit" @clear="getListInit">
|
||||
</u-search>
|
||||
</div>
|
||||
@@ -63,7 +63,7 @@ export default {
|
||||
|
||||
showDateSelect: false,
|
||||
search: {
|
||||
name: '',
|
||||
createUserName: '',
|
||||
startTime: '',
|
||||
endTime: '',
|
||||
type: '',
|
||||
@@ -96,18 +96,23 @@ export default {
|
||||
methods: {
|
||||
getListInit() {
|
||||
this.current = 1
|
||||
this.pages = 2
|
||||
this.getList()
|
||||
},
|
||||
getList() {
|
||||
console.log(4)
|
||||
if (this.current > this.pages) return
|
||||
this.$http.post(`/app/appintegraluserapply/listByGridMember`, null, {
|
||||
...this.search,
|
||||
current: this.current,
|
||||
size: 10,
|
||||
girdId: this.user.girdId,
|
||||
applyItemId: this.search.type,
|
||||
createTimeStart: this.search.startTime,
|
||||
createTimeEnd: this.search.endTime
|
||||
console.log(5)
|
||||
this.$http.post(`/app/appintegraluserapply/listByGridMember`,null, {
|
||||
params:{
|
||||
...this.search,
|
||||
current: this.current,
|
||||
size: 10,
|
||||
girdId: this.user.girdId,
|
||||
applyItemId: this.search.type,
|
||||
createTimeStart: this.search.startTime,
|
||||
createTimeEnd: this.search.endTime
|
||||
}
|
||||
}).then(res=> {
|
||||
if(res?.data) {
|
||||
res.data.records.map((item) => {
|
||||
@@ -119,6 +124,7 @@ export default {
|
||||
})
|
||||
},
|
||||
dateConfirm(e) {
|
||||
console.log(123)
|
||||
this.search.startTime = e.startDate
|
||||
this.search.endTime = e.endDate
|
||||
this.getListInit()
|
||||
|
||||
Reference in New Issue
Block a user