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
4a91a729
Commit
4a91a729
authored
May 15, 2023
by
huxi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
litdla 代码清理
parent
151ce7d1
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
159 additions
and
217 deletions
+159
-217
index.js
src/business/litdck/event/index.js
+1
-0
Adcpame.vue
src/business/litdla/views/Adcpame.vue
+0
-3
Amep.vue
src/business/litdla/views/Amep.vue
+3
-6
Detp.vue
src/business/litdla/views/Detp.vue
+3
-10
Dogp.vue
src/business/litdla/views/Dogp.vue
+4
-7
Dogpame.vue
src/business/litdla/views/Dogpame.vue
+2
-8
Dorp.vue
src/business/litdla/views/Dorp.vue
+4
-8
Dorpame.vue
src/business/litdla/views/Dorpame.vue
+2
-9
Inspame.vue
src/business/litdla/views/Inspame.vue
+3
-6
Narp.vue
src/business/litdla/views/Narp.vue
+3
-7
Ovwp.vue
src/business/litdla/views/Ovwp.vue
+4
-7
Ovwp1.vue
src/business/litdla/views/Ovwp1.vue
+3
-8
Ptyp.vue
src/business/litdla/views/Ptyp.vue
+3
-16
Shisuan.vue
src/business/litdla/views/Shisuan.vue
+3
-7
Spbpame.vue
src/business/litdla/views/Spbpame.vue
+6
-10
Spcbenp.vue
src/business/litdla/views/Spcbenp.vue
+4
-7
Spcrcvp.vue
src/business/litdla/views/Spcrcvp.vue
+4
-8
Sprpame.vue
src/business/litdla/views/Sprpame.vue
+6
-9
index.vue
src/business/litdla/views/index.vue
+100
-81
business.js
src/routers/modules/business.js
+1
-0
No files found.
src/business/litdck/event/index.js
View file @
4a91a729
...
...
@@ -28,6 +28,7 @@ export default {
...
params
,
transName
:
this
.
trnName
,
userId
:
window
.
sessionStorage
.
userId
||
'ZL'
,
lidinr
:
this
.
$route
.
query
.
inr
});
if
(
!
res
.
data
)
{
return
...
...
src/business/litdla/views/Adcpame.vue
View file @
4a91a729
...
...
@@ -149,7 +149,6 @@
style=
"margin: 0px 0 10px 120px"
size=
"small"
type=
"primary"
@
click=
"onAdlcndamepButdif"
>
显示差异
</c-button>
...
...
@@ -161,7 +160,6 @@
size=
"small"
type=
"primary"
disabled
@
click=
"onAdlcndamepButadd"
>
添加文本
</c-button>
...
...
@@ -174,7 +172,6 @@
type=
"primary"
disabled
icon=
"el-icon-delete"
@
click=
"onAdlcndamepButdel"
>
删除文本
</c-button>
...
...
src/business/litdla/views/Amep.vue
View file @
4a91a729
...
...
@@ -250,21 +250,18 @@
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litdla/Event"
import
event
from
"../event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
(){
return
{
}
},
methods
:{
...
Event
},
methods
:{},
created
:
function
(){
}
...
...
src/business/litdla/views/Detp.vue
View file @
4a91a729
...
...
@@ -22,7 +22,6 @@
style=
"margin: 0 5px 0 10px; padding: 0 12px"
size=
"small"
type=
"primary"
@
click=
""
icon=
"el-icon-info"
>
...
...
@@ -31,7 +30,6 @@
style=
"margin: 0 0"
size=
"small"
type=
"primary"
@
click=
""
>
详情
</c-button>
...
...
@@ -80,7 +78,6 @@
style=
"margin: 0 5px 0 10px; padding: 0 12px"
size=
"small"
type=
"primary"
@
click=
""
icon=
"el-icon-info"
>
</c-button>
...
...
@@ -88,7 +85,6 @@
style=
"margin: 0 0"
size=
"small"
type=
"primary"
@
click=
""
>
详情
</c-button>
...
...
@@ -202,21 +198,18 @@
</div>
</template>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litdla/Event"
import
event
from
"../event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
(){
return
{
}
},
methods
:{
...
Event
},
methods
:{},
created
:
function
(){
}
...
...
src/business/litdla/views/Dogp.vue
View file @
4a91a729
...
...
@@ -10,7 +10,7 @@
</c-col>
<c-col
:span=
"2"
>
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-more"
@
click=
"onLcrgodButtxmsel"
>
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-more"
>
</c-button>
</c-col>
...
...
@@ -26,21 +26,18 @@
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litdla/Event"
import
event
from
"../event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
(){
return
{
}
},
methods
:{
...
Event
},
methods
:{},
created
:
function
(){
}
...
...
src/business/litdla/views/Dogpame.vue
View file @
4a91a729
...
...
@@ -119,7 +119,6 @@
disabled
size=
"small"
type=
"primary"
@
click=
"onLcrgodamepButadd"
>
添加文本
</c-button>
...
...
@@ -132,7 +131,6 @@
size=
"small"
type=
"primary"
icon=
"el-icon-delete"
@
click=
"onLcrgodamepButdel"
>
删除文本
</c-button>
...
...
@@ -141,15 +139,12 @@
</div>
</template>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litdla/Event"
import
event
from
"../event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
()
{
return
{
flag1
:
true
,
...
...
@@ -223,7 +218,6 @@ export default {
},
},
methods
:
{
...
Event
,
open
(
val
)
{
if
(
val
===
""
&&
!
(
this
.
model
.
lidgrp
.
blk
.
lcrgod
==
""
))
{
this
.
$confirm
(
...
...
src/business/litdla/views/Dorp.vue
View file @
4a91a729
...
...
@@ -11,28 +11,24 @@
</c-col>
<c-col
:span=
"2"
>
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-more"
@
click=
"onLcrdocButtxmsel"
>
<c-button
size=
"small"
type=
"primary"
icon=
"el-icon-more"
>
</c-button>
</c-col>
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litdla/Event"
import
event
from
"../event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
(){
return
{
}
},
methods
:{
...
Event
},
methods
:{},
created
:
function
(){
}
...
...
src/business/litdla/views/Dorpame.vue
View file @
4a91a729
...
...
@@ -124,7 +124,6 @@
style=
"margin: 0px 0 10px 120px"
size=
"small"
type=
"primary"
@
click=
"onLcrdocamepButdif"
>
显示差异
</c-button>
...
...
@@ -136,7 +135,6 @@
disabled
size=
"small"
type=
"primary"
@
click=
"onLcrdocamepButadd"
>
添加文本
</c-button>
...
...
@@ -149,7 +147,6 @@
size=
"small"
type=
"primary"
icon=
"el-icon-delete"
@
click=
"onLcrdocamepButdel"
>
删除文本
</c-button>
...
...
@@ -158,15 +155,12 @@
</div>
</template>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litdla/Event"
import
event
from
"../event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
()
{
return
{
flag1
:
true
,
...
...
@@ -240,7 +234,6 @@ export default {
},
},
methods
:
{
...
Event
,
open
(
val
)
{
if
(
val
===
""
&&
!
(
this
.
model
.
lidgrp
.
blk
.
lcrdoc
==
""
))
{
this
.
$confirm
(
...
...
src/business/litdla/views/Inspame.vue
View file @
4a91a729
...
...
@@ -13,21 +13,18 @@
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litdla/Event"
import
event
from
"../event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
(){
return
{
}
},
methods
:{
...
Event
},
methods
:{},
created
:
function
(){
}
...
...
src/business/litdla/views/Narp.vue
View file @
4a91a729
...
...
@@ -26,23 +26,19 @@
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litdla/Event"
import
event
from
"../event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
(){
return
{
}
},
methods
:{
...
Event
},
methods
:{},
created
:
function
(){
}
}
</
script
>
...
...
src/business/litdla/views/Ovwp.vue
View file @
4a91a729
<
template
>
<div
class=
"eibs-tab"
>
<el-collapse
v-model=
"activeNames"
@
change=
"handleChange"
>
<el-collapse
v-model=
"activeNames"
>
<el-collapse-item
title=
"概览信息"
name=
"ovwp1"
>
<m-ovwp1
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
...
...
@@ -107,10 +107,7 @@
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litdla/Event"
import
event
from
"../event"
import
Amep
from
"./Amep"
import
Accp
from
"./Accp"
import
Narp
from
"./Narp"
...
...
@@ -158,14 +155,14 @@
},
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
(){
return
{
activeNames
:
[
"ovwp1"
],
}
},
methods
:{
...
Event
},
methods
:{},
created
:
function
(){
}
...
...
src/business/litdla/views/Ovwp1.vue
View file @
4a91a729
...
...
@@ -316,10 +316,7 @@
</div>
</template>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litdla/Event"
import
event
from
"../event"
export
default
{
...
...
@@ -327,14 +324,12 @@ export default {
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
(){
return
{
}
},
methods
:{
...
Event
},
methods
:{},
created
:
function
(){
}
...
...
src/business/litdla/views/Ptyp.vue
View file @
4a91a729
...
...
@@ -15,7 +15,6 @@
style=
"margin: 0 10px 0 10px; padding: 0 12px"
size=
"small"
type=
"primary"
@
click=
""
icon=
"el-icon-search"
>
<span
style=
"font-family: '宋体'; font-weight: bold"
></span>
...
...
@@ -25,7 +24,6 @@
style=
"margin: 0 0"
size=
"small"
type=
"primary"
@
click=
""
icon=
"el-icon-info"
>
...
...
@@ -58,7 +56,6 @@
style=
"margin: 0 10px 0 10px; padding: 0 12px"
size=
"small"
type=
"primary"
@
click=
""
icon=
"el-icon-search"
>
<span
style=
"font-family: '宋体'; font-weight: bold"
></span>
...
...
@@ -67,7 +64,6 @@
style=
"margin: 0 0"
size=
"small"
type=
"primary"
@
click=
""
icon=
"el-icon-info"
>
...
...
@@ -96,7 +92,6 @@
style=
"margin: 0 10px 0 10px; padding: 0 12px"
size=
"small"
type=
"primary"
@
click=
""
icon=
"el-icon-search"
>
<span
style=
"font-family: '宋体'; font-weight: bold"
></span>
...
...
@@ -105,7 +100,6 @@
style=
"margin: 0 0"
size=
"small"
type=
"primary"
@
click=
""
icon=
"el-icon-info"
>
</c-button>
...
...
@@ -140,7 +134,6 @@
style=
"margin: 0 10px 0 10px; padding: 0 12px"
size=
"small"
type=
"primary"
@
click=
""
icon=
"el-icon-search"
>
<span
style=
"font-family: '宋体'; font-weight: bold"
></span>
...
...
@@ -149,7 +142,6 @@
style=
"margin: 0 0"
size=
"small"
type=
"primary"
@
click=
""
icon=
"el-icon-info"
>
...
...
@@ -181,7 +173,6 @@
style=
"margin: 0 10px 0 10px; padding: 0 12px"
size=
"small"
type=
"primary"
@
click=
""
icon=
"el-icon-search"
>
<span
style=
"font-family: '宋体'; font-weight: bold"
></span>
...
...
@@ -190,7 +181,6 @@
style=
"margin: 0 0"
size=
"small"
type=
"primary"
@
click=
""
icon=
"el-icon-info"
>
...
...
@@ -250,21 +240,18 @@
</div>
</template>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litdla/Event"
import
event
from
"../event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
(){
return
{
}
},
methods
:{
...
Event
},
methods
:{},
created
:
function
(){
}
...
...
src/business/litdla/views/Shisuan.vue
View file @
4a91a729
...
...
@@ -249,22 +249,18 @@
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litdla/Event"
import
event
from
"../event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
(){
return
{
}
},
methods
:{...
Event
},
methods
:{},
created
:
function
(){
}
...
...
src/business/litdla/views/Spbpame.vue
View file @
4a91a729
...
...
@@ -62,7 +62,7 @@
<c-col
:span=
"12"
>
<c-button
style=
" margin: 0px 0 10px 120px;"
size=
"small"
type=
"primary"
@
click=
"onLcrdocamepButdif"
>
size=
"small"
type=
"primary"
>
显示差异
</c-button>
</c-col>
...
...
@@ -71,7 +71,7 @@
<c-button
style=
" margin: 0px 0 10px 120px;"
disabled
size=
"small"
type=
"primary"
@
click=
"onLcrdocamepButadd"
>
size=
"small"
type=
"primary"
>
添加文本
</c-button>
</c-col>
...
...
@@ -80,7 +80,7 @@
<c-button
style=
" margin: 0px 0 10px 120px;"
disabled
size=
"small"
type=
"primary"
icon=
"el-icon-delete"
@
click=
"onLcrdocamepButdel"
>
size=
"small"
type=
"primary"
icon=
"el-icon-delete"
>
删除文本
</c-button>
</c-col>
...
...
@@ -88,15 +88,12 @@
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litame/Event"
import
event
from
"../event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
(){
return
{
flag1
:
true
,
...
...
@@ -148,7 +145,7 @@ export default {
}
},
methods
:{
...
Event
,
methods
:{
open
(
val
){
if
(
val
===
''
&&
!
(
this
.
model
.
lidgrp
.
blk
.
spcben
==
''
)){
this
.
$confirm
(
'是否确定要重置手动修改?'
,
'提示'
,{
...
...
@@ -229,7 +226,6 @@ export default {
}
},
created
:
function
(){
}
}
</
script
>
...
...
src/business/litdla/views/Spcbenp.vue
View file @
4a91a729
...
...
@@ -8,28 +8,25 @@
</c-col>
<c-col
:span=
"3"
>
<c-button
disabled
size=
"small"
type=
"primary"
icon=
"el-icon-search"
@
click=
"onSpcbenButtxmsel"
>
<c-button
disabled
size=
"small"
type=
"primary"
icon=
"el-icon-search"
>
...
</c-button>
</c-col>
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litopn/Event"
import
event
from
"../event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
(){
return
{
}
},
methods
:{
...
Event
},
methods
:{},
created
:
function
(){
}
...
...
src/business/litdla/views/Spcrcvp.vue
View file @
4a91a729
...
...
@@ -8,28 +8,24 @@
</c-col>
<c-col
:span=
"3"
>
<c-button
disabled
size=
"small"
type=
"primary"
icon=
"el-icon-search"
@
click=
"onSpcrcbButtxmsel"
>
<c-button
disabled
size=
"small"
type=
"primary"
icon=
"el-icon-search"
>
...
</c-button>
</c-col>
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litopn/Event"
import
event
from
"../event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
(){
return
{
}
},
methods
:{
...
Event
},
methods
:{},
created
:
function
(){
}
...
...
src/business/litdla/views/Sprpame.vue
View file @
4a91a729
...
...
@@ -63,7 +63,7 @@
<c-col
:span=
"12"
>
<c-button
style=
" margin: 0px 0 10px 120px;"
size=
"small"
type=
"primary"
@
click=
"onLcrdocamepButdif"
>
size=
"small"
type=
"primary"
>
显示差异
</c-button>
</c-col>
...
...
@@ -72,7 +72,7 @@
<c-button
style=
" margin: 0px 0 10px 120px;"
disabled
size=
"small"
type=
"primary"
@
click=
"onLcrdocamepButadd"
>
size=
"small"
type=
"primary"
>
添加文本
</c-button>
</c-col>
...
...
@@ -81,7 +81,7 @@
<c-button
style=
" margin: 0px 0 10px 120px;"
disabled
size=
"small"
type=
"primary"
icon=
"el-icon-delete"
@
click=
"onLcrdocamepButdel"
>
size=
"small"
type=
"primary"
icon=
"el-icon-delete"
>
删除文本
</c-button>
</c-col>
...
...
@@ -90,15 +90,12 @@
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Litame/Event"
import
event
from
"../event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
mixins
:
[
event
],
data
(){
return
{
flag1
:
true
,
...
...
@@ -150,7 +147,7 @@ export default {
}
},
methods
:{
...
Event
,
methods
:{
open
(
val
){
if
(
val
===
''
&&
!
(
this
.
model
.
lidgrp
.
blk
.
spcrcb
==
''
)){
this
.
$confirm
(
'是否确定要重置手动修改?'
,
'提示'
,{
...
...
src/business/litdla/views/index.vue
View file @
4a91a729
...
...
@@ -11,7 +11,7 @@
size=
"small"
:validate-on-rule-change=
"false"
>
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"
myT
abClick"
>
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"
t
abClick"
>
<el-tab-pane
label=
"业务信息"
name=
"ovwp"
>
<c-content>
<m-ovwp
:model=
"model"
:codes=
"codes"
/>
...
...
@@ -25,42 +25,39 @@
</c-content>
</el-tab-pane>
<el-tab-pane
label=
"统一授信"
name=
"limitbody,shisuan"
>
<c-content>
<div
class=
"eibs-tab"
>
<el-collapse
v-model=
"activeNames1"
>
<el-collapse-item
title=
"统一授信"
name=
"limitbody"
>
<m-limitbody
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"试算结果"
name=
"shisuan"
>
<m-shisuan
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
</el-collapse>
</div>
</c-content>
</el-tab-pane>
<el-tab-pane
label=
"费用/账务"
name=
"engp,setpan,glepan"
>
<!--PD000001 -->
<el-tab-pane
label=
"统一授信"
name=
"limitbody"
>
<c-content>
<div
class=
"eibs-tab"
>
<el-collapse
v-model=
"activeNames"
>
<el-collapse-item
title=
"表外记账"
name=
"engp"
>
<!-- 表外记账 -->
<m-engp
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"结算"
name=
"setpan"
>
<!-- 结算 -->
<m-setpan
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<el-collapse-item
title=
"会计分录"
name=
"glepan"
>
<!-- 会计分录 -->
<m-glepan
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
</el-collapse>
</div>
<m-limitbody
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--PD000027 -->
<el-tab-pane
label=
"表外记账"
name=
"engp"
>
<c-content>
<!-- 表外记账 -->
<m-engp
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<!--PD000027 -->
<el-tab-pane
label=
"费用/账务"
name=
"setmod"
>
<c-content>
<m-setmod
:model=
"model"
:codes=
"codes"
@
changeSetmodModel=
"changeSetmodModel"
/>
</c-content>
</el-tab-pane>
<!--PD000027 -->
<el-tab-pane
label=
"会计分录"
name=
"glepan"
>
<c-content>
<m-glentry
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-tab-pane>
<el-tab-pane
label=
"备查/附言"
name=
"coninfp"
>
<c-content>
<div
class=
"eibs-tab"
>
...
...
@@ -89,10 +86,10 @@
</c-tabs>
</el-form>
<c-grid-ety-prompt-dialog
<c-grid-ety-prompt-dialog
ref=
"etyDialog"
:promptData=
"promptData"
v-on:select-ety=
"selectEty
"
@
select-ety=
"selectGridEtyPromptData
"
>
</c-grid-ety-prompt-dialog>
...
...
@@ -107,14 +104,12 @@
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
CodeTable
from
"~/config/CodeTable"
import
Litdla
from
"~/model/Litdla"
import
commonProcess
from
"~/mixin/commonProcess"
import
commonFuncs
from
"~/mixin/commonFuncs"
import
Check
from
"~/model/Litdla/Check"
import
Default
from
"~/model/Litdla/Default"
import
Pattern
from
"~/model/Litdla/Pattern"
import
Litdla
from
"../model"
import
formRules
from
'../model/check'
;
import
operationFunc
from
"~/mixin/operationFunc"
;
import
event
from
"../event"
;
import
Accp
from
"./Accp"
import
Amep
from
"./Amep"
import
Ovwp
from
"./Ovwp"
...
...
@@ -129,14 +124,16 @@ import Dogp from "./Dogp"
import
Dorp
from
"./Dorp"
import
Shisuan
from
"./Shisuan"
import
Engp
from
"~/views/Public/Engp"
;
import
Ccvpan
from
"~/views/Public/Ccvpan"
;
import
Coninfp
from
"~/views/Public/Coninfp"
;
import
Setpan
from
"~/views/Public/Setpan"
;
import
Docpan
from
"~/views/Public/Docpan"
;
import
Doctre
from
"~/views/Public/Doctre"
;
import
Glepan
from
"~/views/Public/Glepan"
;
import
Limitbody
from
"~/views/Public/Limitbody"
;
import
Engp
from
"~/components/business/engp/views"
;
import
Ccvpan
from
"~/components/business/ccvpan/views"
;
import
Coninfp
from
"~/components/business/coninfp/views"
;
import
Docpan
from
"~/components/business/docpan/views"
;
import
Doctre
from
"~/components/business/doctre/views"
;
import
Setmod
from
"~/components/business/setmod/views"
;
import
Glentry
from
"~/components/business/glentry/views"
;
import
Limitbody
from
"~/components/business/limitbody/views"
;
import
Aamp
from
"./Aamp"
;
import
Spcrcvp
from
"./Spcrcvp"
;
import
Spcbenp
from
"./Spcbenp"
;
...
...
@@ -163,57 +160,79 @@ export default {
"m-inspame"
:
Inspame
,
"m-dogp"
:
Dogp
,
"m-dorp"
:
Dorp
,
"m-shisuan"
:
Shisuan
,
"m-engp"
:
Engp
,
"m-shisuan"
:
Shisuan
,
"m-ccvpan"
:
Ccvpan
,
"m-setpan"
:
Setpan
,
"m-glepan"
:
Glepan
,
"m-coninfp"
:
Coninfp
,
"m-docpan"
:
Docpan
,
"m-limitbody"
:
Limitbody
,
"m-doctre"
:
Doctre
"m-doctre"
:
Doctre
,
"m-setmod"
:
Setmod
,
"m-glentry"
:
Glentry
,
},
provide
()
{
return
{
root
:
this
}
},
mixins
:
[
commonProcess
,
commonFuncs
],
// 里面包含了Default、Check等的公共处理
mixins
:
[
operationFunc
,
event
],
// 里面包含了Default、Check等的公共处理
data
(){
return
{
tabVal
:
"ovwp"
,
trnName
:
"litdla"
,
model
:
new
Litdla
().
data
,
checkRules
:
Check
,
defaultRules
:
Default
,
pattern
:
Pattern
,
rules
:
null
,
codes
:
{...
CodeTable
},
rules
:
formRules
,
codes
:
{...
CodeTable
},
activeNames
:
[
"engp"
,
"coninfp"
,],
activeNames1
:
[
"limitbody"
],
}
},
methods
:{
myTabClick
(
tab
){
this
.
tabClick
(
tab
)
/**
* do it yourself
**/
}
},
created
:
async
function
(){
console
.
log
(
"进入litdla交易"
);
let
rtnmsg
=
await
this
.
init
({})
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
updateModel
(
rtnmsg
.
data
);
if
(
this
.
isInDisplay
)
{
this
.
restoreDisplay
();
promptData
:
{
title
:
'Select a Party'
,
columns
:
[
{
prop
:
'ptyInr'
,
label
:
'Party Number'
},
{
prop
:
'inr'
,
label
:
'Address Number'
},
{
prop
:
'branch'
,
label
:
'Branch Code'
},
{
prop
:
'bchName'
,
label
:
'Branch Name'
},
{
prop
:
'adrName'
,
label
:
'Address Name'
},
{
prop
:
'adr1'
,
label
:
'Address1'
},
{
prop
:
'locCty'
,
label
:
'City'
},
{
prop
:
'locZip'
,
label
:
'Zip'
},
{
prop
:
'bicCode'
,
label
:
'BIC'
}
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
],
data
:
[]
},
}
},
methods
:{},
mounted
()
{
this
.
init
()
},
}
</
script
>
<
style
>
...
...
src/routers/modules/business.js
View file @
4a91a729
...
...
@@ -44,6 +44,7 @@ const Business = [
{
path
:
'brtcsg'
,
component
:
()
=>
import
(
'~/business/brtcsg/views'
),
name
:
'brtcsg'
,
meta
:
{
title
:
'进口信用证单据提货担保注销'
}
},
{
path
:
'litrog'
,
component
:
()
=>
import
(
'~/business/litrog/views'
),
name
:
'litrog'
,
meta
:
{
title
:
'进口信用证提货担保'
}
},
{
path
:
'gitenc'
,
component
:
()
=>
import
(
'~/business/gitenc/views'
),
name
:
'gitenc'
,
meta
:
{
title
:
'进口信用证单据提货担保注销'
}
},
{
path
:
'litdla'
,
component
:
()
=>
import
(
'~/business/litdla/views'
),
name
:
'litdla'
,
meta
:
{
title
:
'进口信用证减额修改接受'
}
},
{
path
:
'brtame'
,
component
:
()
=>
import
(
'~/business/brtame/views'
),
name
:
'brtame'
,
meta
:
{
title
:
'进口信用证单据提货担保修改'
}
},
{
path
:
'infbrd'
,
component
:
()
=>
import
(
'~/business/infbrd/views'
),
name
:
'infbrd'
,
meta
:
{
title
:
'进口信用证单据入口交易'
}
},
...
...
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