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