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
8e66ff6e
Commit
8e66ff6e
authored
Jun 30, 2022
by
Eivi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Betdcr交易页面布局
parent
d2bcecf1
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
15 deletions
+34
-15
index.js
src/model/Betdcr/index.js
+0
-0
index.vue
src/views/Business/Betdcr/index.vue
+34
-15
No files found.
src/model/Betdcr/index.js
View file @
8e66ff6e
This diff is collapsed.
Click to expand it.
src/views/Business/Betdcr/index.vue
View file @
8e66ff6e
<
template
>
<div
class=
"eContainer"
>
<!--
<c-bus-button
:
$
pntvm=
"this"
></c-bus-button>
-->
<c-function-btn
:handleSubmit=
"handleSubmit"
: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>
-->
<!--
<el-button
size=
"small"
>
使用模板
</el-button>
-->
<el-button
size=
"small"
>
制裁信息
</el-button>
<!--
<el-button
size=
"small"
>
拆分报文
</el-button>
-->
<el-button
size=
"small"
>
智能提示
</el-button>
</c-function-btn>
<el-form
:model=
"model"
:rules=
"rules"
ref=
"modelForm"
label-width=
"150px"
label-position=
"right"
size=
"small"
:validate-on-rule-change=
"false"
>
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"myTabClick"
>
<!--PD000009 -->
<el-tab-pane
label=
"PD000009"
name=
"betdcrs"
>
<el-tab-pane
label=
"Details"
name=
"betdcrs"
>
<c-content>
<m-betdcrs
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--PD000026 -->
<el-tab-pane
label=
"
PD000026
"
name=
"betdcrd"
>
<el-tab-pane
label=
"
Discrepancies/Refusal Details
"
name=
"betdcrd"
>
<m-betdcrd
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<!--PD000027 -->
<el-tab-pane
label=
"
PD000027
"
name=
"engp"
>
<el-tab-pane
label=
"
Liability
"
name=
"engp"
>
<m-engp
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<!--PD000027 -->
<el-tab-pane
label=
"
PD000027
"
name=
"setpan"
>
<el-tab-pane
label=
"
Settlement
"
name=
"setpan"
>
<m-setpan
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<!--PD00000
1
-->
<el-tab-pane
label=
"
PD000001"
name=
"limitbody
"
>
<m-
limitbody
:model=
"model"
:codes=
"codes"
/>
<!--PD00000
0
-->
<el-tab-pane
label=
"
Completion"
name=
"coninfp
"
>
<m-
coninfp
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<!--PD000529 -->
<el-tab-pane
label=
"
PD000529
"
name=
"docpan"
>
<el-tab-pane
label=
"
Messages
"
name=
"docpan"
>
<m-docpan
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<!--PD000000 -->
<el-tab-pane
label=
"PD000000"
name=
"coninfp"
>
<m-coninfp
:model=
"model"
:codes=
"codes"
/>
<!--PD000001 -->
<el-tab-pane
label=
"统一授信"
name=
"limitbody"
>
<m-limitbody
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
</c-tabs>
</el-form>
</div>
...
...
@@ -44,6 +62,7 @@ import Api from "~/service/Api"
import
CodeTable
from
"~/config/CodeTable"
import
Betdcr
from
"~/model/Betdcr"
import
commonProcess
from
"~/mixin/commonProcess"
import
commonFuncs
from
"~/mixin/commonFuncs"
;
import
Check
from
"~/model/Betdcr/Check"
import
Default
from
"~/model/Betdcr/Default"
import
Pattern
from
"~/model/Betdcr/Pattern"
...
...
@@ -72,10 +91,10 @@ export default {
root
:
this
}
},
mixins
:
[
commonProcess
],
// 里面包含了Default、Check等的公共处理
mixins
:
[
commonProcess
,
commonFuncs
],
// 里面包含了Default、Check等的公共处理
data
(){
return
{
tabVal
:
""
,
tabVal
:
"
betdcrs
"
,
trnName
:
"betdcr"
,
model
:
new
Betdcr
().
data
,
checkRules
:
Check
,
...
...
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