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
acf90b99
Commit
acf90b99
authored
Dec 18, 2023
by
王建文
Browse files
Options
Browse Files
Download
Plain Diff
融资方案
parents
a2bb55d3
1b2c7b7a
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2845 additions
and
942 deletions
+2845
-942
currencyInput.vue
src/components/currencyInput.vue
+17
-11
contract-detail.vue
src/pages/contractSigning/contract-detail.vue
+951
-861
contract-new.vue
src/pages/contractSigning/contract-new.vue
+1795
-0
contract-signing.vue
src/pages/contractSigning/contract-signing.vue
+80
-70
index.js
src/router/index.js
+2
-0
No files found.
src/components/currencyInput.vue
View file @
acf90b99
...
...
@@ -25,6 +25,10 @@ export default {
// type: Boolean,
// default: true,
// },
readonly
:
{
type
:
Boolean
,
default
:
false
,
},
content
:
{
type
:
String
,
default
:
''
,
...
...
@@ -59,6 +63,7 @@ export default {
methods
:
{
keyboradShow
()
{
let
vm
=
this
if
(
!
vm
.
readonly
)
{
hlsPopup
.
showNumberKeyborad
({
title
:
'数字键盘'
,
keyDown
:
(
text
)
=>
{
...
...
@@ -68,13 +73,14 @@ export default {
vm
.
onDelete
()
},
})
}
},
onInput
(
value
)
{
// if (this.disable) return
if
(
this
.
value
===
'0'
||
this
.
value
===
'0.00'
)
{
if
(
this
.
value
===
'0'
||
this
.
value
===
'0.00'
)
{
this
.
newVal
=
''
this
.
newVal
+=
(
''
+
value
)
}
else
{
}
else
{
this
.
newVal
=
this
.
value
if
(
this
.
newVal
.
includes
(
'.'
)
&&
value
===
'.'
)
{
}
else
{
...
...
src/pages/contractSigning/contract-detail.vue
View file @
acf90b99
This diff is collapsed.
Click to expand it.
src/pages/contractSigning/contract-new.vue
0 → 100755
View file @
acf90b99
This diff is collapsed.
Click to expand it.
src/pages/contractSigning/contract-signing.vue
100755 → 100644
View file @
acf90b99
This diff is collapsed.
Click to expand it.
src/router/index.js
View file @
acf90b99
...
...
@@ -68,6 +68,7 @@ const EntryInfo = resolve => require.ensure([], () => { resolve(require('@/pages
const
ElectronicSign
=
resolve
=>
require
.
ensure
([],
()
=>
{
resolve
(
require
(
'@/pages/ContractSigning/electronic-sign'
))
},
'contractSigning'
)
/* const BodyCheck = resolve=>require.ensure([],()=>{resolve(require(@/pages/ContractSigning/body-check')) }, 'contractSigning') */
const
ContractRepayPlan
=
resolve
=>
require
.
ensure
([],
()
=>
{
resolve
(
require
(
'@/pages/ContractSigning/contract-repay-plan'
))
},
'contractSigning'
)
const
ContractNew
=
resolve
=>
require
.
ensure
([],
()
=>
{
resolve
(
require
(
'@/pages/ContractSigning/contract-new'
))
},
'contractSigning'
)
// 首付款支付
const
FirstPay
=
resolve
=>
require
.
ensure
([],
()
=>
{
resolve
(
require
(
'@/pages/pay/firstPay/first-pay'
))
},
'firstPay'
)
...
...
@@ -275,6 +276,7 @@ export default new Router({
{
path
:
'/entry-info'
,
component
:
EntryInfo
,
name
:
'EntryInfo'
,
meta
:
{
keepAlive
:
true
}},
{
path
:
'/contract-repay-plan'
,
component
:
ContractRepayPlan
,
name
:
'ContractRepayPlan'
,
meta
:
{
keepAlive
:
false
}},
{
path
:
'/electronic-sign'
,
component
:
ElectronicSign
,
name
:
'ElectronicSign'
,
meta
:
{
keepAlive
:
false
}},
{
path
:
'/contract-new'
,
component
:
ContractNew
,
name
:
'ContractNew'
,
meta
:
{
keepAlive
:
false
}},
// 首付款支付
{
path
:
'/first-pay'
,
component
:
FirstPay
,
name
:
'FirstPay'
,
meta
:
{
keepAlive
:
true
}},
{
path
:
'/pay-entry'
,
component
:
PayEntry
,
name
:
'PayEntry'
,
meta
:
{
keepAlive
:
true
}},
...
...
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