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
9692baf1
Commit
9692baf1
authored
Nov 18, 2019
by
linxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed
parent
037b54a0
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
67 additions
and
14 deletions
+67
-14
index.js
config/index.js
+1
-1
confirm-list.vue
src/pages/carConfirm/confirm-list.vue
+22
-4
start-list.vue
src/pages/contractStart/start-list.vue
+23
-5
pay-entry.vue
src/pages/pay/firstPay/pay-entry.vue
+2
-2
pay-entry.vue
src/pages/pay/marginPay/pay-entry.vue
+2
-2
invoiceInfo.vue
src/pages/userBind/np/invoiceInfo.vue
+8
-0
naturePerson.vue
src/pages/userBind/np/naturePerson.vue
+1
-0
enterprise.vue
src/pages/userBind/org/enterprise.vue
+1
-0
invoiceInfo.vue
src/pages/userBind/org/invoiceInfo.vue
+7
-0
No files found.
config/index.js
View file @
9692baf1
...
...
@@ -23,7 +23,7 @@ module.exports = {
proxyTable
:
{},
// Various Dev Server settings
host
:
'
localhost
'
,
// can be overwritten by process.env.HOST
host
:
'
192.168.137.1
'
,
// can be overwritten by process.env.HOST
port
:
8080
,
// can be overwritten by process.env.PORT, if port is in use, a free one will be determined
autoOpenBrowser
:
false
,
errorOverlay
:
true
,
...
...
src/pages/carConfirm/confirm-list.vue
View file @
9692baf1
...
...
@@ -8,13 +8,14 @@
</h-header>
<Tab
@
getTabNum=
"getTabNum"
/>
<div
class=
"search"
>
<input
placeholder=
"请输入合同号/产品线/承租人名称"
>
<input
v-model=
"keyWord"
placeholder=
"请输入合同号/产品线/承租人名称"
>
</div>
<h-content
class=
"my-content"
>
<scroll
ref=
"scroll"
:updateData=
"[showList]"
:pullUp=
"true"
@
pullingUp=
"getList"
>
<div
v-for=
"(item,index) in showList"
:key=
"index"
class=
"item"
@
click=
"changePage(item)"
>
<div
class=
"left"
>
...
...
@@ -58,6 +59,8 @@ export default {
data
()
{
return
{
tabNum
:
0
,
keyWord
:
''
,
pagenum
:
1
,
lists
:
[],
showList
:
[],
undo
:
[],
...
...
@@ -115,16 +118,31 @@ export default {
let
url
=
process
.
env
.
basePath
+
'car_confirm_list_query'
let
param
=
{
user_phone
:
window
.
localStorage
.
getItem
(
'user_phone'
),
pagesize
:
10
,
pagenum
:
vm
.
pagenum
,
searchInput
:
vm
.
keyWord
,
}
hlsPopup
.
showLoading
(
'请稍候'
)
vm
.
$post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
// let returnData = []
// returnData = res.lists
// if (returnData.length === 0) {
// vm.$refs.scroll.update(true)
// } else if (returnData.length > 0 && returnData.length
<
10
)
{
// vum.forEach(returnData, function (data, index, array) {
// vm.lists.push(array[index])
// })
// vm.$refs.scroll.update(true)
// } else if (returnData.length === 10) {
// vum.forEach(returnData, function (data, index, array) {
// vm.lists.push(array[index])
// })
// vm.$refs.scroll.update(false)
// }
vm
.
lists
=
res
.
lists
vm
.
selectShowList
()
if
(
res
.
lists
.
length
>=
0
&&
res
.
lists
.
length
<
10
)
{
vm
.
$refs
.
scroll
.
update
(
true
)
}
}
else
{
hlsPopup
.
showLongCenter
(
res
.
message
)
}
...
...
src/pages/contractStart/start-list.vue
View file @
9692baf1
...
...
@@ -8,10 +8,10 @@
</h-header>
<Tab
:fatherTabNum =
"tabNum"
@
getTabNum=
"getTabNum"
/>
<div
class=
"search"
>
<input
placeholder=
"请输入合同号/产品线/承租人名称"
>
<input
v-model=
"keyWord"
placeholder=
"请输入合同号/产品线/承租人名称"
>
</div>
<h-content
class=
"my-content"
>
<scroll
ref=
"scroll"
:updateData=
"[
showList
]"
:pullUp=
"true"
>
<scroll
ref=
"scroll"
:updateData=
"[
lists
]"
:pullUp=
"true"
>
<div
v-for=
"(item,index) in showList"
:key=
"index"
...
...
@@ -62,6 +62,8 @@ export default {
data
()
{
return
{
tabNum
:
0
,
keyWord
:
''
,
pagenum
:
1
,
lists
:
[],
showList
:
[],
undo
:
[],
...
...
@@ -127,16 +129,32 @@ export default {
let
url
=
process
.
env
.
basePath
+
'car_apply_list_query'
let
param
=
{
user_phone
:
window
.
localStorage
.
getItem
(
'user_phone'
),
pagesize
:
10
,
pagenum
:
vm
.
pagenum
,
searchInput
:
vm
.
keyWord
,
}
hlsPopup
.
showLoading
(
'请稍候'
)
vm
.
$post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
// vm.pagenum += 1
// let returnData = []
// returnData = res.lists
// if (returnData.length === 0) {
// vm.$refs.scroll.update(true)
// } else if (returnData.length > 0 && returnData.length
<
10
)
{
// vum.forEach(returnData, function (data, index, array) {
// vm.lists.push(array[index])
// })
// vm.$refs.scroll.update(true)
// } else if (returnData.length === 10) {
// vum.forEach(returnData, function (data, index, array) {
// vm.lists.push(array[index])
// })
// vm.$refs.scroll.update(false)
// }
vm
.
lists
=
res
.
lists
vm
.
selectShowList
()
if
(
res
.
lists
.
length
>=
0
&&
res
.
lists
.
length
<
10
)
{
vm
.
$refs
.
scroll
.
update
(
true
)
}
}
else
{
hlsPopup
.
showLongCenter
(
res
.
message
)
}
...
...
src/pages/pay/firstPay/pay-entry.vue
View file @
9692baf1
...
...
@@ -94,10 +94,10 @@
<span>
¥
{{
money
|
currency
}}
</span>
</div>
<div
class=
"interest"
>
<span>
本次交易收取
{{
rate
}}
%
服务
费
</span>
<span>
本次交易收取
{{
rate
}}
%
手续
费
</span>
</div>
<div
class=
"info-item"
>
<span>
服务
费
</span>
<span>
手续
费
</span>
<span>
+¥
{{
serviceCharge
|
currency
}}
</span>
</div>
<div
class=
"info-item"
@
click=
"show=true"
>
...
...
src/pages/pay/marginPay/pay-entry.vue
View file @
9692baf1
...
...
@@ -94,10 +94,10 @@
<span>
¥
{{
money
|
currency
}}
</span>
</div>
<div
class=
"interest"
>
<span>
本次交易收取
{{
rate
}}
%
服务
费
</span>
<span>
本次交易收取
{{
rate
}}
%
手续
费
</span>
</div>
<div
class=
"info-item"
>
<span>
服务
费
</span>
<span>
手续
费
</span>
<span>
+¥
{{
serviceCharge
|
currency
}}
</span>
</div>
<div
class=
"info-item"
@
click=
"show=true"
>
...
...
src/pages/userBind/np/invoiceInfo.vue
View file @
9692baf1
...
...
@@ -213,4 +213,12 @@ export default {
input
::placeholder
{
color
:
#B4B4B5
;
}
textarea
::placeholder
{
color
:
#b4b4b5
;
}
textarea
{
text-align
:
right
;
color
:
#666
;
}
</
style
>
src/pages/userBind/np/naturePerson.vue
View file @
9692baf1
...
...
@@ -1468,6 +1468,7 @@ export default {
}
textarea {
text-align: right;
color:#666;
}
// .compute{
// display:block;
...
...
src/pages/userBind/org/enterprise.vue
View file @
9692baf1
...
...
@@ -1894,6 +1894,7 @@ export default {
textarea {
// height: 28px;
text-align: right;
color: #666;
// padding-top:16px;
}
.tax{
...
...
src/pages/userBind/org/invoiceInfo.vue
View file @
9692baf1
...
...
@@ -219,4 +219,11 @@ input::placeholder{
.font-color
{
color
:
#656464
;
}
textarea
::placeholder
{
color
:
#b4b4b5
;
}
textarea
{
text-align
:
right
;
color
:
#666
;
}
</
style
>
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