huangbin 4 år sedan
förälder
incheckning
93387d530c
2 ändrade filer med 2 tillägg och 2 borttagningar
  1. 1 1
      src/layout/index.vue
  2. 1 1
      src/services/go/commonService/interface.ts

+ 1 - 1
src/layout/index.vue

@@ -37,7 +37,7 @@ export default defineComponent({
         const { isShowBottomPart, chooseMenu } = submitBottomIsShow();
         initData(() => {
             // 判断是否有单据
-            if (menuList.value.find((e: OperationTabMenu) => e.code === 'bottom')) {
+            if (menuList.value.find((e: OperationTabMenu) => e.code === 'bottom' && e.type === 4)) {
                 isShowBottomPart.value = true;
             }
             isShowBottomPart.value = true;

+ 1 - 1
src/services/go/commonService/interface.ts

@@ -41,7 +41,7 @@ export interface OperationTabMenu {
     rulekey: string; //对应权限主键,对应FUNCMENULIST表RESOURCECODE
     sort: number; //排序
     title: string; //标题
-    type: 1 | 2 | 3 | 5; //类型,1:菜单 2:按钮  3: 明细  5:管理端页面地址
+    type: 1 | 2 | 3 | 4 | 5; //类型,1:菜单 2:按钮  3: 明细 4:单据  5:管理端页面地址
     url: string;
     remark: string;
     children: OperationTabMenu[];