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
953458c4
Commit
953458c4
authored
Jul 17, 2023
by
panziyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
letdrw修改
parent
1fd138b2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
58 additions
and
27 deletions
+58
-27
buildCommons.js
src/business/letdrw/event/buildCommons.js
+8
-5
index.js
src/business/letdrw/model/index.js
+24
-0
index.vue
src/business/letdrw/views/index.vue
+26
-22
No files found.
src/business/letdrw/event/buildCommons.js
View file @
953458c4
...
@@ -50,14 +50,17 @@ export default {
...
@@ -50,14 +50,17 @@ export default {
},
},
cbsMap
:
{
cbsMap
:
{
MAX
:
model
.
ledgrp
.
cbs
.
max
,
MAX
:
model
.
ledgrp
.
cbs
.
max
,
OLDMAX
:
model
.
ledgrp
.
cbs
.
oldmax
,
OLDMAX
:
model
.
oldledgrp
.
cbs
.
max
,
OLDMAX2
:
model
.
oldledgrp
.
cbs
.
max2
,
MAX2
:
model
.
ledgrp
.
cbs
.
max2
,
MAX2
:
model
.
ledgrp
.
cbs
.
max2
,
NOM1
:
model
.
ledgrp
.
cbs
.
nom1
,
NOM1
:
model
.
ledgrp
.
cbs
.
nom1
,
OPN1
:
model
.
ledgrp
.
cbs
.
opn1
,
OPN1
:
model
.
ledgrp
.
cbs
.
opn1
,
MAC
:
model
.
ledgrp
.
cbs
.
mac
,
// MAC: model.ledgrp.cbs.mac,
MAC2
:
model
.
ledgrp
.
cbs
.
mac2
,
// MAC2: model.ledgrp.cbs.mac2,
OPC2
:
model
.
ledgrp
.
cbs
.
opc2
,
// OPC2: model.ledgrp.cbs.opc2,
CNF
:
model
.
ledgrp
.
cbs
.
cnf
,
// CNF: model.ledgrp.cbs.cnf,
BEDMAX
:
model
.
bedgrp
.
cbs
.
max
,
BEDMAX2
:
model
.
bedgrp
.
cbs
.
max2
,
},
},
ptsList
:
ptsptaList
,
ptsList
:
ptsptaList
,
transName
:
trnName
,
transName
:
trnName
,
...
...
src/business/letdrw/model/index.js
View file @
953458c4
...
@@ -11,6 +11,30 @@ export default class Letdrw {
...
@@ -11,6 +11,30 @@ export default class Letdrw {
folwupopt
:
''
folwupopt
:
''
},
},
number
:
''
,
number
:
''
,
oldledgrp
:
{
rec
:
{
expdat
:
''
,
nomton
:
''
,
shpdat
:
''
,
nomtop
:
''
,
prepertxts18
:
''
,
prepers18
:
''
},
cbs
:
{
max
:
{
cur
:
""
,
amt
:
""
,
},
max2
:
{
cur
:
""
,
amt
:
""
,
},
nom1
:
{
cur
:
""
,
amt
:
""
,
}
}
},
ledgrp
:
{
ledgrp
:
{
a2b
:
{
a2b
:
{
pts
:
new
Pts
().
data
,
pts
:
new
Pts
().
data
,
...
...
src/business/letdrw/views/index.vue
View file @
953458c4
...
@@ -28,24 +28,28 @@
...
@@ -28,24 +28,28 @@
</c-content>
</c-content>
</el-tab-pane>
</el-tab-pane>
<el-tab-pane
label=
"费用/账务"
name=
"engp,setpan,glepan
"
>
<el-tab-pane
label=
"表外记账"
name=
"engp
"
>
<c-content>
<c-content>
<div
class=
"eibs-tab"
>
<!-- 表外记账 -->
<el-collapse
v-model=
"activeNames"
>
<m-engp
:model=
"model"
:codes=
"codes"
/>
<el-collapse-item
title=
"表外记账"
name=
"engp"
>
</c-content>
<!-- 表外记账 -->
</el-tab-pane>
<m-engp
:model=
"model"
:codes=
"codes"
/>
</el-collapse-item>
<!--PD000027 -->
<el-collapse-item
title=
"结算"
name=
"setpan"
>
<el-tab-pane
label=
"费用/账务"
name=
"setmod"
>
<!-- 结算 -->
<c-content>
<m-setpan
:model=
"model"
:codes=
"codes"
/>
<m-setmod
</el-collapse-item>
:model=
"model"
<el-collapse-item
title=
"会计分录"
name=
"glepan"
>
:codes=
"codes"
<!-- 会计分录 -->
@
changeSetmodModel=
"changeSetmodModel"
<m-glepan
:model=
"model"
:codes=
"codes"
/>
/>
</el-collapse-item>
</c-content>
</el-collapse>
</el-tab-pane>
</div>
<!--PD000027 -->
<el-tab-pane
label=
"会计分录"
name=
"glepan"
>
<c-content>
<m-glentry
:model=
"model"
:codes=
"codes"
/>
</c-content>
</c-content>
</el-tab-pane>
</el-tab-pane>
...
@@ -103,12 +107,12 @@ import Addbcb from "./Addbcb";
...
@@ -103,12 +107,12 @@ import Addbcb from "./Addbcb";
import
Doxp
from
'~/views/Public/Doxp'
import
Doxp
from
'~/views/Public/Doxp'
import
Coninfp
from
'~/views/Public/Coninfp'
import
Coninfp
from
'~/views/Public/Coninfp'
import
Set
pan
from
'~/components/business/setmod/views'
import
Set
mod
from
'~/components/business/setmod/views'
import
Docpan
from
'~/views/Public/Docpan'
import
Docpan
from
'~/views/Public/Docpan'
import
Doctre
from
'~/views/Public/Doctre'
import
Doctre
from
'~/views/Public/Doctre'
import
Engp
from
'~/
views/Public/Engp
'
import
Engp
from
'~/
components/business/engp/views
'
import
Limitbody
from
'~/views/Public/Limitbody'
import
Limitbody
from
'~/views/Public/Limitbody'
import
Gle
pan
from
"~/views/Public/Glepan
"
;
import
Gle
ntry
from
"~/components/business/glentry/views
"
;
import
operationFunc
from
"@/mixin/operationFunc"
;
import
operationFunc
from
"@/mixin/operationFunc"
;
import
event
from
"@/business/letdrw/event"
;
import
event
from
"@/business/letdrw/event"
;
...
@@ -125,13 +129,13 @@ export default {
...
@@ -125,13 +129,13 @@ export default {
'm-doxp'
:
Doxp
,
'm-doxp'
:
Doxp
,
'm-revp'
:
Revp
,
'm-revp'
:
Revp
,
'm-engp'
:
Engp
,
'm-engp'
:
Engp
,
'm-set
pan'
:
Setpan
,
'm-set
mod'
:
Setmod
,
'm-coninfp'
:
Coninfp
,
'm-coninfp'
:
Coninfp
,
'm-docpan'
:
Docpan
,
'm-docpan'
:
Docpan
,
'm-doctre'
:
Doctre
,
'm-doctre'
:
Doctre
,
'm-srmp'
:
Srmp
,
'm-srmp'
:
Srmp
,
'm-limitbody'
:
Limitbody
,
'm-limitbody'
:
Limitbody
,
"m-gle
pan"
:
Glepan
,
"m-gle
ntry"
:
Glentry
,
},
},
provide
()
{
provide
()
{
return
{
return
{
...
...
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