🐞 fix: 修改部分页面会导致全局样式失效
This commit is contained in:
BIN
klp-ui/public/favicon.png
Normal file
BIN
klp-ui/public/favicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
@@ -5,7 +5,7 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
<meta name="renderer" content="webkit">
|
<meta name="renderer" content="webkit">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
||||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
<link rel="icon" href="<%= BASE_URL %>favicon.png">
|
||||||
<title><%= webpackConfig.name %></title>
|
<title><%= webpackConfig.name %></title>
|
||||||
<!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
|
<!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
|
||||||
<style>
|
<style>
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 19 KiB |
@@ -52,6 +52,9 @@ export default {
|
|||||||
isCollapse() {
|
isCollapse() {
|
||||||
return !this.sidebar.opened;
|
return !this.sidebar.opened;
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
console.log(this.sidebarRouters, sidebar);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -78,6 +78,15 @@
|
|||||||
v-hasPermi="['system:dict:export']"
|
v-hasPermi="['system:dict:export']"
|
||||||
>导出</el-button>
|
>导出</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<!-- <el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
plain
|
||||||
|
icon="el-icon-copy"
|
||||||
|
size="mini"
|
||||||
|
@click="handleCopy"
|
||||||
|
>复制</el-button>
|
||||||
|
</el-col> -->
|
||||||
<el-col :span="1.5">
|
<el-col :span="1.5">
|
||||||
<el-button
|
<el-button
|
||||||
type="warning"
|
type="warning"
|
||||||
@@ -396,7 +405,17 @@ export default {
|
|||||||
this.download('system/dict/data/export', {
|
this.download('system/dict/data/export', {
|
||||||
...this.queryParams
|
...this.queryParams
|
||||||
}, `data_${new Date().getTime()}.xlsx`)
|
}, `data_${new Date().getTime()}.xlsx`)
|
||||||
}
|
},
|
||||||
|
/** 复制按钮操作 */
|
||||||
|
// handleCopy() {
|
||||||
|
// // 复制字典进入系统剪切板,数据结构:{dictName: '', dictType: '', data: [
|
||||||
|
// //
|
||||||
|
// // ], status: '0', remark: ''}
|
||||||
|
// this.reset();
|
||||||
|
// this.open = true;
|
||||||
|
// this.title = "复制字典数据";
|
||||||
|
// this.form.dictType = this.queryParams.dictType;
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -61,7 +61,6 @@
|
|||||||
<script>
|
<script>
|
||||||
import { listStock } from "@/api/wms/stock";
|
import { listStock } from "@/api/wms/stock";
|
||||||
import { listWarehouse } from "@/api/wms/warehouse";
|
import { listWarehouse } from "@/api/wms/warehouse";
|
||||||
import 'element-ui/lib/theme-chalk/index.css';
|
|
||||||
import ReaTree from './panels/reattree.vue';
|
import ReaTree from './panels/reattree.vue';
|
||||||
import MaterialBar from './panels/bar.vue';
|
import MaterialBar from './panels/bar.vue';
|
||||||
import TrendChart from './panels/trendChart.vue';
|
import TrendChart from './panels/trendChart.vue';
|
||||||
|
|||||||
@@ -133,7 +133,6 @@ import { addStockIoWithDetail } from "@/api/wms/stockIo";
|
|||||||
import RawMaterialSelect from "@/components/KLPService/RawMaterialSelect";
|
import RawMaterialSelect from "@/components/KLPService/RawMaterialSelect";
|
||||||
import ProductSelect from "@/components/KLPService/ProductSelect";
|
import ProductSelect from "@/components/KLPService/ProductSelect";
|
||||||
import WarehouseSelect from "@/components/WarehouseSelect";
|
import WarehouseSelect from "@/components/WarehouseSelect";
|
||||||
import StockBox from './box';
|
|
||||||
import RawMaterialInfo from "@/components/KLPService/Renderer/RawMaterialInfo";
|
import RawMaterialInfo from "@/components/KLPService/Renderer/RawMaterialInfo";
|
||||||
import ProductInfo from "@/components/KLPService/Renderer/ProductInfo";
|
import ProductInfo from "@/components/KLPService/Renderer/ProductInfo";
|
||||||
import BomInfoMini from "@/components/KLPService/Renderer/BomInfoMini";
|
import BomInfoMini from "@/components/KLPService/Renderer/BomInfoMini";
|
||||||
@@ -148,7 +147,6 @@ export default {
|
|||||||
WarehouseSelect,
|
WarehouseSelect,
|
||||||
RawMaterialSelect,
|
RawMaterialSelect,
|
||||||
ProductSelect,
|
ProductSelect,
|
||||||
StockBox,
|
|
||||||
RawMaterialInfo,
|
RawMaterialInfo,
|
||||||
ProductInfo,
|
ProductInfo,
|
||||||
BomInfoMini,
|
BomInfoMini,
|
||||||
|
|||||||
Reference in New Issue
Block a user