隐藏不需要的节点增加用户第三方余额查询
This commit is contained in:
parent
a2a18a11ac
commit
9e1c941275
|
@ -65,12 +65,12 @@ export function carouselChang(id:number,type:Number,img_url:string) {
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
export function getAll() {
|
export function getAll() {
|
||||||
return axios.post<res_carousel>('/api/v1/ExchangeRate/lists');
|
return axios.post<res_carousel>('/admin/api/v1/ExchangeRate/lists');
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 更新汇率
|
* 更新汇率
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
export function setAll(item:any) {
|
export function setAll(item:any) {
|
||||||
return axios.post<res_carousel>('/api/v1/ExchangeRate/updateId',item);
|
return axios.post<res_carousel>('/admin/api/v1/ExchangeRate/updateId',item);
|
||||||
}
|
}
|
|
@ -65,12 +65,12 @@ export function carouselChang(id:number,type:Number,img_url:string) {
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
export function getAll() {
|
export function getAll() {
|
||||||
return axios.post<res_carousel>('/api/v1/dictionary/lists');
|
return axios.post<res_carousel>('/admin/api/v1/dictionary/lists');
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 更新汇率
|
* 更新汇率
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
export function setAll(item:any) {
|
export function setAll(item:any) {
|
||||||
return axios.post<res_carousel>('/api/v1/dictionary/updateId',item);
|
return axios.post<res_carousel>('/admin/api/v1/dictionary/updateId',item);
|
||||||
}
|
}
|
|
@ -23,16 +23,16 @@ const DASHBOARD: AppRouteRecordRaw = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
// {
|
||||||
path: 'monitor',
|
// path: 'monitor',
|
||||||
name: 'Monitor',
|
// name: 'Monitor',
|
||||||
component: () => import('@/views/dashboard/monitor/index.vue'),
|
// component: () => import('@/views/dashboard/monitor/index.vue'),
|
||||||
meta: {
|
// meta: {
|
||||||
locale: 'menu.dashboard.monitor',
|
// locale: 'menu.dashboard.monitor',
|
||||||
requiresAuth: true,
|
// requiresAuth: true,
|
||||||
roles: ['admin'],
|
// roles: ['admin'],
|
||||||
},
|
// },
|
||||||
},
|
// },
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue