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
3060a246
Commit
3060a246
authored
Jan 06, 2022
by
niewei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化
parent
4e439c6d
Show whitespace changes
Inline
Side-by-side
Showing
39 changed files
with
240 additions
and
290 deletions
+240
-290
Event.js
src/model/Infbfd/Event.js
+38
-48
Check.js
src/model/Infcur/Check.js
+15
-15
Event.js
src/model/Infcur/Event.js
+29
-38
Event.js
src/model/Infdet/Event.js
+73
-103
Cbeinfp.vue
src/views/Business/Infbfd/Cbeinfp.vue
+2
-2
Cbsinfp.vue
src/views/Business/Infbfd/Cbsinfp.vue
+2
-2
Coninfp.vue
src/views/Business/Infbfd/Coninfp.vue
+2
-2
Fepinfp.vue
src/views/Business/Infbfd/Fepinfp.vue
+2
-2
Gleinfp.vue
src/views/Business/Infbfd/Gleinfp.vue
+2
-2
Infsea.vue
src/views/Business/Infbfd/Infsea.vue
+5
-2
Liainfp.vue
src/views/Business/Infbfd/Liainfp.vue
+2
-2
Ordpan.vue
src/views/Business/Infbfd/Ordpan.vue
+2
-2
Peninfp.vue
src/views/Business/Infbfd/Peninfp.vue
+2
-2
Prtpan.vue
src/views/Business/Infbfd/Prtpan.vue
+2
-2
Sepinfp.vue
src/views/Business/Infbfd/Sepinfp.vue
+2
-2
Smhinfp.vue
src/views/Business/Infbfd/Smhinfp.vue
+2
-2
Trnpan.vue
src/views/Business/Infbfd/Trnpan.vue
+2
-2
Curp0.vue
src/views/Business/Infcur/Curp0.vue
+5
-3
Infsea.vue
src/views/Business/Infcur/Infsea.vue
+6
-18
index.vue
src/views/Business/Infcur/index.vue
+4
-0
Cbeinfp.vue
src/views/Business/Infdet/Cbeinfp.vue
+2
-2
Cbsinfp.vue
src/views/Business/Infdet/Cbsinfp.vue
+2
-2
Coninfp.vue
src/views/Business/Infdet/Coninfp.vue
+2
-2
Detp.vue
src/views/Business/Infdet/Detp.vue
+2
-2
Detp1.vue
src/views/Business/Infdet/Detp1.vue
+2
-2
Detp2.vue
src/views/Business/Infdet/Detp2.vue
+2
-2
Fepinfp.vue
src/views/Business/Infdet/Fepinfp.vue
+2
-2
Gleinfp.vue
src/views/Business/Infdet/Gleinfp.vue
+2
-2
Infsea.vue
src/views/Business/Infdet/Infsea.vue
+5
-2
Liainfp.vue
src/views/Business/Infdet/Liainfp.vue
+2
-2
Ordpan.vue
src/views/Business/Infdet/Ordpan.vue
+2
-2
Ovwp.vue
src/views/Business/Infdet/Ovwp.vue
+2
-2
Peninfp.vue
src/views/Business/Infdet/Peninfp.vue
+2
-2
Prtpan.vue
src/views/Business/Infdet/Prtpan.vue
+2
-2
Sepinfp.vue
src/views/Business/Infdet/Sepinfp.vue
+2
-2
Smhinfp.vue
src/views/Business/Infdet/Smhinfp.vue
+2
-2
Stament.vue
src/views/Business/Infdet/Stament.vue
+2
-2
Trnpan.vue
src/views/Business/Infdet/Trnpan.vue
+2
-2
index.vue
src/views/Business/Infdet/index.vue
+2
-3
No files found.
src/model/Infbfd/Event.js
View file @
3060a246
...
...
@@ -2,100 +2,90 @@ import Api from "~/service/Api"
import
Utils
from
"~/utils"
export
default
{
async
onInfbutSearow
()
{
async
onInfbutSearow
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.searow"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
this
.
model
.
infbut
.
dspstm
=
rtnmsg
.
data
.
infbut_dspstm
.
rows
this
.
$message
({
type
:
'success'
,
message
:
'获取成功!'
});
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutDsp
()
{
async
onInfbutDsp
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.dsp"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutUserow
()
{
async
onInfbutUserow
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.userow"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutClr
()
{
async
onInfbutClr
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.clr"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutButprt
()
{
async
onInfbutButprt
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.butprt"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutExi
()
{
async
onInfbutExi
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.exi"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfconButshw
()
{
async
onInfconButshw
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infcon.butshw"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfconButshword
()
{
async
onInfconButshword
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infcon.butshword"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
...
...
src/model/Infcur/Check.js
View file @
3060a246
...
...
@@ -4,21 +4,21 @@ import Utils from "~/utils"
* Infcur Check规则
*/
let
checkObj
=
{
"rec.bsrmar"
:
null
,
"rec.maxamt"
:
null
,
"rec.sqrmar"
:
null
,
"rec.dec"
:
null
,
"rec.dif"
:
null
,
"rec.newcur"
:
null
,
"rec.cod"
:
null
,
"rec.enddat"
:
null
,
"rec.rndunt"
:
null
,
"rec.bas"
:
null
,
"rec.dbtday"
:
null
,
"rec.cdtday"
:
null
,
"recpan.recget.sdamod.dadsnd"
:
null
,
"rec.maxcur"
:
null
,
"rec.glbrat"
:
null
,
"rec.bsrmar"
:
null
,
"rec.maxamt"
:
null
,
"rec.sqrmar"
:
null
,
"rec.dec"
:
null
,
"rec.dif"
:
null
,
"rec.newcur"
:
null
,
"rec.cod"
:
null
,
"rec.enddat"
:
null
,
"rec.rndunt"
:
null
,
"rec.bas"
:
null
,
"rec.dbtday"
:
null
,
"rec.cdtday"
:
null
,
"recpan.recget.sdamod.dadsnd"
:
null
,
"rec.maxcur"
:
null
,
"rec.glbrat"
:
null
,
}
for
(
const
key
in
checkObj
)
{
...
...
src/model/Infcur/Event.js
View file @
3060a246
...
...
@@ -2,76 +2,67 @@ import Api from "~/service/Api"
import
Utils
from
"~/utils"
export
default
{
async
onInfbutSearow
()
{
async
onInfbutSearow
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.searow"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
model
.
infbut
.
dspstm
=
rtnmsg
.
data
.
infbut_dspstm
.
rows
this
.
$message
({
type
:
'success'
,
message
:
'获取成功!'
});
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutExi
()
{
async
onInfbutExi
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.exi"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutDsp
()
{
async
onInfbutDsp
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.dsp"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutUserow
()
{
async
onInfbutUserow
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.userow"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutClr
()
{
async
onInfbutClr
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.clr"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutButprt
()
{
async
onInfbutButprt
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.butprt"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
...
...
src/model/Infdet/Event.js
View file @
3060a246
...
...
@@ -2,208 +2,178 @@ import Api from "~/service/Api"
import
Utils
from
"~/utils"
export
default
{
async
onInfbutSearow
()
{
async
onInfbutSearow
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.searow"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
this
.
model
.
infbut
.
dspstm
=
rtnmsg
.
data
.
infbut_dspstm
.
rows
this
.
$message
({
type
:
'success'
,
message
:
'获取成功!'
});
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutDsp
()
{
async
onInfbutDsp
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.dsp"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutUserow
()
{
async
onInfbutUserow
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.userow"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutClr
()
{
async
onInfbutClr
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.clr"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutButprt
()
{
async
onInfbutButprt
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.butprt"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfbutExi
()
{
async
onInfbutExi
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.exi"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onRecpanButgetref
()
{
async
onRecpanButgetref
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"recpan.butgetref"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onBenpDet
()
{
async
onBenpDet
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"benp.det"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onAplpDet
()
{
async
onAplpDet
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"aplp.det"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onLcrdftatButtxmsel
()
{
async
onLcrdftatButtxmsel
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"lcrdftat.buttxmsel"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onPreperButtxmsel
()
{
async
onPreperButtxmsel
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"preper.buttxmsel"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onLcrgodButtxmsel
()
{
async
onLcrgodButtxmsel
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"lcrgod.buttxmsel"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onLcrdocButtxmsel
()
{
async
onLcrdocButtxmsel
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"lcrdoc.buttxmsel"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onAdlcndButtxmsel
()
{
async
onAdlcndButtxmsel
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"adlcnd.buttxmsel"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInsbnkButtxmsel
()
{
async
onInsbnkButtxmsel
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"insbnk.buttxmsel"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfconButshw
()
{
async
onInfconButshw
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infcon.butshw"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onInfconButshword
()
{
async
onInfconButshword
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"infcon.butshword"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
...
...
src/views/Business/Infbfd/Cbeinfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
</p>
...
...
src/views/Business/Infbfd/Cbsinfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
</p>
<c-row>
...
...
src/views/Business/Infbfd/Coninfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
</p>
<c-row>
...
...
src/views/Business/Infbfd/Fepinfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
</p>
<c-row>
...
...
src/views/Business/Infbfd/Gleinfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
</p>
<c-row>
...
...
src/views/Business/Infbfd/Infsea.vue
View file @
3060a246
<
template
>
<c-content
class=
"eibs-tab"
:height=
"200"
>
<c-infsearch-group
@
handleSearch=
"
handleSearch"
@
handleReset=
"handleReset
"
>
<c-infsearch-group
@
handleSearch=
"
onInfbutSearow"
@
handleReset=
"onInfbutClr
"
>
<!-- 持续展示区 -->
<template
slot=
"keepShow"
>
...
...
@@ -149,7 +149,7 @@
</c-row>
<c-row
style=
"margin-top:20px; padding: 0 10px 0 10px;"
>
<c-istream-table
:list=
"
model.infbut.dspstm
"
:columns=
"stmData.columns"
>
<c-istream-table
:list=
"
stmData.data
"
:columns=
"stmData.columns"
>
<el-table-column
prop=
"op"
label=
"OP"
width=
"100"
>
<
template
slot-scope=
"scope"
>
<a
href=
"javascript:void(0)"
@
click=
"continueEdit(scope.row)"
>
操作
</a>
...
...
@@ -200,6 +200,9 @@ export default {
"7 7
\"
Cur
\"
50 "
,
"8 8
\"
Doc.Amount
\"
150 "
,
"8 8
\"
Open Amount
\"
150 "
,
],
data
:[
]
},
}
...
...
src/views/Business/Infbfd/Liainfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
</p>
<c-row>
...
...
src/views/Business/Infbfd/Ordpan.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
</p>
<c-row>
...
...
src/views/Business/Infbfd/Peninfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
</p>
<c-row>
...
...
src/views/Business/Infbfd/Prtpan.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
</p>
<c-col
:span=
"12"
>
...
...
src/views/Business/Infbfd/Sepinfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
</p>
<c-row>
...
...
src/views/Business/Infbfd/Smhinfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
</p>
<c-row>
...
...
src/views/Business/Infbfd/Trnpan.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
</p>
<c-row>
...
...
src/views/Business/Infcur/Curp0.vue
View file @
3060a246
...
...
@@ -7,8 +7,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disable
e
d"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disable
e
d"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disabled"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disabled"
>
Loginfo
</c-button>
</div>
</p>
...
...
@@ -17,7 +17,7 @@
<c-row>
<c-col
:span=
"12"
>
<el-form-item
label=
"币种代码"
prop=
"rec.cod"
>
<c-input
disabled=
"disable
e
d"
v-model=
"model.rec.cod"
maxlength=
"3"
placeholder=
"请输入Currency Code"
></c-input>
<c-input
disabled=
"disabled"
v-model=
"model.rec.cod"
maxlength=
"3"
placeholder=
"请输入Currency Code"
></c-input>
</el-form-item>
</c-col>
<!--
...
...
@@ -183,12 +183,14 @@
</el-form-item>
</c-col>
</c-row>
<c-row>
<c-col
class=
"infrow"
style=
"margin-top:50px;"
>
<c-istream-table
:list=
"model.recpan.codmod.codtxt"
:columns=
"stmData.columns"
>
</c-istream-table>
</c-col>
</c-row>
</c-content>
</
template
>
<
script
>
...
...
src/views/Business/Infcur/Infsea.vue
View file @
3060a246
...
...
@@ -59,7 +59,7 @@
</c-row>
-->
<c-infsearch-group
@
handle
Search=
"handleSearch"
@
handleReset=
"handleReset
"
>
<c-infsearch-group
@
handle
Reset=
"onInfbutClr"
@
handleSearch=
"onInfbutSearow
"
>
<template
slot=
"keepShow"
>
<c-row>
<c-col
:span=
"12"
>
...
...
@@ -87,15 +87,15 @@
</c-row>
<
el
-row
class=
"infrow"
style=
"margin-top:20px;"
>
<c-istream-table
:list=
"
model.infbut.dspstm
"
:columns=
"stmData.columns"
>
<el-table-column
prop=
"op"
label=
"
OP
"
width=
"100"
>
<
c
-row
class=
"infrow"
style=
"margin-top:20px;"
>
<c-istream-table
:list=
"
stmData.data
"
:columns=
"stmData.columns"
>
<el-table-column
prop=
"op"
label=
"
操作
"
width=
"100"
>
<
template
slot-scope=
"scope"
>
<a
href=
"javascript:void(0)"
@
click=
"continueEdit(scope.row)"
>
操作
</a>
</
template
>
</el-table-column>
</c-istream-table>
</
el
-row>
</
c
-row>
</c-content>
</template>
...
...
@@ -122,19 +122,7 @@ export default {
},
}
},
methods
:
{
...
Event
,
handleSearch
(
callback
)
{
setTimeout
(()
=>
{
this
.
$notify
.
info
({
title
:
'提示'
,
message
:
'模拟post请求控制按钮状态'
});
// 执行子组件回调函数控制按钮状态
callback
()
},
1000
)
},
handleReset
()
{
}
},
methods
:{...
Event
},
created
:
function
(){
}
...
...
src/views/Business/Infcur/index.vue
View file @
3060a246
...
...
@@ -63,17 +63,21 @@ export default {
}
},
created
:
async
function
(){
console
.
log
(
"进入infcur交易"
);
let
rtnmsg
=
await
this
.
init
({})
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//this.$notify.error({title:'提示',message:'初始化执行结束!'});
//TODO 处理数据逻辑
//this.updateModel(rtnmsg.data)
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
}
}
</
script
>
...
...
src/views/Business/Infdet/Cbeinfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
...
...
src/views/Business/Infdet/Cbsinfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
<c-row>
...
...
src/views/Business/Infdet/Coninfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
<c-row>
...
...
src/views/Business/Infdet/Detp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
<c-col
:span=
"24"
>
...
...
src/views/Business/Infdet/Detp1.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
<c-row>
...
...
src/views/Business/Infdet/Detp2.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
<!-- 顶部 -->
...
...
src/views/Business/Infdet/Fepinfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
</p>
...
...
src/views/Business/Infdet/Gleinfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
<c-row>
...
...
src/views/Business/Infdet/Infsea.vue
View file @
3060a246
...
...
@@ -2,7 +2,7 @@
<!-- Selection -->
<c-content
class=
"eibs-tab"
:height=
"200"
>
<c-infsearch-group
@
handleSearch=
"
handleSearch"
@
handleReset=
"handleReset
"
>
<c-infsearch-group
@
handleSearch=
"
onInfbutSearow"
@
handleReset=
"onInfbutClr
"
>
<!-- 持续展示区 -->
<template
slot=
"keepShow"
>
<c-row>
...
...
@@ -168,7 +168,7 @@
</c-row>
<c-row
style=
"margin-top:20px; padding: 0 10px 0 10px;"
>
<c-istream-table
:list=
"
model.infbut.dspstm
"
:columns=
"stmData.columns"
>
<c-istream-table
:list=
"
stmData.data
"
:columns=
"stmData.columns"
>
<el-table-column
prop=
"op"
label=
"OP"
width=
"100"
>
<
template
slot-scope=
"scope"
>
<a
href=
"javascript:void(0)"
@
click=
"continueEdit(scope.row)"
>
操作
</a>
...
...
@@ -209,6 +209,9 @@ export default {
"6 6
\"
Cur
\"
150 "
,
"7 7
\"
L/C Amount
\"
150 "
,
"7 7
\"
Open Amount
\"
150 "
,
],
data
:
[
]
},
}
...
...
src/views/Business/Infdet/Liainfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
...
...
src/views/Business/Infdet/Ordpan.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
...
...
src/views/Business/Infdet/Ovwp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
<c-row>
...
...
src/views/Business/Infdet/Peninfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
<c-row>
...
...
src/views/Business/Infdet/Prtpan.vue
View file @
3060a246
...
...
@@ -7,8 +7,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
<!--
...
...
src/views/Business/Infdet/Sepinfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
<c-row>
...
...
src/views/Business/Infdet/Smhinfp.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
<c-row>
...
...
src/views/Business/Infdet/Stament.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
<c-row>
...
...
src/views/Business/Infdet/Trnpan.vue
View file @
3060a246
...
...
@@ -6,8 +6,8 @@
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-arrow-right"
></c-button>
</el-button-group>
<c-button
size=
"small"
type=
"primary"
>
Print
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
disabled=
"disableed"
>
Loginfo
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Use
</c-button>
<c-button
size=
"small"
type=
"primary"
>
Loginfo
</c-button>
</div>
<c-row>
...
...
src/views/Business/Infdet/index.vue
View file @
3060a246
...
...
@@ -198,10 +198,9 @@ export default {
defaultRules
:
Default
,
pattern
:
Pattern
,
rules
:
null
,
codes
:
{
},
codes
:
{...
CodeTable
},
showflg
:
true
,
}
}
;
},
methods
:{
tabClick
(){
...
...
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