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
af1385df
Commit
af1385df
authored
Nov 19, 2019
by
786817560
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ren' into develop
parents
45c25f93
e4d9dd6c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
123 additions
and
28 deletions
+123
-28
contract-records.vue
src/pages/contractInquire/contract-records.vue
+42
-3
repay-detail.vue
src/pages/contractInquire/repay-detail.vue
+4
-4
contract-detail.vue
src/pages/contractSigning/contract-detail.vue
+3
-18
contract-signing.vue
src/pages/contractSigning/contract-signing.vue
+38
-2
product-list.vue
src/pages/productQuery/product-list.vue
+36
-1
No files found.
src/pages/contractInquire/contract-records.vue
View file @
af1385df
<!--
* @Author: your name
* @Date: 2019-10-31 09:49:57
* @LastEditTime: 2019-11-18 1
5:28:4
9
* @LastEditTime: 2019-11-18 1
7:23:2
9
* @LastEditors: Please set LastEditors
* @Description: 合同查询--记录
* @FilePath:
...
...
@@ -32,7 +32,7 @@
<div
class=
"search"
>
<img
src=
"@/assets/contractInquire/search.png"
alt=
""
>
<input
type=
"text"
placeholder=
"请输入合同号/承租人名称"
>
<input
v-model=
"searchInput"
type=
"text"
placeholder=
"请输入合同号/承租人名称"
>
</div>
</div>
...
...
@@ -42,6 +42,7 @@
ref=
"scroll"
:updateData=
"[lists]"
:pullUp=
"true"
@
pullingUp=
"loadMore"
>
<div
class=
"pay-content"
>
<div
v-for=
"(item,index) in lists"
:key=
"index"
class=
"contract-item"
>
...
...
@@ -205,6 +206,8 @@ export default {
unRepayLists
:
[],
// 待还款
repayingLists
:
[],
// 还款中
repayedLists
:
[],
// 已结清
pagenum
:
1
,
searchInput
:
''
,
}
},
...
...
@@ -237,6 +240,9 @@ export default {
let
url
=
$config
.
basePath
+
'con_contract_list'
let
param
=
{
user_phone
:
window
.
localStorage
.
user_phone
,
searchInput
:
vm
.
searchInput
,
pagenum
:
vm
.
pagenum
,
pagesize
:
10
,
}
vm
.
hlsPopup
.
showLoading
(
'数据加载中'
)
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
...
...
@@ -252,7 +258,7 @@ export default {
vm
.
unRepayLists
=
res
.
lists
.
filter
(
item
=>
item
.
contract_status_n
===
'首付还款中'
)
// 待还款
vm
.
repayingLists
=
res
.
lists
.
filter
(
item
=>
item
.
contract_status_n
===
'还款中'
)
// 还款中
vm
.
repayedLists
=
res
.
lists
.
filter
(
item
=>
item
.
contract_status_n
===
'已结清'
)
// 已结清
if
(
res
.
lists
.
length
>
0
&&
res
.
lists
.
length
<
10
)
{
if
(
res
.
lists
.
length
>
=
0
&&
res
.
lists
.
length
<
10
)
{
vm
.
$refs
.
scroll
.
update
(
true
)
}
}
else
{
...
...
@@ -260,6 +266,39 @@ export default {
}
})
},
loadMore
()
{
let
vm
=
this
vm
.
pagenum
++
let
url
=
$config
.
basePath
+
'con_contract_list'
let
param
=
{
user_phone
:
window
.
localStorage
.
user_phone
,
searchInput
:
vm
.
searchInput
,
pagenum
:
vm
.
pagenum
,
pagesize
:
10
,
}
vm
.
hlsPopup
.
showLoading
(
'数据加载中'
)
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
// if (res.lists.length === 0) {
// vm.data = null
// } else {
// vm.data = 1
// }
console
.
log
(
'........'
,
res
.
lists
)
// vm.lists = res.lists
// vm.unSignedLists = res.lists.filter(item => item.contract_status_n === '待首付') // 待签约
// vm.unRepayLists = res.lists.filter(item => item.contract_status_n === '首付还款中') // 待还款
// vm.repayingLists = res.lists.filter(item => item.contract_status_n === '还款中') // 还款中
// vm.repayedLists = res.lists.filter(item => item.contract_status_n === '已结清') // 已结清
// if (res.lists.length > 0 && res.lists.length
<
10
)
{
// vm.$refs.scroll.update(true)
// }
}
else
{
hlsPopup
.
showLongCenter
(
res
.
message
)
}
})
},
},
}
</
script
>
...
...
src/pages/contractInquire/repay-detail.vue
View file @
af1385df
<!--
* @Author: your name
* @Date: 2019-10-31 09:49:57
* @LastEditTime: 2019-11-18 1
5:55:12
* @LastEditTime: 2019-11-18 1
6:31:19
* @LastEditors: Please set LastEditors
* @Description: 合同查询--明细
* @FilePath:
...
...
@@ -73,7 +73,7 @@
</div>
</div>
<div
slot=
"content"
>
<span
v-if=
"item.overdue_times"
:class=
"['status','red']"
>
逾期
{{
item
.
overdue_t
imes
}}
期
</span>
<span
v-if=
"item.overdue_times"
:class=
"['status','red']"
>
逾期
{{
totalT
imes
}}
期
</span>
<div
class=
"plan"
@
click=
"toRepayPlans(item.contract_id)"
>
<img
src=
"@/assets/contractRepayment/plan.png"
alt=
""
>
<span>
还款计划
</span>
...
...
@@ -101,8 +101,8 @@ export default {
computed
:
{
totalTimes
()
{
let
num
=
0
for
(
let
item
in
this
.
lists
)
{
num
+=
item
.
overdue_times
for
(
let
item
of
this
.
lists
)
{
num
+=
Number
(
item
.
overdue_times
)
}
return
num
},
...
...
src/pages/contractSigning/contract-detail.vue
View file @
af1385df
<!--
* @Author: your name
* @Date: 2019-09-29 10:02:11
* @LastEditTime: 2019-11-1
5 15:57:14
* @LastEditTime: 2019-11-1
9 09:07:15
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
-->
...
...
@@ -55,7 +55,7 @@
<Personal
v-if=
"!bp_flag"
:baseInfo=
"baseInfo"
/>
<div
class=
"equipment-list"
>
担保人信息
<span
v-if=
"guarantorInfo.length === 0"
>
(无)
</span></div>
<list-item
v-if=
"guarantorInfo.length
&& guarantorInfo[0].bp_class === 'NP'
"
:item-height=
"76"
>
<list-item
v-if=
"guarantorInfo.length"
:item-height=
"76"
>
<item
v-for=
"(item,index) in guarantorInfo"
:key=
"index"
>
<div
slot=
"name"
>
<span
class=
"name-box"
>
{{
index
+
1
}}
</span>
...
...
@@ -66,26 +66,11 @@
<img
src=
"@/assets/intoApproval/introduce.png"
>
<span
:title=
"item.bp_name"
>
{{
item
.
bp_name
}}
</span>
<br
>
<span>
{{
item
.
id_card_no
}}
</span>
<span>
{{
item
.
bp_class
===
'NP'
?
item
.
id_card_no
:
item
.
organization_code
}}
</span>
</div>
</item>
</list-item>
<list-item
v-if=
"guarantorInfo.length && guarantorInfo[0].bp_class === 'ORG'"
:item-height=
"76"
>
<item
v-for=
"(item,index) in guarantorInfo"
:key=
"index"
>
<div
slot=
"name"
>
<span
class=
"name-box"
>
{{
index
+
1
}}
</span>
<span
class=
"name"
>
担保人
{{
index
+
1
}}
姓名
</span>
<span
class=
"card-num"
>
证件号
</span>
</div>
<div
slot=
"content"
class=
"right"
>
<img
src=
"@/assets/intoApproval/introduce.png"
>
<span
:title=
"item.bp_name"
>
{{
item
.
bp_name
}}
</span>
<br
>
<span>
{{
item
.
organization_code
}}
</span>
</div>
</item>
</list-item>
<div
class=
"alert"
>
<div
class=
"alert-content"
>
<div
class=
"title"
>
...
...
src/pages/contractSigning/contract-signing.vue
View file @
af1385df
<!--
* @Author: your name
* @Date: 2019-09-29 10:02:11
* @LastEditTime: 2019-11-1
5 09:09:0
2
* @LastEditTime: 2019-11-1
8 16:25:5
2
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
-->
...
...
@@ -19,7 +19,7 @@
</div>
<div
class=
"hinput"
>
<div
class=
"search-box"
>
<input
type=
"text"
placeholder=
"请输入合同号/承租人名称"
>
<input
v-model=
"searchInput"
type=
"text"
placeholder=
"请输入合同号/承租人名称"
>
<img
src=
"@/assets/constractSigning/search.png"
alt=
""
style=
"width:18px"
>
</div>
</div>
...
...
@@ -30,6 +30,7 @@
ref=
"scroll"
:updateData=
"[submitLists]"
:pullUp=
"true"
@
pullingUp=
"loadMore"
>
<div
class=
"wrap"
>
<div
v-for=
"(item,index) in submitLists"
:key=
"index"
class=
"contract-lists"
>
...
...
@@ -57,6 +58,7 @@
ref=
"scrollList"
:updateData=
"[approvedLists]"
:pullUp=
"true"
@
pullingUp=
"loadMore"
>
<div
class=
"wrap"
>
<div
v-for=
"(item,index) in approvedLists"
:key=
"index"
class=
"contract-lists"
>
...
...
@@ -90,6 +92,8 @@ export default {
data
()
{
return
{
num
:
1
,
pagenum
:
1
,
searchInput
:
''
,
check1
:
Check1
,
check2
:
Check2
,
uncheck1
:
unCheck1
,
...
...
@@ -125,11 +129,43 @@ export default {
let
url
=
$config
.
basePath
+
'prj_confirm_list_query'
let
param
=
{
user_phone
:
window
.
localStorage
.
user_phone
,
pagesize
:
10
,
pagenum
:
vm
.
pagenum
,
searchInput
:
vm
.
searchInput
,
}
vm
.
hlsPopup
.
showLoading
(
'数据加载中'
)
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
console
.
log
(
res
.
lists
)
vm
.
submitLists
=
res
.
lists
.
filter
(
item
=>
item
.
confirm_status
===
'SUBMIT'
)
vm
.
approvedLists
=
res
.
lists
.
filter
(
item
=>
item
.
confirm_status
===
'APPROVED'
)
if
(
vm
.
submitLists
.
length
>
0
&&
vm
.
submitLists
.
length
<
10
)
{
vm
.
$refs
.
scroll
.
update
(
true
)
}
if
(
vm
.
approvedLists
.
length
>
0
&&
vm
.
approvedLists
.
length
<
10
)
{
vm
.
$refs
.
scrollList
.
update
(
true
)
}
}
else
{
hlsPopup
.
showLongCenter
(
res
.
message
)
}
})
},
loadMore
()
{
let
vm
=
this
let
url
=
$config
.
basePath
+
'prj_confirm_list_query'
let
param
=
{
user_phone
:
window
.
localStorage
.
user_phone
,
pagesize
:
10
,
pagenum
:
vm
.
pagenum
+
1
,
searchInput
:
'1'
,
}
vm
.
hlsPopup
.
showLoading
(
'数据加载中'
)
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
console
.
log
(
'.....'
,
res
.
lists
)
vm
.
submitLists
=
res
.
lists
.
filter
(
item
=>
item
.
confirm_status
===
'SUBMIT'
)
vm
.
approvedLists
=
res
.
lists
.
filter
(
item
=>
item
.
confirm_status
===
'APPROVED'
)
if
(
vm
.
submitLists
.
length
>
0
&&
vm
.
submitLists
.
length
<
10
)
{
...
...
src/pages/productQuery/product-list.vue
View file @
af1385df
...
...
@@ -14,7 +14,7 @@
<h-content>
<div
class=
"hinput"
>
<div
class=
"search-box"
>
<input
type=
"text"
placeholder=
"请输入经销商/产品名称/参数项"
>
<input
v-model=
"searchInput"
type=
"text"
placeholder=
"请输入经销商/产品名称/参数项"
>
<img
src=
"@/assets/distributorSign/search.png"
alt=
""
>
</div>
</div>
...
...
@@ -22,6 +22,7 @@
ref=
"scroll"
:updateData=
"[lists]"
:pullUp=
"true"
@
pullingUp=
"loadMore"
>
<div
class=
"division-box"
>
...
...
@@ -58,6 +59,8 @@ export default {
data
()
{
return
{
lists
:
[],
pagenum
:
2
,
searchInput
:
''
,
}
},
computed
:
{},
...
...
@@ -75,6 +78,9 @@ export default {
let
param
=
{
division
:
window
.
sessionStorage
.
division
,
user_phone
:
window
.
localStorage
.
user_phone
,
searchInput
:
vm
.
searchInput
,
pagenum
:
vm
.
pagenum
,
pagesize
:
10
,
}
vm
.
hlsPopup
.
showLoading
(
'数据加载中'
)
vm
.
$post
(
url
,
param
).
then
(
function
(
res
)
{
...
...
@@ -94,6 +100,35 @@ export default {
}
})
},
loadMore
()
{
let
vm
=
this
vm
.
pagenum
++
let
url
=
$config
.
basePath
+
'prd_product_list'
let
param
=
{
division
:
window
.
sessionStorage
.
division
,
user_phone
:
window
.
localStorage
.
user_phone
,
searchInput
:
vm
.
searchInput
,
pagenum
:
vm
.
pagenum
,
pagesize
:
10
,
}
vm
.
hlsPopup
.
showLoading
(
'数据加载中'
)
vm
.
$post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
console
.
log
(
'...........'
,
res
.
lists
)
// vm.lists = res.lists
// res.lists.forEach(item => {
// item['url'] = process.env.filePath + 'attachment_id=' + item.product_attachment_id + '&access_token=' + window.localStorage.access_token
// })
// if (res.lists.length > 0 && res.lists.length
<
10
)
{
// vm.$refs.scroll.update(true)
// }
}
else
{
hlsPopup
.
showLongCenter
(
res
.
message
)
}
})
},
// val:产品id, status: 收藏状态
goDetailed
(
val
,
status
,
bp_id
)
{
window
.
sessionStorage
.
setItem
(
'collect_status'
,
status
)
...
...
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