parent
5b8d8ce9bf
commit
2240e6d964
|
|
@ -0,0 +1,13 @@
|
|||
import request from '@/utils/request';
|
||||
|
||||
class CommonAPI {
|
||||
/** 链接初始化接口 */
|
||||
static getInit() {
|
||||
return request({
|
||||
url: `diyapi/init`,
|
||||
method: 'post',
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default CommonAPI;
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
import { createRouter, createWebHashHistory, RouteRecordRaw } from "vue-router";
|
||||
import Layout from "@/layout/index.vue";
|
||||
import Layout from "@/views/layout/index.vue";
|
||||
|
||||
export const constantRoutes: RouteRecordRaw[] = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue