From a9ba0e5bc39654b5fa277852135afb49ce11c66c Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期六, 12 四月 2025 23:15:16 +0800
Subject: [PATCH] 2025-04-12

---
 src/views/mobdesign/index.jsx |  141 ++++++++++++++++++++++++++++++++++------------
 1 files changed, 103 insertions(+), 38 deletions(-)

diff --git a/src/views/mobdesign/index.jsx b/src/views/mobdesign/index.jsx
index fff66dd..59c5caf 100644
--- a/src/views/mobdesign/index.jsx
+++ b/src/views/mobdesign/index.jsx
@@ -4,7 +4,7 @@
 import { is, fromJS } from 'immutable'
 import HTML5Backend from 'react-dnd-html5-backend'
 import { notification, Modal, Collapse, Switch, Button, message, Spin, Typography } from 'antd'
-import { DoubleLeftOutlined, DoubleRightOutlined, HomeOutlined, LoginOutlined, ArrowLeftOutlined, EyeOutlined, EyeInvisibleOutlined } from '@ant-design/icons'
+import { DoubleLeftOutlined, DoubleRightOutlined, HomeOutlined, LoginOutlined, ArrowLeftOutlined, EyeOutlined, EyeInvisibleOutlined, CopyOutlined } from '@ant-design/icons'
 import moment from 'moment'
 import md5 from 'md5'
 
@@ -34,7 +34,10 @@
 const TableNodes = asyncComponent(() => import('@/menu/tablenodes'))
 const BgController = asyncComponent(() => import('@/pc/bgcontroller'))
 const ReplaceField = asyncComponent(() => import('@/menu/replaceField'))
+const DelExtraDb = asyncComponent(() => import('@/menu/delExtraDb'))
+const LowerField = asyncComponent(() => import('@/menu/lowerField'))
 const NormalCss = asyncComponent(() => import('@/menu/normalCss'))
+const NormalCopy = asyncComponent(() => import('@/menu/normalCopy'))
 const SysInterface = asyncComponent(() => import('@/menu/sysinterface'))
 const Quotecomponent = asyncComponent(() => import('@/pc/quotecomponent'))
 const PasteController = asyncComponent(() => import('@/menu/pastecontroller'))
@@ -114,7 +117,6 @@
         sessionStorage.setItem('sysBgColor', param.sysBgColor || '#ffffff')
         sessionStorage.setItem('direction', param.direction || 'vertical')
         sessionStorage.setItem('userbind', param.userbind || '')
