huangbin 4 лет назад
Родитель
Сommit
a6c55935a9
2 измененных файлов с 4 добавлено и 1 удалено
  1. 0 1
      src/common/constants/buttonType.ts
  2. 4 0
      src/common/setup/contextMenu/index.ts

+ 0 - 1
src/common/constants/buttonType.ts

@@ -1,6 +1,5 @@
 export interface ButtonType {
     detail: string; // 详情
-    add: string; // 新增
 
     custom_info_btn_add: string; // 客户资料 添加
     custom_info_btn_modify: string; // 客户资料 修改

+ 4 - 0
src/common/setup/contextMenu/index.ts

@@ -35,6 +35,10 @@ export function getBtnList(menuType: keyof MenuType) {
     } else {
         console.warn(`menuType: ${menuType}未找到`)
     }
+    // 详情(所有页面都可以看到,没有权限之分)
+    const { openAction } = openModal('detail')
+    forDataBtn.value.push({ lable: '详情', callback: openAction })
+
     onUnmounted(() => {
         sessionStorageUtil.removeItem(name)
     });