From 5d4d64bf94fa0b36d97afe25e949c81316965b27 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期一, 04 九月 2023 15:05:24 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.73.113:9001/r/lims-before
---
src/App.vue | 176 ++++++++++++++++++++++++++++++----------------------------
1 files changed, 90 insertions(+), 86 deletions(-)
diff --git a/src/App.vue b/src/App.vue
index f9aafd2..6b43b77 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,12 +1,14 @@
<template>
- <div id="app">
- <router-view />
- </div>
+ <div id="app">
+ <router-view />
+ </div>
</template>
<script>
+import GlobalClickMixin from "@/utils/GlobalClickMixin";
export default {
- name: 'App',
+ mixins: [GlobalClickMixin], // 浣跨敤娣峰叆
+ name: 'App',
mounted() {
document.title = "瑁呭鐢电紗 lims 绯荤粺"
}
@@ -14,86 +16,88 @@
</script>
<style>
- #app{
- overflow: hidden !important;
- }
-
- .breadcrumb-container{
- height: 40px;
- }
- .app-main{
- margin-top: 41px !important;
- }
-
- .el-menu-item{
- width: 100%;
- }
-
- /* 鍏ㄥ眬妯℃�佹鏍峰紡 */
- .el-dialog{
- border-radius: 10px;
- overflow: hidden;
- }
-
- .el-dialog__header,.el-message-box__header {
- box-sizing: border-box;
- height: 46px;
- border-bottom: 1px solid rgb(238, 238, 238);
- padding: 0px;
- padding-left: 18px;
- display: flex;
- align-items: center;
- background-color: #069cff;
- }
-
- .el-dialog__header *{
- font-size: 16px !important;
- color: #fff;
- }
-
- .el-message-box{
- border: 0;
- border-radius: 15px;
- }
-
- .el-message-box__header * {
- font-size: 16px !important;
- color: #fff !important;
- }
-
- .el-dialog__headerbtn .el-dialog__close{
- color: #fff;
- top: -20px;
- }
-
- .el-dialog__headerbtn{
- top: initial;
- }
-
- .el-dialog__footer .el-button * {
- font-size: 14px !important;
- }
-
- .el-dialog__footer .el-button {
- height: 36px;
- border: 1px solid rgba(190, 190, 190, 0.44);
- box-shadow: 0px 2px 4px rgba(220, 220, 220, 0.41);
- padding: 0 14px;
- }
-
- .ins_state_success{
- background-color: #67c23a;
- color: #fff;
- display: initial;
- padding: 6px 10px;
- border-radius: 4px;
- }
-
- .ins_state_error{
- background-color: #f56c6c;
- color: #fff;
- display: initial;
- padding: 6px 10px;
- border-radius: 4px;
- }
+#app {
+ overflow: hidden !important;
+}
+
+.breadcrumb-container {
+ height: 40px;
+}
+
+.app-main {
+ margin-top: 41px !important;
+}
+
+.el-menu-item {
+ width: 100%;
+}
+
+/* 鍏ㄥ眬妯℃�佹鏍峰紡 */
+.el-dialog {
+ border-radius: 10px;
+ overflow: hidden;
+}
+
+.el-dialog__header,
+.el-message-box__header {
+ box-sizing: border-box;
+ height: 46px;
+ border-bottom: 1px solid rgb(238, 238, 238);
+ padding: 0px;
+ padding-left: 18px;
+ display: flex;
+ align-items: center;
+ background-color: #069cff;
+}
+
+.el-dialog__header * {
+ font-size: 16px !important;
+ color: #fff;
+}
+
+.el-message-box {
+ border: 0;
+ border-radius: 15px;
+}
+
+.el-message-box__header * {
+ font-size: 16px !important;
+ color: #fff !important;
+}
+
+.el-dialog__headerbtn .el-dialog__close {
+ color: #fff;
+ top: -20px;
+}
+
+.el-dialog__headerbtn {
+ top: initial;
+}
+
+.el-dialog__footer .el-button * {
+ font-size: 14px !important;
+}
+
+.el-dialog__footer .el-button {
+ height: 36px;
+ border: 1px solid rgba(190, 190, 190, 0.44);
+ box-shadow: 0px 2px 4px rgba(220, 220, 220, 0.41);
+ padding: 0 14px;
+}
+
+.ins_state_success {
+ background-color: #67c23a;
+ color: #fff;
+ display: initial;
+ padding: 6px 10px;
+ border-radius: 4px;
+}
+
+.ins_state_error {
+ background-color: #f56c6c;
+ color: #fff;
+ display: initial;
+ padding: 6px 10px;
+ border-radius: 4px;
+}
</style>
--
Gitblit v1.9.3