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
2c12be4a
Commit
2c12be4a
authored
Dec 13, 2021
by
liushikai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
联行行号名称地址封装
parent
24f6ced1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
126 additions
and
3 deletions
+126
-3
Detp1.vue
src/views/Business/Ditopn/Detp1.vue
+0
-0
Limitbody.vue
src/views/Business/Ditopn/Limitbody.vue
+2
-2
Ptap.vue
src/views/Public/Ptap.vue
+1
-1
PtapDome.vue
src/views/Public/PtapDome.vue
+123
-0
No files found.
src/views/Business/Ditopn/Detp1.vue
View file @
2c12be4a
This diff is collapsed.
Click to expand it.
src/views/Business/Ditopn/Limitbody.vue
View file @
2c12be4a
...
...
@@ -75,14 +75,14 @@
<!--
</el-form-item>
-->
</c-col>
<c-col
:span=
"2
4
"
>
<c-col
:span=
"2
0
"
>
<el-form-item
label=
""
prop=
"liaall.limmod.limpts.wrk.pts.nam"
>
<c-input
v-model=
"model.liaall.limmod.limpts.wrk.pts.nam"
maxlength=
"16"
placeholder=
""
:disabled=
"true"
style=
"width:9
0
%"
style=
"width:9
5
%"
></c-input>
</el-form-item>
</c-col>
...
...
src/views/Public/Ptap.vue
View file @
2c12be4a
...
...
@@ -14,7 +14,7 @@
<c-col
:span=
"20"
>
<el-form-item
:label=
"`$
{argadr.title}
编号
`"
:label=
"`$
{argadr.title}
ID
`"
:prop="`${argadr.grp}.${argadr.rol}.pts.extkey`"
style="width:100%"
>
...
...
src/views/Public/PtapDome.vue
0 → 100644
View file @
2c12be4a
<
template
>
<div
class=
"eibs-tab"
>
<c-col
:span=
"24"
v-if=
"!isIss"
>
<el-form-item
:label=
"`$
{argadr.title}联行行号`"
:prop="`didgrp.${argadr.rol}.pts.bankno`"
>
<c-input
v-model=
"model.didgrp[argadr.rol].pts.bankno"
maxlength=
"20"
:disabled=
"disabledBankno"
:placeholder=
"'请输入' + argadr.title + '联行行号'"
@
keyup
.
enter
.
native=
"showGridPromptDialog(`didigrp.$
{argadr.rol}.pts.bankno`)"
>
</c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
v-else
>
<el-form-item
:label=
"`$
{argadr.title}联行行号`"
:prop="`didgrp.${argadr.rol}.pts.bankno`"
>
<c-input
v-model=
"model.didgrp[argadr.rol].pts.bankno"
maxlength=
"20"
:disabled=
"disabledBankno"
:placeholder=
"'请输入' + argadr.title + '联行行号'"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
:label=
"`$
{argadr.title}联行名称`"
:prop="`didgrp.${argadr.rol}.pts.jigomc`"
>
<c-input
type=
"textarea"
:rows=
"4"
v-model=
"model.didgrp[argadr.rol].pts.jigomc"
maxlength=
"35"
show-word-limit
:placeholder=
"'请输入' + argadr.title + '联行名称'"
:disabled=
"disabledJigomc"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"24"
>
<el-form-item
:label=
"`$
{argadr.title}地址`"
:prop="`didgrp.${argadr.rol}.pts.dizhii`"
>
<c-input
type=
"textarea"
:rows=
"4"
v-model=
"model.didgrp[argadr.rol].pts.dizhii"
maxlength=
"35"
show-word-limit
:placeholder=
"'请输入' + argadr.title + '地址'"
:disabled=
"disabledDizhii"
></c-input>
</el-form-item>
</c-col>
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
;
import
CommonProcess
from
"~/mixin/CommonProcess"
;
// 机构信息模块
export
default
{
inject
:
[
"root"
],
mixins
:
[
CommonProcess
],
props
:
{
model
:
{
type
:
Object
,
default
:
undefined
,
},
argadr
:
{
type
:
Object
,
default
:
function
()
{
return
{
title
:
""
,
//角色名称
rol
:
""
,
//角色
};
},
},
disabledBankno
:
{
type
:
Boolean
,
default
:
false
,
},
disabledJigomc
:
{
type
:
Boolean
,
default
:
false
,
},
disabledDizhii
:
{
type
:
Boolean
,
default
:
false
,
},
isIss
:
{
//是否为开证行
type
:
Boolean
,
default
:
false
,
},
},
data
()
{
return
{
data
:
[],
};
},
watch
:
{},
methods
:
{
},
created
:
function
()
{},
};
</
script
>
<
style
>
</
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