Commit 092b80ce authored by 罗超's avatar 罗超

新增水印管理

parent 27235db4
......@@ -190,6 +190,9 @@ page {
/* left: 50% !important; */
/* margin-left: -2px !important; */
}
.f14{
font-size: 14px;
}
.primary-borders-thin{
border:1px solid #d14424 !important;
}
......
......@@ -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'),
......
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
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment