Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hls-xcmg-vue-app
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xugong
hls-xcmg-vue-app
Commits
95d91673
Commit
95d91673
authored
Mar 27, 2023
by
白日依山山山
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
租后-合同查询-删除“撤销”Tab
parent
210ed296
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
18 deletions
+18
-18
dev.env.js
config/dev.env.js
+1
-1
contract-records.vue
src/pages/contractInquire/contract-records.vue
+17
-17
No files found.
config/dev.env.js
View file @
95d91673
...
...
@@ -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
"'
}
src/pages/contractInquire/contract-records.vue
View file @
95d91673
...
...
@@ -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
()
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment