Commit 95d91673 authored by 白日依山山山's avatar 白日依山山山

租后-合同查询-删除“撤销”Tab

parent 210ed296
......@@ -11,5 +11,5 @@ module.exports = {
ocrPath:'"http://180.104.121.66:8088/r/api"',
fileUploadSvcPath:'"http://180.104.121.66:8088/r/api/app/fileUploadSvc?sysName=XCMG_DEV&apiName="',
appId: '"com.xcmg.app.dev"',
currentVersion: '"3.7.6"'
currentVersion: '"3.7.7"'
}
......@@ -26,7 +26,7 @@
<p><span :class="{'selected':selected === 'two'}" @click="isSelected('two')">首付还款中</span></p>
<p><span :class="{'selected':selected === 'three'}" @click="isSelected('three')">还款中</span></p>
<p><span :class="{'selected':selected === 'four'}" @click="isSelected('four')">已结清</span></p>
<p><span :class="{'selected':selected === 'five'}" @click="isSelected('five')">撤销</span></p>
<!-- <p><span :class="{'selected':selected === 'five'}" @click="isSelected('five')">撤销</span></p> -->
<p><span :class="{'selected':selected === 'six'}" @click="isSelected('six')">其他</span></p>
</div>
......@@ -147,13 +147,13 @@ export default {
if (!this.repayed_flag) {
this.recordQuery('已结清', this.repayedLists)
}
} else if (this.selected === 'five') {
this.contract_status_n = '撤销'
// this.pageNum = this.repayed_pagenum
this.showLists = this.undoLists
if (!this.undo_flag) {
this.recordQuery('撤销', this.undoLists)
}
// } else if (this.selected === 'five') {
// this.contract_status_n = '撤销'
// // this.pageNum = this.repayed_pagenum
// this.showLists = this.undoLists
// if (!this.undo_flag) {
// this.recordQuery('撤销', this.undoLists)
// }
} else if (this.selected === 'six') {
this.contract_status_n = '其他'
// this.pageNum = this.repayed_pagenum
......@@ -385,9 +385,9 @@ export default {
} else if (vm.selected === 'four') {
vm.repayed_pagenum++
vm.pageNum = vm.repayed_pagenum
} else if (vm.selected === 'five') {
vm.undo_pagenum++
vm.pageNum = vm.undo_pagenum
// } else if (vm.selected === 'five') {
// vm.undo_pagenum++
// vm.pageNum = vm.undo_pagenum
} else if (vm.selected === 'six') {
vm.other_pagenum++
vm.pageNum = vm.other_pagenum
......@@ -432,8 +432,8 @@ export default {
vm.repayingLists.push(array[index])
} else if (vm.selected === 'four') {
vm.repayedLists.push(array[index])
} else if (vm.selected === 'five') {
vm.undoLists.push(array[index])
// } else if (vm.selected === 'five') {
// vm.undoLists.push(array[index])
} else if (vm.selected === 'six') {
vm.otherLists.push(array[index])
}
......@@ -451,8 +451,8 @@ export default {
vm.repayingLists.push(array[index])
} else if (vm.selected === 'four') {
vm.repayedLists.push(array[index])
} else if (vm.selected === 'five') {
vm.undoLists.push(array[index])
// } else if (vm.selected === 'five') {
// vm.undoLists.push(array[index])
} else if (vm.selected === 'six') {
vm.otherLists.push(array[index])
}
......@@ -477,8 +477,8 @@ export default {
this.searchRepaying()
} else if (vm.selected === 'four') {
this.searchRepayed()
} else if (vm.selected === 'five') {
this.searchUndo()
// } else if (vm.selected === 'five') {
// this.searchUndo()
} else if (vm.selected === 'six') {
this.searchOther()
}
......
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