Commit 9d63be03 authored by 786817560's avatar 786817560

''

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