fix主题显示bug
This commit is contained in:
parent
b6412e9e6e
commit
07f49a3d0c
@ -419,39 +419,6 @@ aside {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
/* text color */
|
||||
.text-navy {
|
||||
color: #1ab394;
|
||||
}
|
||||
|
||||
.text-primary {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.text-success {
|
||||
color: #1c84c6;
|
||||
}
|
||||
|
||||
.text-info {
|
||||
color: #23c6c8;
|
||||
}
|
||||
|
||||
.text-warning {
|
||||
color: #f8ac59;
|
||||
}
|
||||
|
||||
.text-danger {
|
||||
color: #ed5565;
|
||||
}
|
||||
|
||||
.text-muted {
|
||||
color: #888888;
|
||||
}
|
||||
|
||||
/* image */
|
||||
.img-circle {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.img-lg {
|
||||
width: 120px;
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
<tags-view v-if="needTagsView" />
|
||||
</div>
|
||||
<app-main />
|
||||
<right-panel v-if="showSettings">
|
||||
<right-panel>
|
||||
<settings />
|
||||
</right-panel>
|
||||
</div>
|
||||
|
||||
@ -4,7 +4,7 @@ import Cookies from 'js-cookie'
|
||||
|
||||
import Element from 'element-ui'
|
||||
import 'normalize.css/normalize.css' // a modern alternative to CSS resets
|
||||
import '@/assets/styles/element-variables.scss'
|
||||
import './assets/styles/element-variables.scss'
|
||||
import '@/assets/styles/index.scss' // global css
|
||||
|
||||
import App from './App'
|
||||
|
||||
@ -97,8 +97,8 @@ import {
|
||||
import { downloadFile } from "@/utils/zipdownload.js";
|
||||
import importTable from "./importTable";
|
||||
import { Loading } from "element-ui";
|
||||
import hljs from 'highlight.js'
|
||||
import 'highlight.js/styles/idea.css' //这里有多个样式,自己可以根据需要切换
|
||||
import hljs from "highlight.js";
|
||||
import "highlight.js/styles/idea.css"; //这里有多个样式,自己可以根据需要切换
|
||||
|
||||
export default {
|
||||
name: "CodeGenerator",
|
||||
@ -159,8 +159,11 @@ export default {
|
||||
* 编辑表格
|
||||
*/
|
||||
handleEditTable(row) {
|
||||
console.log(row);
|
||||
this.$router.push("/tool/gen/editTable?tableId=" + row.tableId);
|
||||
this.$router.push({
|
||||
path: "/gen/editTable",
|
||||
params: { tableId: row.tableId },
|
||||
});
|
||||
// this.$router.push({ path: "/job/log", params: param });
|
||||
},
|
||||
// 代码预览
|
||||
handlePreview(row) {
|
||||
|
||||
@ -98,7 +98,8 @@ module.exports = {
|
||||
inline: /runtime\..*\.js$/
|
||||
}])
|
||||
.end()
|
||||
config.optimization.splitChunks({
|
||||
config
|
||||
.optimization.splitChunks({
|
||||
chunks: 'all',
|
||||
cacheGroups: {
|
||||
libs: {
|
||||
@ -123,8 +124,8 @@ module.exports = {
|
||||
})
|
||||
config.optimization.runtimeChunk('single'),
|
||||
{
|
||||
from: path.resolve(__dirname, './public/robots.txt'),//防爬虫文件
|
||||
to: './',//到根目录下
|
||||
from: path.resolve(__dirname, './public/robots.txt'), //防爬虫文件
|
||||
to: './' //到根目录下
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user