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
73ad61a3
Commit
73ad61a3
authored
3 years ago
by
cl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cl clttra cltset
parent
4c06093e
master
…
bochk-demo-202202
bochk-poc
bochk-poc-1113
ceb-demo-202201
development-202206
origin/development-202206
revert-594e4a5c
revert-8c42ad65
revert-d0d76887
settle-test-20230110
train
vue-gjjs-template
No related merge requests found
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
47 additions
and
38 deletions
+47
-38
Coninfp.vue
src/views/Business/Clttra/Coninfp.vue
+11
-13
Sel.vue
src/views/Business/Clttra/Sel.vue
+0
-0
index.vue
src/views/Business/Clttra/index.vue
+32
-25
SideMenu.vue
src/views/Layout/SideMenu.vue
+4
-0
No files found.
src/views/Business/Clttra/Coninfp.vue
View file @
73ad61a3
...
...
@@ -88,14 +88,14 @@
</el-form-item>
</c-col>
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
;
import
CommonProcess
from
"~/mixin/CommonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
Event
from
"~/model/Clttra/Event"
;
</
template
>
<
script
>
import
Api
from
"~/service/Api"
;
import
CommonProcess
from
"~/mixin/CommonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
Event
from
"~/model/Clttra/Event"
;
export
default
{
export
default
{
inject
:
[
'root'
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
CommonProcess
],
...
...
@@ -104,8 +104,7 @@
},
methods
:
{
...
Event
},
created
:
function
()
{},
};
</
script
>
<
style
>
</
style
>
\ No newline at end of file
};
</
script
>
<
style
>
</
style
>
This diff is collapsed.
Click to expand it.
src/views/Business/Clttra/
Clttra
.vue
→
src/views/Business/Clttra/
Sel
.vue
View file @
73ad61a3
File moved
This diff is collapsed.
Click to expand it.
src/views/Business/Clttra/index.vue
View file @
73ad61a3
<
template
>
<c-page
title=
"打包托收催收"
>
<div
class=
"eContainer"
>
<c-function-btn
:handleSubmit=
"handleSubmit"
:handleCheck=
"handleCheck"
:handleStash=
"handleStash"
>
<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>
...
...
@@ -17,8 +14,8 @@
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"tabClick"
>
<!--PD000002 -->
<el-tab-pane
label=
"内容"
name=
"
clttra
"
>
<m-
clttra
:model=
"model"
:codes=
"codes"
/>
<el-tab-pane
label=
"内容"
name=
"
Sel
"
>
<m-
Sel
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<!--PD000000 -->
<el-tab-pane
label=
"费用及账务"
name=
"setpan"
>
...
...
@@ -32,6 +29,9 @@
<el-tab-pane
label=
"分录信息"
name=
"glepan"
>
<m-glepan
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<el-tab-pane
label=
"保证金"
name=
"ccvpan"
>
<m-ccvpan
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<!--PD000529 -->
<el-tab-pane
label=
"面函及报文"
name=
"docpan"
>
<m-docpan
:model=
"model"
:codes=
"codes"
/>
...
...
@@ -49,30 +49,37 @@
</c-tabs>
</el-form>
</div>
</c-page>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
CodeTable
from
"~/config/CodeTable"
import
Clttra
from
"~/model/Clttra"
import
CommonProcess
from
"~/mixin/CommonProcess"
import
Check
from
"~/model/Clttra/Check"
import
Default
from
"~/model/Clttra/Default"
import
Pattern
from
"~/model/Clttra/Pattern"
import
Docpan
from
"./Docpan"
import
Doctre
from
"./Doctre"
import
Coninfp
from
"./Coninfp"
import
Setpan
from
"./Setpan"
import
Engp
from
"./Engp"
import
Glepan
from
"./Glepan"
import
Api
from
"~/service/Api"
;
import
Utils
from
"~/utils/index"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
Clttra
from
"~/model/Clttra"
;
import
CommonProcess
from
"~/mixin/CommonProcess"
;
import
Check
from
"~/model/Clttra/Check"
;
import
Default
from
"~/model/Clttra/Default"
;
import
Pattern
from
"~/model/Clttra/Pattern"
;
import
Sel
from
"./Sel"
;
import
Setpan
from
"~/views/Public/Setpan"
;
import
Docpan
from
"~/views/Public/Docpan"
;
import
Engp
from
"~/views/Public/Engp"
;
import
Glepan
from
"~/views/Public/Glepan"
;
import
Ccvpan
from
"~/views/Public/Ccvpan"
;
import
Coninfp
from
"~/views/Public/Coninfp"
;
import
Doctre
from
"./Doctre"
;
export
default
{
name
:
"Clttra"
,
components
:{
"m-clttra"
:
Clttra
,
"m-docpan"
:
Docpan
,
"m-doctre"
:
Doctre
,
"m-coninfp"
:
Coninfp
,
"m-setpan"
:
Setpan
,
"m-Sel"
:
Sel
,
"m-setpan"
:
Setpan
,
"m-engp"
:
Engp
,
"m-glepan"
:
Glepan
,
"m-docpan"
:
Docpan
,
"m-doctre"
:
Doctre
,
"m-coninfp"
:
Coninfp
,
"m-ccvpan"
:
Ccvpan
,
},
provide
()
{
return
{
...
...
This diff is collapsed.
Click to expand it.
src/views/Layout/SideMenu.vue
View file @
73ad61a3
...
...
@@ -90,6 +90,10 @@ export default {
{
inifrm
:
"lttopn"
,
ininam
:
"转让证开立"
,
pntmiu
:
"8"
},
{
inifrm
:
"lttame"
,
ininam
:
"转让证修改"
,
pntmiu
:
"8"
},
{
inifrm
:
"lttcan"
,
ininam
:
"转让证注销"
,
pntmiu
:
"8"
},
{
inifrm
:
"9"
,
ininam
:
"打包托收"
,
pntmiu
:
""
},
{
inifrm
:
"cltdav"
,
ininam
:
"打包托收开立"
,
pntmiu
:
"9"
},
{
inifrm
:
"clttra"
,
ininam
:
"打包托收催收"
,
pntmiu
:
"9"
},
{
inifrm
:
"cltset"
,
ininam
:
"打包托收解包"
,
pntmiu
:
"9"
},
],
menus
:
[],
};
...
...
This diff is collapsed.
Click to expand it.
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