This commit is contained in:
2023-06-04 23:15:37 +08:00
parent 587f078d21
commit bdbda8b68e
17 changed files with 31669 additions and 8427 deletions

View File

@@ -1,12 +1,3 @@
<!--
- MineAdmin is committed to providing solutions for quickly building web applications
- Please view the LICENSE file that was distributed with this source code,
- For the full copyright and license information.
- Thank you very much for using MineAdmin.
-
- @Author X.Mo<root@imoi.cn>
- @Link https://gitee.com/xmo/mineadmin-vue
-->
<template>
<a-cascader
v-if="props.type === 'cascader'"

View File

@@ -22,6 +22,7 @@ function createService() {
// HTTP response 拦截器
service.interceptors.response.use(
(response) => {
// 请求正确情况
if (
(response.headers["content-disposition"] ||
!/^application\/json/.test(response.headers["content-type"])) &&

View File

@@ -3,16 +3,6 @@ import { reactive, ref } from "vue"
import verifyCode from "@cps/ma-verifyCode/index.vue"
import { useUserStore } from "@/store"
import { useRouter, useRoute } from "vue-router"
import { request } from "@/utils/request"
// 首页图片暂时不用
// request({
// url: "system/getBingBackgroundImage",
// timeout: 10000,
// method: "get"
// }).then((res) => {
// document.getElementById("background").style.backgroundImage = `url(${res.data.url})`
// })
const router = useRouter()
const route = useRoute()