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
zhouqian
vue-gjjs
Commits
fdb1699a
Commit
fdb1699a
authored
Jul 21, 2020
by
傅凯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交调整
parent
747b6bdf
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
62 additions
and
42 deletions
+62
-42
TodoItem.vue
src/views/Business/Office/TodoItem.vue
+3
-0
index.vue
src/views/Business/Sptsel/index.vue
+28
-27
index.vue
src/views/Business/Trnrel/index.vue
+1
-1
SideMenu.vue
src/views/Layout/SideMenu.vue
+30
-14
No files found.
src/views/Business/Office/TodoItem.vue
View file @
fdb1699a
...
...
@@ -3,6 +3,8 @@
<el-table
:data=
"todolist"
style=
"width: 100%"
max-height=
"500"
size=
"mini"
>
<el-table-column
prop=
"typ"
...
...
@@ -73,6 +75,7 @@ export default {
},
methods
:{
async
onOffpTodo
(){
let
rtnmsg
=
await
Api
.
post
(
"office/offp_todo"
,{
data
:{
'offp_todotyp'
:
this
.
todoType
}})
if
(
rtnmsg
.
code
==
SUCCESS
)
{
...
...
src/views/Business/Sptsel/index.vue
View file @
fdb1699a
<
template
>
<c-page
title=
"经办夹"
>
<el-form
:model=
"model"
:rules=
"rules"
ref=
"modelForm"
label-width=
"100px"
size=
"
small
"
>
<el-form
:model=
"model"
:rules=
"rules"
ref=
"modelForm"
label-width=
"100px"
size=
"
mini
"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"交易名"
>
<el-form-item
label=
"交易名"
prop=
"sptp.frm"
>
<el-input
v-model=
"model.sptp.frm"
maxlength=
"6"
placeholder=
"请输入交易"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -16,19 +16,19 @@
-->
<el-col
:span=
"12"
>
<el-form-item
label=
"业务编号"
>
<el-form-item
label=
"业务编号"
prop=
"sptp.objref"
>
<el-input
v-model=
"model.sptp.objref"
maxlength=
"20"
placeholder=
"请输入业务编号"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"经办柜员"
>
<el-form-item
label=
"经办柜员"
prop=
"sptp.usr"
>
<el-input
v-model=
"model.sptp.usr"
maxlength=
"20"
placeholder=
"请输入操作员"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"状态"
>
<el-form-item
label=
"状态"
prop=
"sptp.sta"
>
<el-select
v-model=
"model.sptp.sta"
style=
"width:100%"
placeholder=
"请选择类型"
>
<el-option
v-for=
"item in codes.sptsta"
...
...
@@ -43,13 +43,13 @@
<el-col
:span=
"12"
>
<el-col
:span=
"12"
>
<el-form-item
label=
"起始日期"
>
<el-form-item
label=
"起始日期"
prop=
"sptp.datsta"
>
<el-date-picker
type=
"date"
v-model=
"model.sptp.datsta"
style=
"width:100%"
placeholder=
"请选择起始日期"
></el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"至"
>
<el-form-item
label=
"至"
prop=
"sptp.datend"
>
<el-date-picker
type=
"date"
v-model=
"model.sptp.datend"
style=
"width:100%"
placeholder=
"请选择至"
></el-date-picker>
</el-form-item>
</el-col>
...
...
@@ -69,12 +69,15 @@
</el-col>
<el-col
:span=
24
>
<el-pagination
layout=
"prev, pager, next"
:total=
"pager.sptp_lst.total"
>
</el-pagination>
<el-table
:data=
"model.sptp.lst"
style=
"width: 100%;height:400px;"
max-height=
"500
"
size=
"mini
"
max-height=
"400"
>
<el-table-column
prop=
"frm"
...
...
@@ -144,35 +147,33 @@
</el-table-column>
<el-table-column
prop=
"op"
fixed=
"right"
label=
"操作"
width=
"150"
>
<
template
slot-scope=
"scope"
>
<div>
<div
v-if=
"scope.row.frm"
>
<
a
href=
"javascript:void(0)"
@
click=
"onDeal(scope.row)"
>
处理
</a
>
<
el-link
icon=
"el-icon-edit"
type=
"primary"
@
click=
"onDeal(scope.row)"
>
处理
</el-link
>
<el-divider
direction=
"vertical"
></el-divider>
<
a
href=
"javascript:void(0)"
@
click=
"onSptpDel(scope.row)"
>
删除
</a
>
<
el-link
icon=
"el-icon-delete"
type=
"primary"
@
click=
"onSptpDel(scope.row)"
>
删除
</el-link
>
<span
v-if=
"scope.row.smhinr"
>
<el-divider
direction=
"vertical"
></el-divider>
<
a
href=
"javascript:void(0)"
@
click=
"onInc(scope.row)"
>
显示报文
</a
>
<
el-link
icon=
"el-icon-view"
type=
"primary"
@
click=
"onInc(scope.row)"
>
显示报文
</el-link
>
</span>
</div>
<div
v-if=
"!scope.row.frm"
>
<
a
href=
"javascript:void(0)"
@
click=
"onSptpDel(scope.row)"
>
删除
</a
>
<
el-link
icon=
"el-icon-delete"
type=
"primary"
@
click=
"onSptpDel(scope.row)"
>
删除
</el-link
>
<span
v-if=
"scope.row.smhinr"
>
<el-divider
direction=
"vertical"
></el-divider>
<
a
href=
"javascript:void(0)"
@
click=
"onInc(scope.row)"
>
显示报文
</a
>
<
el-link
icon=
"el-icon-view"
type=
"primary"
@
click=
"onInc(scope.row)"
>
显示报文
</el-link
>
</span>
</div>
</div>
</
template
>
</el-table-column>
</el-table>
<el-pagination
layout=
"prev, pager, next"
:total=
"pager.sptp_lst.total"
>
</el-pagination>
</el-col>
</el-form>
...
...
@@ -244,15 +245,15 @@ export default {
"sptp_lst"
:{
total
:
0
,
curIdx
:
0
},
},
rules
:{
"sptp.frm"
:[{
type
:
"string"
,
required
:
false
,
len
:
6
,
message
:
"输入不合法"
}],
"sptp.objtyp"
:[{
type
:
"string"
,
required
:
false
,
len
:
6
,
message
:
"输入不合法"
}],
"sptp.usr"
:[{
type
:
"string"
,
required
:
false
,
len
:
2
0
,
message
:
"输入不合法"
}],
"sptp.datsta"
:[{
type
:
"date"
,
required
:
false
,
message
:
"输入正确的日期"
}],
"sptp.datend"
:[{
type
:
"date"
,
required
:
false
,
message
:
"输入正确的日期"
}],
"sptp.objref"
:[{
type
:
"string"
,
required
:
false
,
len
:
20
,
message
:
"输入不合法"
}],
"sptp.frm"
:[{
type
:
"string"
,
required
:
false
,
max
:
6
,
min
:
1
,
message
:
"输入不合法"
}],
"sptp.objtyp"
:[{
type
:
"string"
,
required
:
false
,
max
:
6
,
min
:
1
,
message
:
"输入不合法"
}],
"sptp.usr"
:[{
type
:
"string"
,
required
:
false
,
max
:
20
,
min
:
0
,
message
:
"输入不合法"
}],
//
"sptp.datsta":[{type: "date", required: false, message: "输入正确的日期"}],
//
"sptp.datend":[{type: "date", required: false, message: "输入正确的日期"}],
"sptp.objref"
:[{
type
:
"string"
,
required
:
false
,
max
:
20
,
min
:
1
,
message
:
"输入不合法"
}],
"mtabut.cortyp"
:[{
type
:
"string"
,
required
:
false
,
len
:
3
,
message
:
"输入不合法"
}],
"mtabut.msgtyp"
:[{
type
:
"string"
,
required
:
false
,
len
:
100
,
message
:
"输入不合法"
}],
"mtabut.docinf"
:[{
type
:
"string"
,
required
:
true
,
len
:
200
,
message
:
"输入超长"
}],
"mtabut.msgtyp"
:[{
type
:
"string"
,
required
:
false
,
max
:
100
,
min
:
1
,
message
:
"输入不合法"
}],
"mtabut.docinf"
:[{
type
:
"string"
,
required
:
true
,
max
:
200
,
min
:
1
,
message
:
"输入超长"
}],
}
}
},
...
...
src/views/Business/Trnrel/index.vue
View file @
fdb1699a
...
...
@@ -67,7 +67,7 @@
<el-table
:data=
"model.recpan.trnlst"
style=
"width: 100%;"
max-height=
"
3
00"
max-height=
"
4
00"
size=
"mini"
>
<el-table-column
...
...
src/views/Layout/SideMenu.vue
View file @
fdb1699a
...
...
@@ -11,16 +11,12 @@
<el-menu-item
index=
"/business/office"
>
<i
class=
"el-icon-menu"
></i>
<span
slot=
"title"
>
Home
</span>
</el-menu-item>
<el-menu-item
index=
"/business/tstopn"
>
<i
class=
"el-icon-document"
></i>
<span
slot=
"title"
>
测试页
</span>
</el-menu-item>
<el-menu-item
index=
"/business/cptopn"
>
<i
class=
"el-icon-document"
></i>
<span
slot=
"title"
>
汇出汇款
</span>
<span
slot=
"title"
>
主页
</span>
</el-menu-item>
<el-submenu
index=
"0"
>
<template
slot=
"title"
>
<span>
公共夹
</span>
</
template
>
<el-menu-item
index=
"/business/sptsel"
>
<i
class=
"el-icon-document"
></i>
<span
slot=
"title"
>
待办任务
</span>
...
...
@@ -29,19 +25,39 @@
<i
class=
"el-icon-document"
></i>
<span
slot=
"title"
>
复核任务
</span>
</el-menu-item>
</el-submenu>
<!-- <el-menu-item index="/business/tstopn">
<i class="el-icon-document"></i>
<span slot="title">测试页</span>
</el-menu-item> -->
<el-submenu
index=
"1"
>
<
template
slot=
"title"
>
<span>
汇款
</span>
</
template
>
<el-menu-item
index=
"/business/cptopn"
>
<i
class=
"el-icon-document"
></i>
<span
slot=
"title"
>
汇出汇款
</span>
</el-menu-item>
</el-submenu>
<el-submenu
index=
"2"
>
<
template
slot=
"title"
>
<span>
国内证
</span>
</
template
>
<el-menu-item
index=
"/business/ditopn"
>
买方信用证开立
</el-menu-item>
<el-menu-item
index=
"/business/ditame"
>
信用证修改
</el-menu-item>
<el-menu-item
index=
"/business/ditopn"
>
<i
class=
"el-icon-document"
></i>
<span
slot=
"title"
>
买方信用证开立
</span>
</el-menu-item>
<el-menu-item
index=
"/business/ditame"
>
<i
class=
"el-icon-document"
></i>
<span
slot=
"title"
>
信用证修改
</span>
</el-menu-item>
</el-submenu>
<el-menu-item
index=
"4"
>
<
!-- <
el-menu-item index="4">
<i class="el-icon-setting"></i>
<span slot="title">导航四</span>
</el-menu-item>
</el-menu-item>
-->
</el-menu>
</el-col>
</el-row>
...
...
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