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
0744c914
Commit
0744c914
authored
Dec 18, 2023
by
wjc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
融租方案跳转
parent
f11e6654
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1041 additions
and
930 deletions
+1041
-930
currencyInput.vue
src/components/currencyInput.vue
+17
-11
contract-detail.vue
src/pages/contractSigning/contract-detail.vue
+939
-838
contract-signing.vue
src/pages/contractSigning/contract-signing.vue
+85
-81
No files found.
src/components/currencyInput.vue
View file @
0744c914
...
@@ -25,6 +25,10 @@ export default {
...
@@ -25,6 +25,10 @@ export default {
// type: Boolean,
// type: Boolean,
// default: true,
// default: true,
// },
// },
readonly
:
{
type
:
Boolean
,
default
:
false
,
},
content
:
{
content
:
{
type
:
String
,
type
:
String
,
default
:
''
,
default
:
''
,
...
@@ -59,22 +63,24 @@ export default {
...
@@ -59,22 +63,24 @@ export default {
methods
:
{
methods
:
{
keyboradShow
()
{
keyboradShow
()
{
let
vm
=
this
let
vm
=
this
hlsPopup
.
showNumberKeyborad
({
if
(
!
vm
.
readonly
)
{
title
:
'数字键盘'
,
hlsPopup
.
showNumberKeyborad
({
keyDown
:
(
text
)
=>
{
title
:
'数字键盘'
,
vm
.
onInput
(
text
)
keyDown
:
(
text
)
=>
{
},
vm
.
onInput
(
text
)
keyDelete
:
()
=>
{
},
vm
.
onDelete
()
keyDelete
:
()
=>
{
},
vm
.
onDelete
()
})
},
})
}
},
},
onInput
(
value
)
{
onInput
(
value
)
{
// if (this.disable) return
// if (this.disable) return
if
(
this
.
value
===
'0'
||
this
.
value
===
'0.00'
)
{
if
(
this
.
value
===
'0'
||
this
.
value
===
'0.00'
)
{
this
.
newVal
=
''
this
.
newVal
=
''
this
.
newVal
+=
(
''
+
value
)
this
.
newVal
+=
(
''
+
value
)
}
else
{
}
else
{
this
.
newVal
=
this
.
value
this
.
newVal
=
this
.
value
if
(
this
.
newVal
.
includes
(
'.'
)
&&
value
===
'.'
)
{
if
(
this
.
newVal
.
includes
(
'.'
)
&&
value
===
'.'
)
{
}
else
{
}
else
{
...
...
src/pages/contractSigning/contract-detail.vue
View file @
0744c914
This diff is collapsed.
Click to expand it.
src/pages/contractSigning/contract-signing.vue
100755 → 100644
View file @
0744c914
This diff is collapsed.
Click to expand it.
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