Commit 9d63be03 authored by 786817560's avatar 786817560

''

parent 7872493e
......@@ -8,7 +8,7 @@
</h-header>
<Tab :fatherTabNum="tabNum" @getTabNum="getTabNum" />
<div class="search has-header">
<input placeholder="请输入进件号/承租人名称" >
<input v-model="searchInput" placeholder="请输入进件号/承租人名称" >
</div>
<scroll
ref="scroll" :updateData="[showLists]" :pullUp="true" class="scroll"
......@@ -36,7 +36,7 @@
</li>
<li>
预约面签时间
<span class="number">{{ dateConverse(item.apply_date) }}</span>
<span class="number">{{ item.apply_date }}</span>
</li>
<li>
<p v-if="item.interview_status ==='APPROVING'" class="to-unSign" @click="toSign">
......@@ -112,19 +112,19 @@ export default {
},
created () {},
methods: {
selectShowList () {
let vm = this
vm.undo = []
vm.done = []
vm.tabNum = 0
vm.undo = vm.lists.filter(i => {
return i.leases_status === 'N'
})
vm.done = vm.lists.filter(i => {
return i.leases_status === 'Y'
})
this.showList = this.undo
},
// selectShowList () {
// let vm = this
// vm.undo = []
// vm.done = []
// vm.tabNum = 0
// vm.undo = vm.lists.filter(i => {
// return i.leases_status === 'N'
// })
// vm.done = vm.lists.filter(i => {
// return i.leases_status === 'Y'
// })
// this.showList = this.undo
// },
getTabNum (i) {
this.tabNum = i
this.$refs.scroll.update(false)
......@@ -252,6 +252,7 @@ export default {
pagesize: 10,
searchInput: vm.searchInput,
pagenum: vm.submitPagenum,
interview_status: 'APPROVING',
user_phone: window.localStorage.getItem('user_phone'),
}
hlsPopup.showLoading('请稍候')
......@@ -283,6 +284,7 @@ export default {
pagesize: 10,
searchInput: vm.searchInput,
pagenum: vm.approvedPagenum,
interview_status: 'RESERVED',
user_phone: window.localStorage.getItem('user_phone'),
}
hlsPopup.showLoading('请稍候')
......@@ -324,7 +326,7 @@ export default {
user_phone: window.localStorage.user_phone,
pagesize: 10,
pagenum: vm.submitPagenum,
// confirm_status: 'SUBMIT',
interview_status: 'APPROVING',
searchInput: vm.searchInput,
}
vm.hlsPopup.showLoading('请稍后')
......@@ -354,6 +356,7 @@ export default {
user_phone: window.localStorage.user_phone,
pagesize: 10,
pagenum: vm.approvedPagenum,
interview_status: 'RESERVED',
// confirm_status: 'APPROVED',
searchInput: vm.searchInput,
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment