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
2089edca
Commit
2089edca
authored
Feb 07, 2020
by
linxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add
parent
22a5400f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
8 deletions
+19
-8
dev.env.js
config/dev.env.js
+2
-2
creat-rent-info.vue
src/pages/contractCreate/creat-rent-info.vue
+17
-6
No files found.
config/dev.env.js
View file @
2089edca
...
@@ -8,9 +8,9 @@ module.exports = merge(prodEnv, {
...
@@ -8,9 +8,9 @@ module.exports = merge(prodEnv, {
debug
:
true
,
debug
:
true
,
isMobilePlatform
:
false
,
isMobilePlatform
:
false
,
loginPath
:
'"http://180.104.121.66:8088/oauth/token?client_id=client2&client_secret=secret&grant_type=password&username=appadmin&password=" '
,
loginPath
:
'"http://180.104.121.66:8088/oauth/token?client_id=client2&client_secret=secret&grant_type=password&username=appadmin&password=" '
,
basePath
:
'"http://180.104.121.66:8088/r/api/interface?sysName=XCMG_
DEV
&apiName="'
,
basePath
:
'"http://180.104.121.66:8088/r/api/interface?sysName=XCMG_
UAT
&apiName="'
,
rootPath
:
'"http://180.104.121.66:8088/r/api"'
,
rootPath
:
'"http://180.104.121.66:8088/r/api"'
,
filePath
:
'"http://180.104.121.66:8088/r/api/app/fileViewSvc?sysName=XCMG_
DEV
&apiName=file_view&"'
,
filePath
:
'"http://180.104.121.66:8088/r/api/app/fileViewSvc?sysName=XCMG_
UAT
&apiName=file_view&"'
,
ocrPath
:
'"http://180.104.121.66:8088/r/api"'
,
ocrPath
:
'"http://180.104.121.66:8088/r/api"'
,
appId
:
'"com.xcmg.app.dev"'
,
appId
:
'"com.xcmg.app.dev"'
,
currentVersion
:
'"1.7.9"'
,
currentVersion
:
'"1.7.9"'
,
...
...
src/pages/contractCreate/creat-rent-info.vue
View file @
2089edca
...
@@ -399,6 +399,7 @@ export default {
...
@@ -399,6 +399,7 @@ export default {
keyWordProduct
(
newVal
,
oldVal
)
{
keyWordProduct
(
newVal
,
oldVal
)
{
this
.
searchProduct
()
this
.
searchProduct
()
},
},
'saveInfo.equip_price'
()
{
'saveInfo.equip_price'
()
{
this
.
saveInfo
.
down_payment
=
(
this
.
saveInfo
.
equip_price
*
this
.
saveInfo
.
down_payment_ratio_n
.
replace
(
'%'
,
''
)
/
100
).
toFixed
(
2
)
this
.
saveInfo
.
down_payment
=
(
this
.
saveInfo
.
equip_price
*
this
.
saveInfo
.
down_payment_ratio_n
.
replace
(
'%'
,
''
)
/
100
).
toFixed
(
2
)
this
.
saveInfo
.
deposit
=
(
this
.
saveInfo
.
equip_price
*
this
.
saveInfo
.
deposit_ratio_n
.
replace
(
'%'
,
''
)
/
100
).
toFixed
(
2
)
this
.
saveInfo
.
deposit
=
(
this
.
saveInfo
.
equip_price
*
this
.
saveInfo
.
deposit_ratio_n
.
replace
(
'%'
,
''
)
/
100
).
toFixed
(
2
)
...
@@ -429,6 +430,7 @@ export default {
...
@@ -429,6 +430,7 @@ export default {
vm
.
divisionLists
=
[]
vm
.
divisionLists
=
[]
vm
.
pagenum
=
1
vm
.
pagenum
=
1
vm
.
pagenumPolicy
=
1
vm
.
pagenumPolicy
=
1
vm
.
setTime
()
vm
.
fromPage
=
window
.
localStorage
.
fromPage
vm
.
fromPage
=
window
.
localStorage
.
fromPage
vm
.
saveInfo
.
project_id
=
window
.
localStorage
.
project_id
// 重新赋值,防止缓存
vm
.
saveInfo
.
project_id
=
window
.
localStorage
.
project_id
// 重新赋值,防止缓存
// vm.productInfo['project_id'] = window.localStorage.project_id // 重新赋值,防止缓存
// vm.productInfo['project_id'] = window.localStorage.project_id // 重新赋值,防止缓存
...
@@ -443,7 +445,6 @@ export default {
...
@@ -443,7 +445,6 @@ export default {
if
(
vm
.
fromPage
===
'sale'
)
{
if
(
vm
.
fromPage
===
'sale'
)
{
vm
.
fromList
=
false
vm
.
fromList
=
false
vm
.
isReadOnly
=
false
vm
.
isReadOnly
=
false
vm
.
rentInfoQuery
()
}
else
if
(
vm
.
fromPage
===
'list'
)
{
}
else
if
(
vm
.
fromPage
===
'list'
)
{
if
(
window
.
localStorage
.
contractReadonly
===
'true'
)
{
if
(
window
.
localStorage
.
contractReadonly
===
'true'
)
{
vm
.
isReadOnly
=
true
vm
.
isReadOnly
=
true
...
@@ -454,7 +455,7 @@ export default {
...
@@ -454,7 +455,7 @@ export default {
vm
.
rentInfoQuery
()
vm
.
rentInfoQuery
()
}
}
Object
.
keys
(
vm
.
saveInfo
).
forEach
(
i
=>
{
// 置空saveInfo
Object
.
keys
(
vm
.
saveInfo
).
forEach
(
i
=>
{
// 置空saveInfo
if
(
i
!==
'project_id'
&&
i
!==
'bp_name'
)
{
if
(
i
!==
'project_id'
&&
i
!==
'bp_name'
&&
i
!==
'lease_start_date'
)
{
vm
.
saveInfo
[
i
]
=
''
vm
.
saveInfo
[
i
]
=
''
}
}
})
})
...
@@ -796,13 +797,23 @@ export default {
...
@@ -796,13 +797,23 @@ export default {
}
}
}
}
}, */
}, */
setTime
()
{
if
(
!
this
.
saveInfo
.
lease_start_date
)
{
let
signDate
=
new
Date
(
window
.
localStorage
.
getItem
(
'signDate'
).
replace
(
/-/
,
'/'
))
let
iToDay
=
signDate
.
getDate
()
let
iToMon
=
signDate
.
getMonth
()
let
iToYear
=
signDate
.
getFullYear
()
let
newDay
=
new
Date
(
iToYear
,
iToMon
,
(
iToDay
+
30
))
this
.
saveInfo
.
lease_start_date
=
`
${
newDay
.
getFullYear
()}
-
${(
newDay
.
getMonth
()).
length
===
2
?
newDay
.
getMonth
()
:
'0'
+
newDay
.
getMonth
()}
-
${(
newDay
.
getDate
()).
length
===
2
?
newDay
.
getDate
()
:
'0'
+
newDay
.
getDate
()}
`
}
},
showTime
(
format
)
{
// 预计付款日
showTime
(
format
)
{
// 预计付款日
let
vm
=
this
let
vm
=
this
let
signDate
=
new
Date
(
window
.
localStorage
.
getItem
(
'signDate'
).
replace
(
/-/
,
'/'
))
let
signDate
=
new
Date
(
window
.
localStorage
.
getItem
(
'signDate'
).
replace
(
/-/
,
'/'
))
var
iToDay
=
signDate
.
getDate
()
let
iToDay
=
signDate
.
getDate
()
var
iToMon
=
signDate
.
getMonth
()
let
iToMon
=
signDate
.
getMonth
()
var
iToYear
=
signDate
.
getFullYear
()
let
iToYear
=
signDate
.
getFullYear
()
var
newDay
=
new
Date
(
iToYear
,
iToMon
,
(
iToDay
+
30
))
let
newDay
=
new
Date
(
iToYear
,
iToMon
,
(
iToDay
+
30
))
hlsPopup
.
showTime
({
hlsPopup
.
showTime
({
nowDate
:
newDay
.
format
(
'yyyy-MM-dd'
),
nowDate
:
newDay
.
format
(
'yyyy-MM-dd'
),
format
:
format
,
format
:
format
,
...
...
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