ソースを参照

[Style 0000] 模态框及表格操作栏样式优化

houzekong 4 ヶ月 前
コミット
e207ed8072

+ 9 - 0
src/api/sys/menu.ts

@@ -99,3 +99,12 @@ export function getBackMenuAndPerms() {
 //     defHttp.get({ url: Api.SwitchVue3Menu });
 //   });
 // };
+
+export function getEnfMineTree() {
+  return defHttp.get<EnfMineTreeItem[]>(
+    { url: Api.getEnfMineTreeData },
+    {
+      isTransformResponse: false,
+    }
+  );
+}

+ 1 - 1
src/components/Loading/src/Loading.vue

@@ -57,7 +57,7 @@
     height: 100%;
     justify-content: center;
     align-items: center;
-    background-color: rgba(240, 242, 245, 0.4);
+    background-color: rgba(240, 242, 245);
 
     &.absolute {
       position: absolute;

+ 0 - 1
src/components/Table/src/BasicTable.vue

@@ -14,7 +14,6 @@
       <template #[item]="data" v-for="item in ['formTitle', 'resetBefore', 'submitBefore', 'advanceBefore', 'advanceAfter']">
         <slot :name="item" v-bind="data || {}"></slot>
       </template>
-      <component :is="getBindValues.formTitle"></component>
       <template #[replaceFormSlotKey(item)]="data" v-for="item in getFormSlotKeys">
         <slot :name="item" v-bind="data || {}"></slot>
       </template>

+ 6 - 0
src/design/index.less

@@ -327,3 +327,9 @@ html[data-theme='dark'] {
     color: red !important;
   }
 }
+
+.action-btn {
+  cursor: pointer;
+  border: none;
+  // padding: 4px;
+}