From cb9ade2afd2a367ad767bc605ab7086c695dd010 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期五, 09 十二月 2022 15:53:32 +0800 Subject: [PATCH] 2022-12-09 --- src/mob/mobshell/index.jsx | 26 ++++++++++++++++---------- 1 files changed, 16 insertions(+), 10 deletions(-) diff --git a/src/mob/mobshell/index.jsx b/src/mob/mobshell/index.jsx index 36e8761..028e209 100644 --- a/src/mob/mobshell/index.jsx +++ b/src/mob/mobshell/index.jsx @@ -4,8 +4,6 @@ import { Empty, notification, Modal } from 'antd' import Utils from '@/utils/utils.js' -import MKEmitter from '@/utils/events.js' -import MenuUtils from '@/utils/utils-custom.js' import Card from './card' import './index.scss' @@ -50,8 +48,6 @@ }) } - let uuids = MenuUtils.getDelButtonIds(card) - confirm({ title: `纭畾鍒犻櫎${card.name ? `銆�${card.name}銆媊 : '缁勪欢'}鍚楋紵`, content: hasComponent ? '褰撳墠缁勪欢涓惈鏈夊瓙缁勪欢锛�' : '', @@ -59,10 +55,6 @@ const _cards = cards.filter(item => item.uuid !== card.uuid) handleList({...menu, components: _cards}) setCards(_cards) - - if (uuids.length === 0) return - - MKEmitter.emit('delButtons', uuids) }, onCancel() {} }) @@ -119,6 +111,15 @@ if (!menu.style.paddingTop) { style = {...menu.style, paddingTop: '50px'} } + } else if (item.component === 'officialAccount') { + if (cards.filter(card => card.type === 'officialAccount').length > 0) { + notification.warning({ + top: 92, + message: '鍏虫敞缁勪欢涓嶅彲閲嶅娣诲姞锛�', + duration: 5 + }) + return + } } let name = '' @@ -140,6 +141,8 @@ menubar: '鑿滃崟鏍�', balcony: '娴姩鍗�', timeline: '鏃堕棿杞�', + officialAccount: '鍏虫敞鍏紬鍙�', + sharecode: '鍒嗕韩鐮�', login: '鐧诲綍' } let i = 1 @@ -158,7 +161,6 @@ subtype: item.subtype, config: item.config, width: item.width || 24, - dataName: Utils.getdataName(), name: name, floor: 1, // 缁勪欢鐨勫眰绾� isNew: true // 鏂版坊鍔犳爣蹇楋紝鐢ㄤ簬鍒濆鍖� @@ -203,9 +205,13 @@ } }) + let style = JSON.stringify(menu.style || {}) + style = style.replace(/@mywebsite@\//ig, window.GLOB.baseurl) + style = JSON.parse(style) + return ( <div ref={drop} className="mob-shell-inner" id="menu-shell-inner"> - <div className="ant-row" style={menu.style}> + <div className="ant-row" style={style}> {cards.map(card => ( <Card id={card.uuid} -- Gitblit v1.8.0