Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
Overview
Overview
Details
Activity
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
fukai
vue-gjjs
Commits
656c2ba8
Commit
656c2ba8
authored
Dec 10, 2021
by
liushikai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://192.168.0.110:11080/fukai/vue-gjjs
parents
6b7fac39
55eeb0f2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
1 deletions
+17
-1
InputCurrency.vue
src/components/InputCurrency.vue
+3
-0
commonProcess.js
src/mixin/commonProcess.js
+8
-0
index.js
src/utils/index.js
+3
-1
Ovwp.vue
src/views/Business/Ditopn/Ovwp.vue
+1
-0
index.vue
src/views/Business/Ditopn/index.vue
+2
-0
No files found.
src/components/InputCurrency.vue
View file @
656c2ba8
...
...
@@ -74,6 +74,9 @@ export default {
methods
:
{
onBlur
()
{
this
.
isOnBlur
=
true
;
if
(
this
.
model
.
trim
()
===
""
)
{
this
.
model
=
"0"
;
}
},
focus
()
{
this
.
isOnBlur
=
false
;
...
...
src/mixin/commonProcess.js
View file @
656c2ba8
...
...
@@ -147,6 +147,14 @@ export default {
return
fn
;
},
/**
* 用于手动的触发model里属性的 executeDefault
* @param {string} rule 执行的 rule path
* @param {any} value 更改的值
*/
defaultFunction
(
rule
,
value
)
{
Utils
.
defaultFunction
.
call
(
this
,
rule
,
value
)
},
/**
* 更新Model
* @param {any} data model数据
*/
...
...
src/utils/index.js
View file @
656c2ba8
...
...
@@ -208,7 +208,9 @@ export default class Utils {
if
(
res
.
respCode
==
SUCCESS
){
const
data
=
res
.
data
;
Utils
.
copyValueFromVO
(
this
.
model
,
data
)
callback
()
if
(
typeof
callback
===
"function"
)
{
callback
()
}
}
})
}
...
...
src/views/Business/Ditopn/Ovwp.vue
View file @
656c2ba8
...
...
@@ -120,6 +120,7 @@
v-model=
"model.didgrp.cbs.nom1.amt"
style=
"text-align: left; width: 100%"
placeholder=
"请输入信用证金额"
@
keyup
.
enter
.
native=
"defaultFunction('didgrp.cbs.nom1.amt', model.didgrp.cbs.nom1.amt)"
></c-input-currency>
</el-form-item>
</c-col>
...
...
src/views/Business/Ditopn/index.vue
View file @
656c2ba8
...
...
@@ -7,6 +7,8 @@
:handleCheck=
"handleCheck"
:handleStash=
"handleStash"
>
<el-button
size=
"small"
>
流程附言
</el-button>
<el-button
size=
"small"
>
交易历史
</el-button>
<el-button
size=
"small"
>
备忘录
</el-button>
<el-button
size=
"small"
>
影像信息
</el-button>
<el-button
size=
"small"
>
保存模板
</el-button>
...
...
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