Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pptist
Project
Project
Details
Activity
Releases
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
viitto
pptist
Commits
092b80ce
Commit
092b80ce
authored
May 09, 2024
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增水印管理
parent
27235db4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
310 additions
and
0 deletions
+310
-0
common.css
src/assets/styles/common.css
+3
-0
router.ts
src/router/router.ts
+7
-0
SettingService.ts
src/services/SettingService.ts
+16
-0
WaterMaker.vue
src/views/TeamCenter/WaterMaker.vue
+284
-0
No files found.
src/assets/styles/common.css
View file @
092b80ce
...
...
@@ -190,6 +190,9 @@ page {
/* left: 50% !important; */
/* margin-left: -2px !important; */
}
.f14
{
font-size
:
14px
;
}
.primary-borders-thin
{
border
:
1px
solid
#d14424
!important
;
}
...
...
src/router/router.ts
View file @
092b80ce
...
...
@@ -186,6 +186,13 @@ const routes: RouteRecordRaw[] = [
title
:
'成员管理'
}
},
{
path
:
'/a/w'
,
component
:
()
=>
import
(
'@/views/TeamCenter/WaterMaker.vue'
),
meta
:{
title
:
'水印设置'
}
},
{
path
:
'/a/order'
,
component
:
()
=>
import
(
'@/views/TeamCenter/Order.vue'
),
...
...
src/services/SettingService.ts
0 → 100644
View file @
092b80ce
import
Api
,{
HttpResponse
,
Result
}
from
'./../utils/request'
;
class
SettingService
{
static
async
SetWmAsync
(
parameters
:
any
):
Promise
<
HttpResponse
>
{
let
msg
=
parameters
return
Api
.
Post
(
"travel_set_wm"
,
msg
)
}
static
async
GetWmAsync
():
Promise
<
HttpResponse
>
{
let
msg
=
{}
return
Api
.
Post
(
"travel_get_wm"
,
msg
)
}
}
export
default
SettingService
;
\ No newline at end of file
src/views/TeamCenter/WaterMaker.vue
0 → 100644
View file @
092b80ce
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