From 325aa13d3b61d1c066f8fcab107003ef36713df3 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 16 一月 2025 10:20:09 +0800 Subject: [PATCH] 2025-01-16 --- src/views/mobdesign/index.jsx | 215 +++++++++++++++++++++++++++++++++++++++++++++++------ 1 files changed, 190 insertions(+), 25 deletions(-) diff --git a/src/views/mobdesign/index.jsx b/src/views/mobdesign/index.jsx index d73400e..1dbe670 100644 --- a/src/views/mobdesign/index.jsx +++ b/src/views/mobdesign/index.jsx @@ -4,14 +4,14 @@ 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' import Api from '@/api' -import Utils, { setGLOBFuncs } from '@/utils/utils.js' +import Utils from '@/utils/utils.js' import MKEmitter from '@/utils/events.js' -import MenuUtils, { getTables, getFuncsAndInters, getLangTrans } from '@/utils/utils-custom.js' +import MenuUtils, { getTables, getFuncsAndInters, getOutMessage, getLangTrans, getAllSqls } from '@/utils/utils-custom.js' import asyncComponent from '@/utils/asyncComponent' import '@/assets/css/design.scss' @@ -74,7 +74,9 @@ viewType: 'menu', view: '', eyeopen: false, - needUpdate: false + needUpdate: false, + appLoginId: '', + appHomeId: '' } UNSAFE_componentWillMount() { @@ -112,7 +114,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) @@ -139,10 +140,29 @@ adapters = [] } + let appLoginId = '' + let appHomeId = '' + if (sessionStorage.getItem('appViewList')) { + try { + let appMenus = JSON.parse(sessionStorage.getItem('appViewList')) + appMenus.forEach(item => { + if (item.keys_type === 'login') { + appLoginId = item.keys_id + } else if (item.keys_type === 'index') { + appHomeId = item.keys_id + } + }) + } catch (e) { + + } + } + this.setState({ adapters, MenuId: param.MenuID, - viewType: /^userbind/.test(param.MenuID) ? 'userbind' : 'menu' + viewType: /^userbind/.test(param.MenuID) ? 'userbind' : 'menu', + appLoginId: appLoginId, + appHomeId: appHomeId }, () => { this.getMenuParam(param) }) @@ -182,7 +202,7 @@ setTimeout(() => { this.getRoleFields() - setGLOBFuncs() + // setGLOBFuncs() }, 1000) document.onkeydown = (event) => { @@ -744,9 +764,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 => { @@ -1304,6 +1321,7 @@ let traversal = (components) => { return components.map(item => { + item.miniStyle = '' if (item.style) { item.miniStyle = this.transferStyle(item.style) } @@ -1319,12 +1337,18 @@ } if (item.type === 'tabs') { + if (item.setting.backgroundColor) { + item.miniStyle += `--tabs-header-background: ${item.setting.backgroundColor};` + } item.subtabs.forEach(tab => { tab.components = traversal(tab.components) }) } else if (item.type === 'group') { item.components = traversal(item.components) } else if (['card', 'carousel', 'timeline'].includes(item.type)) { + if (item.wrap.display === 'hidden') { + item.miniStyle += 'display:none;' + } item.subcards.forEach(card => { card.miniStyle = this.transferStyle(card.style) card.elements = card.elements.map(cell => { @@ -1425,8 +1449,10 @@ }) return } else if (this.checklog()) { - if (sessionStorage.getItem('applangList') && !config.trans) { + if ((sessionStorage.getItem('applangList') && !config.trans) || (adapters.includes('wxmini') && !config.hasOwnProperty('miniStyle'))) { + } else if (config.enabled && !config.allSqls) { + } else { notification.success({ top: 92, @@ -1451,6 +1477,52 @@ } else if (!config.enabled && config.force && _pass) { config.enabled = true delete config.force + } + + let long_data = '' + if (config.enabled) { + let sqls = getAllSqls(config) + let _t = moment().format('YYYYMMDDHHmmss') + let getguid = () => { + let uuid = '' + 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 + // }) + // } + + config.allSqls = sqls.map(item => { + let v_id = _t + getguid() + + // 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))},${config.sqlperm === 'false' ? '' : item.roleId || ''}`) + + return { + uuid: item.uuid, + v_id: v_id, + type: item.type, + reps: item.reps, + // md5: item.md5 || '', + luser: item.luser === true + } + }) + + long_data = long_data.join(';') + } else { + delete config.allSqls } if (config.cacheUseful !== 'true') { @@ -1506,6 +1578,9 @@ roleParam.pass = true } + delete config.miniTitle + delete config.miniReloadUp + config.components.forEach(item => { if (item.type === 'login') { roleParam.login = true @@ -1513,6 +1588,13 @@ config.loginview = true } else if (item.type === 'navbar') { config.tabview = true + } else if (item.type === 'topbar' && adapters.includes('wxmini')) { + if (item.wrap.minishow !== 'true') { + config.miniTitle = item.wrap.title || '' + } + if (item.wrap.reload === 'true') { + config.miniReloadUp = true + } } }) @@ -1534,12 +1616,24 @@ } 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')) let interfaces = getFuncsAndInters(config) + let msg = getOutMessage(config) roleParam.interfaces = interfaces + roleParam.msg = msg + roleParam.backend = 'level1' let langSql = getLangTrans(config) + + roleParam.pds = 'false' + if (config.interfaces) { + config.interfaces.forEach(item => { + if (item.status !== 'true') return + roleParam.pds = 'true' + }) + } let param = { func: 'sPC_TrdMenu_AddUpt', @@ -1553,9 +1647,10 @@ TypeCharOne: sessionStorage.getItem('kei_no'), Typename: sessionStorage.getItem('typename'), MenuName: config.MenuName || '', - PageParam: JSON.stringify({Template: 'webPage', interfaces}), + PageParam: JSON.stringify({Template: 'webPage', interfaces, msg}), open_edition: config.open_edition, menus_rolelist: window.btoa(window.encodeURIComponent(JSON.stringify(roleParam))), + long_data: long_data, // LText: '', // LTexttb: '', menus_used_list, @@ -1574,7 +1669,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', @@ -1819,7 +1914,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')) { @@ -1893,11 +1988,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 @@ -1942,6 +2048,8 @@ param.timestamp = moment().format('YYYY-MM-DD HH:mm:ss') param.secretkey = Utils.encrypt('', param.timestamp) + const that = this + confirm({ title: '纭畾璁剧疆鏈〉闈负棣栭〉鍚楋紵', content: '', @@ -1955,6 +2063,10 @@ }) } else { sessionStorage.setItem('appViewList', JSON.stringify(appViewList)) + + that.setState({ + appHomeId: config.MenuID + }) } }) }, @@ -2002,6 +2114,7 @@ param.secretkey = Utils.encrypt('', param.timestamp) let hasLogin = config.components.findIndex(item => item.type === 'login') > -1 + const that = this confirm({ title: '纭畾璁剧疆鏈〉闈负鐧诲綍椤靛悧锛�', @@ -2016,6 +2129,10 @@ }) } else { sessionStorage.setItem('appViewList', JSON.stringify(appViewList)) + + that.setState({ + appLoginId: config.MenuID + }) } }) }, @@ -2064,6 +2181,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 || '' @@ -2080,7 +2244,7 @@ render () { - const { view, viewType, comloading, loading, settingshow, controlshow, activeKey, MenuId, config, menuloading, adapters, eyeopen, needUpdate } = this.state + const { view, viewType, comloading, loading, settingshow, controlshow, activeKey, MenuId, config, menuloading, adapters, eyeopen, needUpdate, appLoginId, appHomeId } = this.state return ( <div className={'mk-mob-view ' + viewType} id="mk-mob-design-view"> @@ -2111,8 +2275,9 @@ <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 37px'}} copyable={{ text: MenuId }}>鑿滃崟ID</Paragraph> + <Paragraph style={{padding: '0px 0px 0px 23px'}} 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: '0px 0px 0px 18px'}}>鑿滃崟缁勪欢锛�<CopyOutlined onClick={this.copyMenu} style={{cursor: 'pointer', color: '#1890ff'}} /></Paragraph> <NormalCss config={config} updateConfig={this.updateConfig}/> </> : null} </Panel> @@ -2135,21 +2300,21 @@ {!controlshow ? <DoubleLeftOutlined onClick={() => {this.setState({controlshow: true})}}/> : null} </div> <div className="wrap"> - <Button type="primary" className={needUpdate ? 'update-tip' : ''} onClick={this.submitConfig} id="save-config" loading={menuloading}>淇濆瓨</Button> + <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" onClick={this.setHomeView}><HomeOutlined /> 璁句负棣栭〉</Button> - <Button className="mk-border-purple set-login" onClick={this.setLoginView}><LoginOutlined /> 璁句负鐧诲綍椤�</Button> + <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 type="custom" config={config} updateConfig={this.resetConfig}/> <Transfer MenuID={MenuId} /> {config ? <Versions MenuId={MenuId} Template="webPage" checklog={this.checklog} updateConfig={this.updateLogConfig}/> : null} -- Gitblit v1.8.0