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
67e258f8
Commit
67e258f8
authored
Apr 13, 2023
by
panziyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
静态交易fec,gtx
parent
a891f1f7
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
50 additions
and
43 deletions
+50
-43
fec.js
src/service/test/fec.js
+9
-8
gtx.js
src/service/test/gtx.js
+5
-5
BusRouter.js
src/views/Business/BusRouter.js
+11
-11
Fec.js
src/views/Statics/Fec/model/Fec.js
+0
-0
index.vue
src/views/Statics/Fec/views/Dbafec/index.vue
+1
-1
index.vue
src/views/Statics/Fec/views/Dbdfec/index.vue
+1
-1
index.vue
src/views/Statics/Fec/views/Dbefec/index.vue
+1
-1
FecInfo.vue
src/views/Statics/Fec/views/Dbifec/FecInfo.vue
+0
-0
FeeInfo.vue
src/views/Statics/Fec/views/Dbifec/FeeInfo.vue
+0
-0
index.vue
src/views/Statics/Fec/views/Dbifec/index.vue
+1
-1
Infsea.vue
src/views/Statics/Fec/views/Inffec/Infsea.vue
+0
-0
index.vue
src/views/Statics/Fec/views/Inffec/index.vue
+0
-0
Gtx.js
src/views/Statics/Gtx/model/Gtx.js
+0
-0
index.vue
src/views/Statics/Gtx/views/Dbagtx/index.vue
+1
-1
index.vue
src/views/Statics/Gtx/views/Dbdgtx/index.vue
+1
-1
index.vue
src/views/Statics/Gtx/views/Dbegtx/index.vue
+1
-1
GtxInfo.vue
src/views/Statics/Gtx/views/Dbigtx/GtxInfo.vue
+0
-0
index.vue
src/views/Statics/Gtx/views/Dbigtx/index.vue
+1
-1
Infsea.vue
src/views/Statics/Gtx/views/Infgtx/Infsea.vue
+0
-0
index.vue
src/views/Statics/Gtx/views/Infgtx/index.vue
+0
-0
StaticsRouter.js
src/views/Statics/StaticsRouter.js
+17
-11
No files found.
src/service/test/fec.js
View file @
67e258f8
import
Api
from
"~/service/Api"
export
function
queryByPage
(
data
)
{
return
Api
.
post
(
"/
manager
/fec/queryByPage"
,
data
)
return
Api
.
post
(
"/
service
/fec/queryByPage"
,
data
)
}
export
function
queryDetailById
(
inr
)
{
return
Api
.
post
(
`/
manager
/fec/queryDetailById?inr=
${
inr
}
`
)
return
Api
.
post
(
`/
service
/fec/queryDetailById?inr=
${
inr
}
`
)
}
export
function
add
(
data
)
{
return
Api
.
post
(
"/
manager
/fec/add"
,
data
)
return
Api
.
post
(
"/
service
/fec/add"
,
data
)
}
export
function
edit
(
data
)
{
return
Api
.
post
(
"/
manager
/fec/edit"
,
data
)
return
Api
.
post
(
"/
service
/fec/edit"
,
data
)
}
export
function
deleteById
(
inr
)
{
return
Api
.
post
(
`/
manager
/fec/deleteById?inr=
${
inr
}
`
)
return
Api
.
post
(
`/
service
/fec/deleteById?inr=
${
inr
}
`
)
}
export
function
addFeeData
(
inr
,
data
)
{
return
Api
.
post
(
`/
manager
/fec/addFeeData?inr=
${
inr
}
`
,
data
)
return
Api
.
post
(
`/
service
/fec/addFeeData?inr=
${
inr
}
`
,
data
)
}
export
function
editFeeData
(
inr
,
data
)
{
return
Api
.
post
(
`/
manager
/fec/editFeeData?inr=
${
inr
}
`
,
data
)
return
Api
.
post
(
`/
service
/fec/editFeeData?inr=
${
inr
}
`
,
data
)
}
export
function
deleteFeeData
(
data
)
{
return
Api
.
post
(
`/
manager
/fec/deleteFeeData`
,
data
)
return
Api
.
post
(
`/
service
/fec/deleteFeeData`
,
data
)
}
\ No newline at end of file
src/service/test/gtx.js
View file @
67e258f8
import
Api
from
"~/service/Api"
export
function
queryByPage
(
data
)
{
return
Api
.
post
(
"/
manager
/gtx/queryByPage"
,
data
)
return
Api
.
post
(
"/
service
/gtx/queryByPage"
,
data
)
}
export
function
queryDetailById
(
inr
)
{
return
Api
.
post
(
`/
manager
/gtx/queryDetailById?inr=
${
inr
}
`
)
return
Api
.
post
(
`/
service
/gtx/queryDetailById?inr=
${
inr
}
`
)
}
export
function
add
(
data
)
{
return
Api
.
post
(
"/
manager
/gtx/add"
,
data
)
return
Api
.
post
(
"/
service
/gtx/add"
,
data
)
}
export
function
edit
(
data
)
{
return
Api
.
post
(
"/
manager
/gtx/edit"
,
data
)
return
Api
.
post
(
"/
service
/gtx/edit"
,
data
)
}
export
function
deleteById
(
inr
)
{
return
Api
.
post
(
`/
manager
/gtx/deleteById?inr=
${
inr
}
`
)
return
Api
.
post
(
`/
service
/gtx/deleteById?inr=
${
inr
}
`
)
}
src/views/Business/BusRouter.js
View file @
67e258f8
...
...
@@ -301,17 +301,17 @@ import Dbicur from "~/views/Statics/cur/views/Dbicur";
import
Dbecur
from
"~/views/Statics/cur/views/Dbecur"
;
import
Dbdcur
from
"~/views/Statics/cur/views/Dbdcur"
;
import
Inffec
from
"~/views/Statics/Inffec"
;
import
Dbifec
from
"~/views/Statics/Dbifec"
;
import
Dbafec
from
"~/views/Statics/Dbafec"
;
import
Dbefec
from
"~/views/Statics/Dbefec"
;
import
Dbdfec
from
"~/views/Statics/Dbdfec"
;
import
Infgtx
from
"~/views/Statics/Infgtx"
;
import
Dbigtx
from
"~/views/Statics/Dbigtx"
;
import
Dbagtx
from
"~/views/Statics/Dbagtx"
;
import
Dbegtx
from
"~/views/Statics/Dbegtx"
;
import
Dbdgtx
from
"~/views/Statics/Dbdgtx"
;
import
Inffec
from
"~/views/Statics/
Fec/views/
Inffec"
;
import
Dbifec
from
"~/views/Statics/
Fec/views/
Dbifec"
;
import
Dbafec
from
"~/views/Statics/
Fec/views/
Dbafec"
;
import
Dbefec
from
"~/views/Statics/
Fec/views/
Dbefec"
;
import
Dbdfec
from
"~/views/Statics/
Fec/views/
Dbdfec"
;
import
Infgtx
from
"~/views/Statics/
Gtx/views/
Infgtx"
;
import
Dbigtx
from
"~/views/Statics/
Gtx/views/
Dbigtx"
;
import
Dbagtx
from
"~/views/Statics/
Gtx/views/
Dbagtx"
;
import
Dbegtx
from
"~/views/Statics/
Gtx/views/
Dbegtx"
;
import
Dbdgtx
from
"~/views/Statics/
Gtx/views/
Dbdgtx"
;
import
Infpty
from
"~/views/Statics/Infpty"
;
import
Dbipty
from
"~/views/Statics/Dbipty"
;
...
...
src/views/Statics/
Dbifec
/Fec.js
→
src/views/Statics/
Fec/model
/Fec.js
View file @
67e258f8
File moved
src/views/Statics/Dbafec/index.vue
→
src/views/Statics/
Fec/views/
Dbafec/index.vue
View file @
67e258f8
...
...
@@ -3,7 +3,7 @@
</
template
>
<
script
>
import
Dbifec
from
"~/views/Statics/Dbifec"
;
import
Dbifec
from
"~/views/Statics/
Fec/views/
Dbifec"
;
export
default
{
name
:
"StaticsDbafec"
,
...
...
src/views/Statics/Dbdfec/index.vue
→
src/views/Statics/
Fec/views/
Dbdfec/index.vue
View file @
67e258f8
...
...
@@ -3,7 +3,7 @@
</
template
>
<
script
>
import
Dbifec
from
"~/views/Statics/Dbifec"
;
import
Dbifec
from
"~/views/Statics/
Fec/views/
Dbifec"
;
export
default
{
name
:
"StaticsDbdfec"
,
...
...
src/views/Statics/Dbefec/index.vue
→
src/views/Statics/
Fec/views/
Dbefec/index.vue
View file @
67e258f8
...
...
@@ -3,7 +3,7 @@
</
template
>
<
script
>
import
Dbifec
from
"~/views/Statics/Dbifec"
;
import
Dbifec
from
"~/views/Statics/
Fec/views/
Dbifec"
;
export
default
{
name
:
"StaticsDbefec"
,
...
...
src/views/Statics/Dbifec/FecInfo.vue
→
src/views/Statics/
Fec/views/
Dbifec/FecInfo.vue
View file @
67e258f8
File moved
src/views/Statics/Dbifec/FeeInfo.vue
→
src/views/Statics/
Fec/views/
Dbifec/FeeInfo.vue
View file @
67e258f8
File moved
src/views/Statics/Dbifec/index.vue
→
src/views/Statics/
Fec/views/
Dbifec/index.vue
View file @
67e258f8
...
...
@@ -54,7 +54,7 @@
<
script
>
import
Utils
from
"~/utils"
;
import
Fec
,
{
Pattern
}
from
"
.
/Fec.js"
;
import
Fec
,
{
Pattern
}
from
"
~/views/Statics/Fec/model
/Fec.js"
;
import
FecInfo
from
"./FecInfo.vue"
;
import
FeeInfo
from
"./FeeInfo.vue"
;
...
...
src/views/Statics/Inffec/Infsea.vue
→
src/views/Statics/
Fec/views/
Inffec/Infsea.vue
View file @
67e258f8
File moved
src/views/Statics/Inffec/index.vue
→
src/views/Statics/
Fec/views/
Inffec/index.vue
View file @
67e258f8
File moved
src/views/Statics/
Dbigtx
/Gtx.js
→
src/views/Statics/
Gtx/model
/Gtx.js
View file @
67e258f8
File moved
src/views/Statics/Dbagtx/index.vue
→
src/views/Statics/
Gtx/views/
Dbagtx/index.vue
View file @
67e258f8
...
...
@@ -3,7 +3,7 @@
</
template
>
<
script
>
import
Dbigtx
from
"
~/views/Statics
/Dbigtx"
;
import
Dbigtx
from
"
..
/Dbigtx"
;
export
default
{
name
:
"StaticsDbagtx"
,
...
...
src/views/Statics/Dbdgtx/index.vue
→
src/views/Statics/
Gtx/views/
Dbdgtx/index.vue
View file @
67e258f8
...
...
@@ -3,7 +3,7 @@
</
template
>
<
script
>
import
Dbigtx
from
"
~/views/Statics
/Dbigtx"
;
import
Dbigtx
from
"
..
/Dbigtx"
;
export
default
{
name
:
"StaticsDbdgtx"
,
...
...
src/views/Statics/Dbegtx/index.vue
→
src/views/Statics/
Gtx/views/
Dbegtx/index.vue
View file @
67e258f8
...
...
@@ -3,7 +3,7 @@
</
template
>
<
script
>
import
Dbigtx
from
"
~/views/Statics
/Dbigtx"
;
import
Dbigtx
from
"
..
/Dbigtx"
;
export
default
{
name
:
"StaticsDbegtx"
,
...
...
src/views/Statics/Dbigtx/GtxInfo.vue
→
src/views/Statics/
Gtx/views/
Dbigtx/GtxInfo.vue
View file @
67e258f8
File moved
src/views/Statics/Dbigtx/index.vue
→
src/views/Statics/
Gtx/views/
Dbigtx/index.vue
View file @
67e258f8
...
...
@@ -49,7 +49,7 @@
<
script
>
import
Utils
from
"~/utils"
;
import
Gtx
,
{
Pattern
}
from
"
.
/Gtx.js"
;
import
Gtx
,
{
Pattern
}
from
"
~/views/Statics/Gtx/model
/Gtx.js"
;
import
GtxInfo
from
"./GtxInfo.vue"
;
...
...
src/views/Statics/Infgtx/Infsea.vue
→
src/views/Statics/
Gtx/views/
Infgtx/Infsea.vue
View file @
67e258f8
File moved
src/views/Statics/Infgtx/index.vue
→
src/views/Statics/
Gtx/views/
Infgtx/index.vue
View file @
67e258f8
File moved
src/views/Statics/StaticsRouter.js
View file @
67e258f8
...
...
@@ -42,17 +42,17 @@ import Infswm from "./Swm/views/Infswm";
// import Dbecty from "./Dbecty";
// import Dbdcty from "./Dbdcty";
import
Inffec
from
"./Inffec"
;
import
Dbifec
from
"./Dbifec"
;
import
Dbafec
from
"./Dbafec"
;
import
Dbefec
from
"./Dbefec"
;
import
Dbdfec
from
"./Dbdfec"
;
import
Infgtx
from
"./Infgtx"
;
import
Dbigtx
from
"./Dbigtx"
;
import
Dbagtx
from
"./Dbagtx"
;
import
Dbegtx
from
"./Dbegtx"
;
import
Dbdgtx
from
"./Dbdgtx"
;
import
Inffec
from
"./
Fec/views/
Inffec"
;
import
Dbifec
from
"./
Fec/views/
Dbifec"
;
import
Dbafec
from
"./
Fec/views/
Dbafec"
;
import
Dbefec
from
"./
Fec/views/
Dbefec"
;
import
Dbdfec
from
"./
Fec/views/
Dbdfec"
;
import
Infgtx
from
"./
Gtx/views/
Infgtx"
;
import
Dbigtx
from
"./
Gtx/views/
Dbigtx"
;
import
Dbagtx
from
"./
Gtx/views/
Dbagtx"
;
import
Dbegtx
from
"./
Gtx/views/
Dbegtx"
;
import
Dbdgtx
from
"./
Gtx/views/
Dbdgtx"
;
import
Infcur
from
"./cur/views/Infcur"
;
import
Dbacur
from
"./cur/views/Dbacur"
;
...
...
@@ -181,6 +181,12 @@ const StaticsRouter = [
{
path
:
'dbaxrt'
,
component
:
Dbaxrt
,
name
:
'StaticsDbaxrt'
,
meta
:
{
title
:
'牌价新增'
}
},
{
path
:
'dbexrt/:inr'
,
component
:
Dbexrt
,
name
:
'StaticsDbexrt'
,
meta
:
{
title
:
(
tag
)
=>
{
return
'牌价修改: '
+
tag
.
params
.
inr
}
}
},
{
path
:
'dbdxrt/:inr'
,
component
:
Dbdxrt
,
name
:
'StaticsDbdxrt'
,
meta
:
{
title
:
(
tag
)
=>
{
return
'牌价删除: '
+
tag
.
params
.
inr
}
}
},
{
path
:
'inffec'
,
component
:
Inffec
,
name
:
'StaticsInffec'
,
meta
:
{
title
:
'费率查询'
}
},
{
path
:
'dbafec'
,
component
:
Dbafec
,
name
:
'StaticsDbafec'
,
meta
:
{
title
:
'费率新增'
}
},
{
path
:
'dbifec/:inr'
,
component
:
Dbifec
,
name
:
'StaticsDbifec'
,
meta
:
{
title
:
(
tag
)
=>
{
return
'费率详情: '
+
tag
.
params
.
inr
}
}
},
{
path
:
'dbefec/:inr'
,
component
:
Dbefec
,
name
:
'StaticsDbefec'
,
meta
:
{
title
:
(
tag
)
=>
{
return
'费率修改: '
+
tag
.
params
.
inr
}
}
},
{
path
:
'dbdfec/:inr'
,
component
:
Dbdfec
,
name
:
'StaticsDbdfec'
,
meta
:
{
title
:
(
tag
)
=>
{
return
'费率删除: '
+
tag
.
params
.
inr
}
}
},
]
export
default
StaticsRouter
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