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
446cb040
Commit
446cb040
authored
Sep 19, 2022
by
nanrui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cltset,clttra快照处理
parent
6dba1fda
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
53 additions
and
2 deletions
+53
-2
index.vue
src/views/Business/Cltset/index.vue
+3
-0
index.vue
src/views/Business/Clttra/index.vue
+6
-2
ReviewCltset.vue
src/views/Review/Business/ReviewCltset.vue
+20
-0
ReviewClttra.vue
src/views/Review/Business/ReviewClttra.vue
+20
-0
ReviewRouter.js
src/views/Review/ReviewRouter.js
+4
-0
No files found.
src/views/Business/Cltset/index.vue
View file @
446cb040
...
...
@@ -125,6 +125,9 @@ export default {
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
updateModel
(
rtnmsg
.
data
);
//TODO 处理数据逻辑
if
(
this
.
isInDisplay
)
{
this
.
restoreDisplay
();
}
this
.
model
.
bptbck
.
bptbckg
=
rtnmsg
.
data
.
ccdbatg
;
console
.
log
(
this
.
model
.
bptbck
.
bptbckg
);
...
...
src/views/Business/Clttra/index.vue
View file @
446cb040
...
...
@@ -12,7 +12,7 @@
</c-function-btn>
<el-form
:model=
"model"
:rules=
"rules"
ref=
"modelForm"
label-width=
"150px"
label-position=
"left"
size=
"small"
:validate-on-rule-change=
"false"
>
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"
t
abClick"
>
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"
myT
abClick"
>
<!--PD000002 -->
<el-tab-pane
label=
"内容"
name=
"Sel"
>
...
...
@@ -108,7 +108,8 @@ export default {
}
},
methods
:
{
tabClick
()
{
myTabClick
(
tab
)
{
this
.
tabClick
(
tab
)
}
},
created
:
async
function
()
{
...
...
@@ -116,6 +117,9 @@ export default {
let
rtnmsg
=
await
this
.
init
(
this
.
$route
.
query
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
if
(
this
.
isInDisplay
)
{
this
.
restoreDisplay
();
}
this
.
updateModel
(
rtnmsg
.
data
);
this
.
model
.
bptbck
.
bptbckg
=
rtnmsg
.
data
.
ccdbatg
;
console
.
log
(
this
.
model
.
bptbck
.
bptbckg
);
...
...
src/views/Review/Business/ReviewCltset.vue
0 → 100644
View file @
446cb040
<
template
>
<ReviewWrapper>
<Cltset></Cltset>
</ReviewWrapper>
</
template
>
<
script
>
import
Cltset
from
"~/views/Business/Cltset"
;
import
{
ReviewWrapper
}
from
"~/components/gj-common.min.js"
;
export
default
{
name
:
"ReviewCltset"
,
components
:
{
ReviewWrapper
,
Cltset
},
created
()
{},
mounted
()
{},
};
</
script
>
<
style
></
style
>
\ No newline at end of file
src/views/Review/Business/ReviewClttra.vue
0 → 100644
View file @
446cb040
<
template
>
<ReviewWrapper>
<Clttra></Clttra>
</ReviewWrapper>
</
template
>
<
script
>
import
Clttra
from
"~/views/Business/Clttra"
;
import
{
ReviewWrapper
}
from
"~/components/gj-common.min.js"
;
export
default
{
name
:
"ReviewClttra"
,
components
:
{
ReviewWrapper
,
Clttra
},
created
()
{},
mounted
()
{},
};
</
script
>
<
style
></
style
>
\ No newline at end of file
src/views/Review/ReviewRouter.js
View file @
446cb040
...
...
@@ -90,6 +90,8 @@ import ReviewBetamc from "./Business/ReviewBetamc.vue";
import
ReviewCptcan
from
"./Business/ReviewCptcan.vue"
;
import
ReviewCptrep
from
"./Business/ReviewCptrep.vue"
;
import
ReviewCltdav
from
"./Business/ReviewCltdav.vue"
;
import
ReviewCltset
from
"./Business/ReviewCltset.vue"
;
import
ReviewClttra
from
"./Business/ReviewClttra.vue"
;
const
ReviewRouter
=
[
...
...
@@ -193,6 +195,8 @@ const ReviewRouter = [
{
path
:
"ccttra"
,
component
:
ReviewCcttra
,
name
:
"ReviewCcttra"
,
meta
:
{
title
:
"复核-Ccttra"
}
},
{
path
:
"lttopn"
,
component
:
ReviewLttopn
,
name
:
"ReviewLttopn"
,
meta
:
{
title
:
"复核-Lttopn"
}
},
{
path
:
"cltdav"
,
component
:
ReviewCltdav
,
name
:
"ReviewCltdav"
,
meta
:
{
title
:
"复核-Cltdav"
}
},
{
path
:
"cltset"
,
component
:
ReviewCltset
,
name
:
"ReviewCltset"
,
meta
:
{
title
:
"复核-Cltset"
}
},
{
path
:
"clttra"
,
component
:
ReviewClttra
,
name
:
"ReviewClttra"
,
meta
:
{
title
:
"复核-Clttra"
}
},
{
path
:
"Cptati"
,
component
:
ReviewCptati
,
name
:
"ReviewCptati"
,
meta
:
{
title
:
"复核-Cptati"
}
},
{
path
:
"Cptato"
,
component
:
ReviewCptato
,
name
:
"ReviewCptato"
,
meta
:
{
title
:
"复核-Cptato"
}
},
...
...
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