-        sessionStorage.setItem('instantMessage', param.instantMessage || '')
 
         if (param.applangList) {
           sessionStorage.setItem('applangList', param.applangList)
@@ -765,9 +767,6 @@
       // if (sessionStorage.getItem('userbind')) {
       //   appIndeList = appIndeList + ',' + sessionStorage.getItem('userbind')
       // }
-      if (sessionStorage.getItem('instantMessage')) {
-        appIndeList = appIndeList + ',' + sessionStorage.getItem('instantMessage')
-      }
 
       let menus = res.menus.filter(item => appIndeList.indexOf(item.MenuID) === -1)
       menus = menus.map(item => {
@@ -1492,33 +1491,34 @@
           for (let i = 0; i < 18; i++) {
             uuid += String.fromCharCode(Math.floor(Math.random() * 26) + 65)
           }
+          uuid = uuid.replace(/minke/ig, 'MNKIE')
           return uuid
         }
 
         long_data = []
-        let oriIds = {}
-        if (config.allSqls) {
-          config.allSqls.forEach(item => {
-            if (!item.md5) return
-            oriIds[item.uuid + item.md5] = item.v_id
-          })
-        }
+        // let oriIds = {}
+        // if (config.allSqls) {
+        //   config.allSqls.forEach(item => {
+        //     if (!item.md5) return
+        //     oriIds[item.uuid + item.md5] = item.v_id
+        //   })
+        // }
         
         config.allSqls = sqls.map(item => {
           let v_id = _t + getguid()
 
-          if (oriIds[item.uuid + item.md5]) {
-            v_id = oriIds[item.uuid + item.md5]
-          }
+          // if (oriIds[item.uuid + item.md5]) {
+          //   v_id = oriIds[item.uuid + item.md5]
+          // }
           
-          long_data.push(`${md5(window.GLOB.appkey + v_id)},${item.uuid},${v_id},${window.btoa(window.encodeURIComponent(item.LText))}`)
+          long_data.push(`${md5(window.GLOB.appkey + v_id)},${item.uuid},${v_id},${window.btoa(window.encodeURIComponent(item.LText))},${config.sqlperm === 'false' ? '' : item.roleId || ''}`)
           
           return {
             uuid: item.uuid,
             v_id: v_id,
             type: item.type,
             reps: item.reps,
-            md5: item.md5 || '',
+            // md5: item.md5 || '',
             luser: item.luser === true
           }
         })
@@ -1619,6 +1619,7 @@
       }
 
       let subMenus = this.getSubMenus()
+      subMenus = subMenus.filter(item => item.MenuID !== config.uuid)
       let menus_used_list = subMenus.map(m => `'${config.uuid}','${config.MenuName || ''}','${config.MenuNo || ''}','${m.MenuID}','${m.MenuName}'`).join(';')
       menus_used_list = window.btoa(window.encodeURIComponent(menus_used_list || 'del'))
 
@@ -1627,7 +1628,16 @@
       roleParam.interfaces = interfaces
       roleParam.msg = msg
       roleParam.backend = 'level1'
+      roleParam.enabled = config.enabled
       let langSql = getLangTrans(config)
+      
+      roleParam.pds = 'false'
+      if (config.interfaces && config.enabled) {
+        config.interfaces.forEach(item => {
+          if (item.status !== 'true') return
+          roleParam.pds = 'true'
+        })
+      }
 
       let param = {
         func: 'sPC_TrdMenu_AddUpt',
@@ -1663,7 +1673,7 @@
       let _config = fromJS(config).toJS()
       let NavBar = null
       _config.components = _config.components.map(item => {
-        if (item.type === 'navbar') {
+        if (item.type === 'navbar' && item.wrap) {
           NavBar = fromJS(item).toJS()
           return {
             type: 'navbar',
@@ -1826,18 +1836,11 @@
     }, 300 + (+sessionStorage.getItem('mkDelay')))
   }
 
-  netError = (error) => {
+  netError = () => {
     this.setState({
       menuloading: false
     })
 
-    if (!error) {
-      notification.warning({
-        top: 92,
-        message: '淇濆瓨澶辫触锛岃妫�鏌ョ綉缁滄槸鍚︽甯搞��',
-        duration: 5
-      })
-    }
     MKEmitter.emit('completeSave')
   }
 
@@ -1908,7 +1911,7 @@
         } else if (item.type === 'group') {
           check(item.components, level, sign)
           return
-        } else if (item.type === 'navbar' && !item.wrap.MenuNo) {
+        } else if (item.type === 'navbar' && item.wrap && !item.wrap.MenuNo) {
           error = `瀵艰埅鏍忋��${item.name}銆嬫湭璁剧疆鑿滃崟鍙傛暟锛乣
         } else if (item.type === 'topbar') {
           if (item.wrap.type === 'search' || item.wrap.type === 'searchIcon' || (item.wrap.type === 'navbar' && item.wrap.search === 'true')) {
@@ -1982,11 +1985,22 @@
   insert = (item) => {
     let config = fromJS(this.state.config).toJS()
 
-    if (item.type === 'topbar' && !config.style.paddingTop) {
-      config.style.paddingTop = '50px'
+    if (item.copyType === 'components') {
+      if (item.components.findIndex(m => m.type === 'topbar') > -1 && !config.style.paddingTop) {
+        config.style.paddingTop = '50px'
+      }
+      config.components.push(...item.components)
+      if (!config.interfaces) {
+        config.interfaces = item.interfaces
+      } else {
+        config.interfaces.push(...item.interfaces)
+      }
+    } else {
+      if (item.type === 'topbar' && !config.style.paddingTop) {
+        config.style.paddingTop = '50px'
+      }
+      config.components.push(item)
     }
-
-    config.components.push(item)
 
     this.setState({config})
     window.GLOB.customMenu = config
@@ -2164,6 +2178,53 @@
     return is(fromJS(oriConfig), fromJS(config))
   }
 
+  copyMenu = () => {
+    const { config } = this.state
+
+    if (!config.enabled) {
+      notification.warning({
+        top: 92,
+        message: '鑿滃崟鏈惎鐢紝涓嶅彲澶嶅埗銆�',
+        duration: 5
+      })
+    } else {
+      let msg = { copyType: 'components', type: 'mob' }
+
+      msg.components = []
+      msg.interfaces = config.interfaces || []
+
+      config.components.forEach(item => {
+        if (item.type === 'navbar') return
+
+        msg.components.push(item)
+      })
+
+      if (msg.components.length === 0) {
+        notification.warning({
+          top: 92,
+          message: '鏈坊鍔犵粍浠讹紝涓嶅彲澶嶅埗銆�',
+          duration: 5
+        })
+        return
+      }
+
+      try {
+        msg = window.btoa(window.encodeURIComponent(JSON.stringify(msg)))
+      } catch (e) {
+        console.warn('Stringify Failure')
+        msg = ''
+      }
+
+      let oInput = document.createElement('input')
+      oInput.value = msg
+      document.body.appendChild(oInput)
+      oInput.select()
+      document.execCommand('Copy')
+      document.body.removeChild(oInput)
+      message.success('澶嶅埗鎴愬姛銆�')
+    }
+  }
+
   updateLogConfig = (config) => {
     config.open_edition = this.state.config.open_edition || ''
     
@@ -2211,9 +2272,11 @@
                     <UrlFieldComponent config={config} updateConfig={this.updateConfig}/>
                     {/* 琛ㄥ悕娣诲姞 */}
                     <TableComponent config={config} updatetable={this.updateConfig}/>
-                    <Paragraph style={{padding: '15px 0px 0px 18px'}} copyable={{ text: MenuId }}>鑿滃崟ID</Paragraph>
-                    <Paragraph style={{padding: '10px 0px 0px 18px'}} copyable={{ text:  `${window.GLOB.baseurl}mob/index.html#/index/${sessionStorage.getItem('kei_no')}/${sessionStorage.getItem('typename')}/${sessionStorage.getItem('lang')}/${MenuId}/@BID@` }}>鑿滃崟閾炬帴</Paragraph>
+                    <Paragraph style={{padding: '15px 0px 0px 32px'}} copyable={{ text: MenuId }}>鑿滃崟ID锛�</Paragraph>
+                    <Paragraph style={{padding: '0px 0px 0px 18px'}} copyable={{ text:  `${window.GLOB.baseurl}mob/index.html#/index/${sessionStorage.getItem('kei_no')}/${sessionStorage.getItem('typename')}/${sessionStorage.getItem('lang')}/${MenuId}/@BID@` }}>鑿滃崟閾炬帴锛�</Paragraph>
                     <NormalCss config={config} updateConfig={this.updateConfig}/>
+                    <Paragraph style={{padding: '0px 0px 0px 18px'}}>澶嶅埗鑿滃崟涓嬫墍鏈夌粍浠讹細<CopyOutlined onClick={this.copyMenu} style={{cursor: 'pointer', color: '#1890ff'}} /></Paragraph>
+                    <NormalCopy />
                   </> : null}
                 </Panel>
                 {/* 缁勪欢娣诲姞 */}
@@ -2234,23 +2297,25 @@
               {controlshow ? <DoubleRightOutlined onClick={() => {this.setState({controlshow: false})}}/> : null}
               {!controlshow ? <DoubleLeftOutlined onClick={() => {this.setState({controlshow: true})}}/> : null}
             </div>
-            <div className="wrap">
+            <div className="wrap mk-opeartion-list">
               <Button type="primary" className={needUpdate ? 'update-tip' : ''} disabled={!config} onClick={this.submitConfig} id="save-config" loading={menuloading}>淇濆瓨</Button>
               {config ? <Switch className="big" checkedChildren="鍚�" unCheckedChildren="鍋�" checked={config.enabled} onChange={this.onEnabledChange} /> : null}
               <ArrowLeftOutlined title="鍚庨��" className="back-view" onClick={this.backView}/>
               {config ? <Debug config={config}/> : null}
               <Button className="mk-border-purple" onClick={() => this.setState({eyeopen: !eyeopen})}>{!eyeopen ? <EyeOutlined /> : <EyeInvisibleOutlined />} 缁勪欢鍚�</Button>
               <CreateView resetmenu={this.getAppMenus} />
-              <PasteController insert={this.insert} />
+              <PasteController vType="mob" insert={this.insert} />
               <TableNodes config={config} />
               <ViewNodes config={config} MenuId={MenuId}/>
               <SysInterface config={config} updateConfig={this.updateConfig}/>
               <PictureController/>
               <Quotecomponent config={config} updateConfig={this.updateConfig}/>
               <StyleCombControlButton menu={config} />
-              <Button className="mk-border-green set-home" disabled={MenuId === appHomeId} onClick={this.setHomeView}><HomeOutlined /> 璁句负棣栭〉</Button>
-              <Button className="mk-border-purple" disabled={MenuId === appLoginId} onClick={this.setLoginView}><LoginOutlined /> 璁句负鐧诲綍椤�</Button>
-              <ReplaceField type="custom" config={config} updateConfig={this.resetConfig}/>
+              <Button className="mk-border-green set-home" disabled={MenuId === appHomeId} data-title="褰撳墠鑿滃崟涓哄簲鐢ㄩ椤�" onClick={this.setHomeView}><HomeOutlined /> 璁句负棣栭〉</Button>
+              <Button className="mk-border-purple" disabled={MenuId === appLoginId} data-title="褰撳墠鑿滃崟涓哄簲鐢ㄧ櫥褰曢〉" onClick={this.setLoginView}><LoginOutlined /> 璁句负鐧诲綍椤�</Button>
+              <ReplaceField config={config} updateConfig={this.resetConfig}/>
+              <LowerField config={config} updateConfig={this.resetConfig}/>
+              <DelExtraDb config={config} updateConfig={this.resetConfig}/>
               <Transfer MenuID={MenuId} />
               {config ? <Versions MenuId={MenuId} Template="webPage" checklog={this.checklog} updateConfig={this.updateLogConfig}/> : null}
               <Button type="default" onClick={this.closeView}>鍏抽棴</Button>

--
Gitblit v1.8.0