From eed29804d3973801f8eac3ad9bead1e608f05b6a Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期六, 20 七月 2024 22:31:56 +0800 Subject: [PATCH] 工单及自定义弹出窗口更新 --- src/views/tigerprojects/system/lowcode/entityts/BAS_LABEL_TEMP.ts | 88 ++++++++++++++++++++++++------------------- 1 files changed, 49 insertions(+), 39 deletions(-) diff --git a/src/views/tigerprojects/system/lowcode/entityts/BAS_LABEL_TEMP.ts b/src/views/tigerprojects/system/lowcode/entityts/BAS_LABEL_TEMP.ts index 6cef314..3eb8691 100644 --- a/src/views/tigerprojects/system/lowcode/entityts/BAS_LABEL_TEMP.ts +++ b/src/views/tigerprojects/system/lowcode/entityts/BAS_LABEL_TEMP.ts @@ -4,12 +4,54 @@ * @version: * @Date: 2024-06-19 20:34:27 * @LastEditors: Ben Lin - * @LastEditTime: 2024-06-24 15:52:02 + * @LastEditTime: 2024-07-20 22:14:50 */ import { ActionItem, BasicColumn } from '/@/components/Table'; function _default() { + const ActionColumn: BasicColumn = { + width: 120, + title: '鎿嶄綔', + dataIndex: 'action', + slots: { customRender: 'action' }, + fixed: 'right', + }; + + /** + * @description: 浜涜嚜瀹氫箟鏂规硶 + * @return {*} + */ + const methods = { + /** + * @description: 鑾峰彇鏂板鎸夐挳鐨勮涓� + * @return {*} + */ + CreateAction: (fnName: string) => { + return { + action: 'drawer', //drawer(鎵撳紑宸︿晶鎶藉眽妗�) | go(璺宠浆鍒版柊鐨勯〉闈�) + }; + }, + /** + * @description: 鎿嶄綔瀛楁鑷畾涔夋寜閽� + * @return {*} + */ + ActionItem: (params: Recordable<any>, data, ...args): ActionItem[] => { + data.map((x) => { + if (x.name == 'goDetail') { + x.onClick = goDetail.bind(null, args[5], params); + x.tooltip = '妯℃澘鍙橀噺'; + } + }); + return data; + }, + GetUseForm: () => { + return {}; + }, + }; + + /* 浠ヤ笅鏄唴閮ㄦ柟娉曪紝涓峞xport锛屼緵涓婇潰鐨勬柟娉曡皟鐢� */ + /** * @description: 璺宠浆鍒拌鎯呴〉闈㈡柟娉� * @param {Fn} go @@ -27,47 +69,15 @@ pageTitle: '鏍囩妯℃澘鍙橀噺', //璇︽儏椤甸潰鏍囬 contentStr: '杩欓噷鏄爣绛炬ā鏉垮彉閲忕鐞嗛〉闈紝鍙互绠$悊鏍囩鐨勬ā鏉垮彉閲忔垨鑰呮墦鍗拌繃绋嬩腑鐨勫彉閲�', detailName: `妯℃澘[${params['record'].LABEL_NAME}]`, - others: { LABEL_ID: params['record'].ID }, + keyFieldValues: { LABEL_ID: params['record'].ID }, colSlots: ['BAS_LABEL_PV1add'], + SessionName: 'BAS_LABEL_VAR_update', }; - go(`/BAS_LABEL_VAR/${encodeURI(JSON.stringify(id))}`); + // 灏嗗璞¤浆鎹负JSON瀛楃涓插苟淇濆瓨鍒皊essionStorage + sessionStorage.removeItem(`${id.SessionName}_params`); + sessionStorage.setItem(`${id.SessionName}_params`, encodeURI(JSON.stringify(id))); + go(`/BAS_LABEL_VAR/${encodeURI(JSON.stringify({ sName: id.SessionName, Name: id.Name }))}`); } - - const ActionColumn: BasicColumn = { - width: 120, - title: '鎿嶄綔', - dataIndex: 'action', - slots: { customRender: 'action' }, - fixed: 'right', - }; - - const methods = { - /** - * @description: 鑾峰彇鏂板鎸夐挳鐨勮涓� - * @return {*} - */ - CreateAction: (fnName: string) => { - return { - action: 'drawer', //drawer(鎵撳紑宸︿晶鎶藉眽妗�) | go(璺宠浆鍒版柊鐨勯〉闈�) - }; - }, - /** - * @description: 鎿嶄綔瀛楁鑷畾涔夋寜閽� - * @return {*} - */ - ActionItem: (params: Recordable<any>, data, ...args): ActionItem[] => { - return [ - ...data, - ...[ - { - icon: 'clarity:info-standard-line', - tooltip: '妯℃澘鍙橀噺', - onClick: goDetail.bind(null, args[5], params), - }, - ], - ]; - }, - }; return [methods, ActionColumn]; } -- Gitblit v1.9.3