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
58009fbb
Commit
58009fbb
authored
Sep 13, 2022
by
nanrui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cltdav快照处理
parent
48ba2197
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
70 additions
and
45 deletions
+70
-45
index.vue
src/views/Business/Cltdav/index.vue
+48
-45
ReviewCltdav.vue
src/views/Review/Business/ReviewCltdav.vue
+20
-0
ReviewRouter.js
src/views/Review/ReviewRouter.js
+2
-0
No files found.
src/views/Business/Cltdav/index.vue
View file @
58009fbb
...
@@ -88,54 +88,56 @@ import Coninfp from "~/views/Public/Coninfp";
...
@@ -88,54 +88,56 @@ import Coninfp from "~/views/Public/Coninfp";
import
Doctre
from
"~/views/Public/Doctre"
;
import
Doctre
from
"~/views/Public/Doctre"
;
export
default
{
export
default
{
name
:
"Cltdav"
,
name
:
"Cltdav"
,
components
:
{
components
:
{
"m-sel"
:
Sel
,
"m-sel"
:
Sel
,
"m-account"
:
Account
,
"m-account"
:
Account
,
"m-setpan"
:
Setpan
,
"m-setpan"
:
Setpan
,
"m-engp"
:
Engp
,
"m-engp"
:
Engp
,
"m-glepan"
:
Glepan
,
"m-glepan"
:
Glepan
,
"m-docpan"
:
Docpan
,
"m-docpan"
:
Docpan
,
"m-doctre"
:
Doctre
,
"m-doctre"
:
Doctre
,
"m-coninfp"
:
Coninfp
,
"m-coninfp"
:
Coninfp
,
"m-ccvpan"
:
Ccvpan
,
"m-ccvpan"
:
Ccvpan
,
},
},
provide
()
{
provide
()
{
return
{
return
{
root
:
this
root
:
this
}
}
},
},
mixins
:
[
commonProcess
,
commonFuncs
],
// 里面包含了Default、Check等的公共处理
mixins
:
[
commonProcess
,
commonFuncs
],
// 里面包含了Default、Check等的公共处理
data
()
{
data
()
{
return
{
return
{
tabVal
:
"sel"
,
tabVal
:
"sel"
,
trnName
:
"cltdav"
,
trnName
:
"cltdav"
,
model
:
new
Cltdav
().
data
,
model
:
new
Cltdav
().
data
,
checkRules
:
Check
,
checkRules
:
Check
,
defaultRules
:
Default
,
defaultRules
:
Default
,
pattern
:
Pattern
,
pattern
:
Pattern
,
rules
:
null
,
rules
:
null
,
codes
:
{
...
CodeTable
},
codes
:
{
...
CodeTable
},
}
}
},
},
methods
:
{
methods
:
{
tabClick
()
{
tabClick
()
{
}
}
},
},
created
:
async
function
()
{
created
:
async
function
()
{
console
.
log
(
"进入cltdav交易"
);
console
.
log
(
"进入cltdav交易"
);
let
rtnmsg
=
await
this
.
init
({})
let
rtnmsg
=
await
this
.
init
({})
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
updateModel
(
rtnmsg
.
data
);
this
.
updateModel
(
rtnmsg
.
data
);
//TODO 处理数据逻辑
if
(
this
.
isInDisplay
)
{
this
.
restoreDisplay
();
}
}
else
{
}
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
else
{
}
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
}
}
}
}
</
script
>
</
script
>
<
style
>
<
style
>
</
style
>
</
style
>
\ No newline at end of file
src/views/Review/Business/ReviewCltdav.vue
0 → 100644
View file @
58009fbb
<
template
>
<ReviewWrapper>
<Cltdav></Cltdav>
</ReviewWrapper>
</
template
>
<
script
>
import
Cltdav
from
"~/views/Business/Cltdav"
;
import
{
ReviewWrapper
}
from
"~/components/gj-common.min.js"
;
export
default
{
name
:
"ReviewCltdav"
,
components
:
{
ReviewWrapper
,
Cltdav
},
created
()
{},
mounted
()
{},
};
</
script
>
<
style
></
style
>
\ No newline at end of file
src/views/Review/ReviewRouter.js
View file @
58009fbb
...
@@ -89,6 +89,7 @@ import ReviewLitcan from "./Business/ReviewLitcan.vue";
...
@@ -89,6 +89,7 @@ import ReviewLitcan from "./Business/ReviewLitcan.vue";
import
ReviewBetamc
from
"./Business/ReviewBetamc.vue"
;
import
ReviewBetamc
from
"./Business/ReviewBetamc.vue"
;
import
ReviewCptcan
from
"./Business/ReviewCptcan.vue"
;
import
ReviewCptcan
from
"./Business/ReviewCptcan.vue"
;
import
ReviewCptrep
from
"./Business/ReviewCptrep.vue"
;
import
ReviewCptrep
from
"./Business/ReviewCptrep.vue"
;
import
ReviewCltdav
from
"./Business/ReviewCltdav.vue"
;
const
ReviewRouter
=
[
const
ReviewRouter
=
[
...
@@ -191,6 +192,7 @@ const ReviewRouter = [
...
@@ -191,6 +192,7 @@ const ReviewRouter = [
{
path
:
"cctdcr"
,
component
:
ReviewCctdcr
,
name
:
"ReviewCctdcr"
,
meta
:
{
title
:
"复核-Cctdcr"
}
},
{
path
:
"cctdcr"
,
component
:
ReviewCctdcr
,
name
:
"ReviewCctdcr"
,
meta
:
{
title
:
"复核-Cctdcr"
}
},
{
path
:
"ccttra"
,
component
:
ReviewCcttra
,
name
:
"ReviewCcttra"
,
meta
:
{
title
:
"复核-Ccttra"
}
},
{
path
:
"ccttra"
,
component
:
ReviewCcttra
,
name
:
"ReviewCcttra"
,
meta
:
{
title
:
"复核-Ccttra"
}
},
{
path
:
"lttopn"
,
component
:
ReviewLttopn
,
name
:
"ReviewLttopn"
,
meta
:
{
title
:
"复核-Lttopn"
}
},
{
path
:
"lttopn"
,
component
:
ReviewLttopn
,
name
:
"ReviewLttopn"
,
meta
:
{
title
:
"复核-Lttopn"
}
},
{
path
:
"cltdav"
,
component
:
ReviewCltdav
,
name
:
"ReviewCltdav"
,
meta
:
{
title
:
"复核-Cltdav"
}
},
{
path
:
"Cptati"
,
component
:
ReviewCptati
,
name
:
"ReviewCptati"
,
meta
:
{
title
:
"复核-Cptati"
}
},
{
path
:
"Cptati"
,
component
:
ReviewCptati
,
name
:
"ReviewCptati"
,
meta
:
{
title
:
"复核-Cptati"
}
},
{
path
:
"Cptato"
,
component
:
ReviewCptato
,
name
:
"ReviewCptato"
,
meta
:
{
title
:
"复核-Cptato"
}
},
{
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