import React, { Component } from 'react'
|
import { connect } from 'react-redux'
|
import { DndProvider } from 'react-dnd'
|
import { is, fromJS } from 'immutable'
|
import moment from 'moment'
|
import HTML5Backend from 'react-dnd-html5-backend'
|
import { ConfigProvider, notification, Modal, Collapse, Card, Switch, Button } from 'antd'
|
import html2canvas from 'html2canvas'
|
|
import Api from '@/api'
|
import Utils from '@/utils/utils.js'
|
import zhCN from '@/locales/zh-CN/mob.js'
|
import enUS from '@/locales/en-US/mob.js'
|
import antdEnUS from 'antd/es/locale/en_US'
|
import antdZhCN from 'antd/es/locale/zh_CN'
|
import MKEmitter from '@/utils/events.js'
|
import MenuUtils from '@/menu/utils/menuUtils.js'
|
import asyncComponent from '@/utils/asyncComponent'
|
import { modifyCustomMenu } from '@/store/action'
|
|
import './index.scss'
|
|
const { Panel } = Collapse
|
const { confirm } = Modal
|
const _locale = localStorage.getItem('lang') !== 'en-US' ? antdZhCN : antdEnUS
|
|
const MenuForm = asyncComponent(() => import('./menuform'))
|
const HomeForm = asyncComponent(() => import('./homeform'))
|
const PrintMenuForm = asyncComponent(() => import('./printmenuform'))
|
const Header = asyncComponent(() => import('@/menu/header'))
|
const SourceWrap = asyncComponent(() => import('@/menu/modelsource'))
|
const MenuShell = asyncComponent(() => import('@/menu/menushell'))
|
const BgController = asyncComponent(() => import('@/menu/bgcontroller'))
|
const PasteController = asyncComponent(() => import('@/menu/pastecontroller'))
|
const PaddingController = asyncComponent(() => import('@/menu/padcontroller'))
|
const StyleController = asyncComponent(() => import('@/menu/stylecontroller'))
|
const StyleCombController = asyncComponent(() => import('@/menu/stylecombcontroller'))
|
const StyleCombControlButton = asyncComponent(() => import('@/menu/stylecombcontrolbutton'))
|
const ModalController = asyncComponent(() => import('@/menu/modalconfig/controller'))
|
const PopviewController = asyncComponent(() => import('@/menu/popview'))
|
const TableComponent = asyncComponent(() => import('@/templates/sharecomponent/tablecomponent'))
|
|
sessionStorage.setItem('isEditState', 'true')
|
sessionStorage.setItem('editMenuType', 'menu') // 编辑菜单类型
|
document.body.className = ''
|
window.GLOB.UserComponentMap = new Map() // 缓存用户自定义组件
|
|
class MenuDesign extends Component {
|
state = {
|
dict: localStorage.getItem('lang') !== 'en-US' ? zhCN : enUS,
|
MenuType: '',
|
MenuId: '',
|
ParentId: '',
|
MenuName: '',
|
MenuNo: '',
|
tableFields: [],
|
delButtons: [],
|
copyButtons: [],
|
thawButtons: [],
|
activeKey: 'basedata',
|
menuloading: false,
|
oriConfig: null,
|
openEdition: '',
|
config: null,
|
popBtn: null, // 弹窗标签页
|
visible: false,
|
customComponents: []
|
}
|
|
UNSAFE_componentWillMount() {
|
try {
|
let param = JSON.parse(window.decodeURIComponent(window.atob(this.props.match.params.param)))
|
|
this.setState({
|
MenuType: param.MenuType,
|
MenuId: param.MenuId,
|
ParentId: param.ParentId || '',
|
MenuName: param.MenuName || '',
|
MenuNo: param.MenuNo || '',
|
}, () => {
|
this.getMenuParam()
|
})
|
} catch {
|
notification.warning({
|
top: 92,
|
message: '菜单信息解析错误!',
|
duration: 5
|
})
|
}
|
}
|
|
shouldComponentUpdate (nextProps, nextState) {
|
return !is(fromJS(this.state), fromJS(nextState))
|
}
|
|
componentDidMount () {
|
MKEmitter.addListener('delButtons', this.delButtons)
|
MKEmitter.addListener('thawButtons', this.thawButtons)
|
MKEmitter.addListener('copyButtons', this.copyButtons)
|
MKEmitter.addListener('changePopview', this.initPopview)
|
MKEmitter.addListener('submitComponentStyle', this.updateComponentStyle)
|
MKEmitter.addListener('updateCustomComponent', this.updateCustomComponent)
|
this.updateCustomComponent()
|
}
|
|
/**
|
* @description 组件销毁,清除state更新
|
*/
|
componentWillUnmount () {
|
this.setState = () => {
|
return
|
}
|
MKEmitter.removeListener('delButtons', this.delButtons)
|
MKEmitter.removeListener('thawButtons', this.thawButtons)
|
MKEmitter.removeListener('copyButtons', this.copyButtons)
|
MKEmitter.removeListener('changePopview', this.initPopview)
|
MKEmitter.removeListener('submitComponentStyle', this.updateComponentStyle)
|
MKEmitter.removeListener('updateCustomComponent', this.updateCustomComponent)
|
}
|
|
updateCustomComponent = () => {
|
Api.getSystemConfig({
|
func: 's_get_custom_components',
|
typecharone: ''
|
}).then(res => {
|
let coms = []
|
if (res.cus_list && res.cus_list.length > 0) {
|
res.cus_list.forEach(item => {
|
let config = ''
|
|
try {
|
config = JSON.parse(window.decodeURIComponent(window.atob(item.long_param)))
|
} catch (e) {
|
console.warn('Parse Failure')
|
config = ''
|
}
|
|
if (!config || !item.c_name) return
|
|
window.GLOB.UserComponentMap.set(item.c_id, item.c_name)
|
coms.push({
|
uuid: item.c_id,
|
type: 'menu',
|
title: item.c_name,
|
url: item.images,
|
component: config.type,
|
subtype: config.subtype,
|
width: config.width || 24,
|
config
|
})
|
})
|
}
|
this.setState({customComponents: coms})
|
})
|
}
|
|
updateComponentStyle = (parentId, keys, style) => {
|
const { config } = this.state
|
|
if (config.uuid !== parentId) return
|
|
let components = config.components.map(item => {
|
if (keys.includes(item.uuid)) {
|
item.style = {...item.style, ...style}
|
}
|
return item
|
})
|
|
this.setState({
|
config: {...config, components: []}
|
}, () => {
|
this.setState({
|
config: {...config, components: components}
|
})
|
})
|
}
|
|
delButtons = (items) => {
|
const { copyButtons } = this.state
|
|
this.setState({
|
delButtons: [...this.state.delButtons, ...items],
|
copyButtons: copyButtons.filter(item => !items.includes(item.uuid))
|
})
|
}
|
|
copyButtons = (items) => {
|
this.setState({copyButtons: [...this.state.copyButtons, ...items]})
|
}
|
|
thawButtons = (item) => {
|
this.setState({thawButtons: [...this.state.thawButtons, item]})
|
}
|
|
initPopview = (card, btn) => {
|
const { oriConfig, config } = this.state
|
|
let _config = fromJS(config).toJS()
|
delete _config.tableFields
|
|
if (!is(fromJS(oriConfig), fromJS(_config))) {
|
notification.warning({
|
top: 92,
|
message: '配置已修改,请保存!',
|
duration: 5
|
})
|
return
|
}
|
|
btn.config = _config
|
btn.component = card
|
|
sessionStorage.setItem('editMenuType', 'popview') // 编辑弹窗标签
|
|
this.setState({popBtn: btn, visible: true})
|
}
|
|
handleBack = () => {
|
this.setState({popBtn: null, delButtons: [], copyButtons: []}, () => {
|
sessionStorage.setItem('editMenuType', 'menu')
|
this.props.modifyCustomMenu(this.state.config)
|
this.setState({visible: false})
|
})
|
}
|
|
closeView = () => {
|
const { oriConfig, config } = this.state
|
|
if (!config) {
|
window.close()
|
return
|
}
|
|
let _config = fromJS(config).toJS()
|
delete _config.tableFields
|
|
if (!is(fromJS(oriConfig), fromJS(_config))) {
|
confirm({
|
title: '配置已修改,放弃保存吗?',
|
content: '',
|
onOk() {
|
window.close()
|
},
|
onCancel() {}
|
})
|
} else {
|
window.close()
|
}
|
}
|
|
getMenuParam = () => {
|
const { MenuId, ParentId, MenuName, MenuNo, MenuType } = this.state
|
|
let param = {
|
func: 'sPC_Get_LongParam',
|
MenuID: MenuId
|
}
|
|
Api.getSystemConfig(param).then(result => {
|
if (result.status) {
|
let config = null
|
|
try {
|
config = result.LongParam ? JSON.parse(window.decodeURIComponent(window.atob(result.LongParam))) : null
|
} catch (e) {
|
console.warn('Parse Failure')
|
config = null
|
}
|
|
if (!config) {
|
config = {
|
version: 1.0,
|
uuid: MenuId,
|
MenuID: MenuId,
|
parentId: ParentId,
|
Template: 'CustomPage',
|
easyCode: '',
|
enabled: false,
|
MenuName: MenuName,
|
MenuNo: MenuNo,
|
tables: [],
|
components: [],
|
viewType: 'menu',
|
style: {
|
backgroundColor: '#ffffff', backgroundImage: '',
|
paddingTop: '16px', paddingBottom: '80px', paddingLeft: '16px', paddingRight: '16px'
|
},
|
}
|
if (MenuType === 'billPrint') {
|
config.style.paddingTop = '50px'
|
config.style.paddingBottom = '50px'
|
config.style.paddingLeft = '30px'
|
config.style.paddingRight = '30px'
|
}
|
} else {
|
config.uuid = MenuId
|
config.MenuID = MenuId
|
config.Template = 'CustomPage'
|
}
|
|
if (MenuType === 'billPrint') {
|
config.fstMenuId = 'BillPrintTemp'
|
config.parentId = 'BillPrintTemp'
|
config.MenuName = MenuName
|
config.MenuNo = MenuNo
|
config.firstCount = config.firstCount || 15
|
config.everyPCount = config.everyPCount || 15
|
config.lastCount = config.lastCount || ''
|
}
|
|
this.setState({
|
oriConfig: config,
|
config: fromJS(config).toJS(),
|
openEdition: result.open_edition || '',
|
})
|
|
this.props.modifyCustomMenu(config)
|
this.getRoleFields()
|
} else {
|
notification.warning({
|
top: 92,
|
message: result.message,
|
duration: 5
|
})
|
}
|
})
|
}
|
|
getMenuMessage = () => {
|
const { config } = this.state
|
let buttons = []
|
let _sort = 1
|
|
let traversal = (components) => {
|
components.forEach(item => {
|
if (item.type === 'tabs') {
|
item.subtabs.forEach(tab => {
|
traversal(tab.components)
|
})
|
} else if (item.type === 'group') {
|
traversal(item.components)
|
} else if (item.type === 'card' || (item.type === 'table' && item.subtype === 'tablecard')) {
|
item.action && item.action.forEach(btn => {
|
this.checkBtn(btn)
|
buttons.push(`select '${btn.uuid}' as menuid, '${item.name + '-' + btn.label}' as menuname, '${_sort * 10}' as Sort`)
|
_sort++
|
})
|
item.subcards.forEach(card => {
|
card.elements && card.elements.forEach(cell => {
|
if (cell.eleType !== 'button') return
|
this.checkBtn(cell)
|
buttons.push(`select '${cell.uuid}' as menuid, '${item.name + '-' + cell.label}' as menuname, '${_sort * 10}' as Sort`)
|
_sort++
|
})
|
card.backElements && card.backElements.forEach(cell => {
|
if (cell.eleType !== 'button') return
|
this.checkBtn(cell)
|
buttons.push(`select '${cell.uuid}' as menuid, '${item.name + '-' + cell.label}' as menuname, '${_sort * 10}' as Sort`)
|
_sort++
|
})
|
})
|
} else if (item.type === 'line' || item.type === 'bar') {
|
item.action && item.action.forEach(btn => {
|
this.checkBtn(btn)
|
buttons.push(`select '${btn.uuid}' as menuid, '${item.name + '-' + btn.label}' as menuname, '${_sort * 10}' as Sort`)
|
_sort++
|
})
|
} else if (item.type === 'table' && item.subtype === 'normaltable') {
|
item.action && item.action.forEach(btn => {
|
this.checkBtn(btn)
|
buttons.push(`select '${btn.uuid}' as menuid, '${item.name + '-' + btn.label}' as menuname, '${_sort * 10}' as Sort`)
|
_sort++
|
})
|
item.cols && item.cols.forEach(col => {
|
if (col.type !== 'action') return
|
col.elements.forEach(btn => {
|
this.checkBtn(btn)
|
buttons.push(`select '${btn.uuid}' as menuid, '${item.name + '-' + btn.label}' as menuname, '${_sort * 10}' as Sort`)
|
_sort++
|
})
|
})
|
}
|
})
|
}
|
|
traversal(config.components)
|
|
return buttons
|
}
|
|
checkBtn = (btn) => {
|
if (['prompt', 'exec', 'pop'].includes(btn.OpenType) && btn.Ot === 'required' && btn.verify && btn.verify.scripts && btn.verify.scripts.length > 0) {
|
let hascheck = false
|
btn.verify.scripts.forEach(item => {
|
if (item.status === 'false') return
|
|
if (/\$check@|@check\$/ig.test(item.sql)) {
|
hascheck = true
|
}
|
})
|
if (hascheck) {
|
notification.warning({
|
top: 92,
|
message: `可选择多行的按钮《${btn.label}》中 $check@ 或 @check$ 将不会生效!`,
|
duration: 5
|
})
|
}
|
}
|
}
|
|
filterConfig = (components) => {
|
return components.map(item => {
|
if (item.type === 'tabs') {
|
item.subtabs.forEach(tab => {
|
tab.components = this.filterConfig(tab.components)
|
})
|
} else if (item.type === 'group') {
|
item.components = this.filterConfig(item.components)
|
} else if (item.type === 'table' && item.subtype === 'normaltable') {
|
item.search = item.search.filter(a => !a.origin)
|
item.action = item.action.filter(a => !a.origin)
|
item.cols = item.cols.filter(a => !a.origin)
|
}
|
return item
|
})
|
}
|
|
submitConfig = () => {
|
const { openEdition, MenuType, delButtons, copyButtons, thawButtons } = this.state
|
let config = fromJS(this.state.config).toJS()
|
|
if (MenuType === 'billPrint' && (!config.firstCount || !config.everyPCount)) {
|
notification.warning({
|
top: 92,
|
message: '请完善基本信息!',
|
duration: 5
|
})
|
return
|
} else if (MenuType === 'home' && (config.cacheUseful === 'true' && !config.cacheTime)) {
|
notification.warning({
|
top: 92,
|
message: '请完善菜单基本信息!',
|
duration: 5
|
})
|
return
|
} else if (MenuType === 'custom' && (!config.MenuName || !config.MenuNo || !config.fstMenuId || !config.parentId || (config.cacheUseful === 'true' && !config.cacheTime))) {
|
notification.warning({
|
top: 92,
|
message: '请完善菜单基本信息!',
|
duration: 5
|
})
|
return
|
}
|
|
config.components = this.filterConfig(config.components)
|
|
if (config.enabled && this.verifyConfig()) {
|
config.enabled = false
|
}
|
|
let _config = fromJS(config).toJS()
|
delete _config.tableFields
|
|
let param = {
|
func: 'sPC_TrdMenu_AddUpt',
|
FstID: _config.fstMenuId || '',
|
SndID: _config.parentId,
|
ParentID: _config.parentId,
|
MenuID: _config.uuid,
|
MenuNo: _config.MenuNo || '',
|
EasyCode: _config.easyCode || '',
|
Template: 'CustomPage',
|
MenuName: _config.MenuName || '',
|
PageParam: JSON.stringify({Template: 'CustomPage', OpenType: 'newtab'}),
|
LongParam: window.btoa(window.encodeURIComponent(JSON.stringify(_config))),
|
LText: '',
|
LTexttb: ''
|
}
|
|
param.LText = Utils.formatOptions(param.LText)
|
param.timestamp = moment().format('YYYY-MM-DD HH:mm:ss')
|
param.secretkey = Utils.encrypt(param.LText, param.timestamp)
|
|
if (openEdition) { // 版本管理
|
param.open_edition = openEdition
|
}
|
|
let btnParam = { // 添加菜单按钮
|
func: 'sPC_Button_AddUpt',
|
Type: 40, // 添加菜单下的按钮type为40,按钮下的按钮type为60
|
ParentID: _config.uuid,
|
MenuNo: _config.MenuNo,
|
Template: 'CustomPage',
|
PageParam: '',
|
LongParam: '',
|
LText: []
|
}
|
|
let btnIds = '' // 用于复制按钮的过滤
|
if (MenuType !== 'billPrint') {
|
btnParam.LText = this.getMenuMessage()
|
btnParam.LText = btnParam.LText.join(' union all ')
|
|
btnIds = btnParam.LText
|
|
btnParam.LText = Utils.formatOptions(btnParam.LText)
|
btnParam.timestamp = moment().format('YYYY-MM-DD HH:mm:ss')
|
btnParam.secretkey = Utils.encrypt(btnParam.LText, btnParam.timestamp)
|
} else {
|
btnParam.LText = ''
|
}
|
|
this.setState({
|
menuloading: true
|
}, () => {
|
new Promise(resolve => {
|
if (MenuType === 'billPrint') { // 打印生成页面效果图
|
html2canvas(document.getElementById('menu-shell-inner')).then(canvas => {
|
let img = canvas.toDataURL('image/png') // 获取生成的图片
|
Api.fileuploadbase64(img, 'cloud').then(result => {
|
if (result.status) {
|
Api.getSystemConfig({
|
func: 's_PrintTemplateMSub',
|
ID: _config.uuid,
|
Images: Utils.getcloudurl(result.Images),
|
Remark: '',
|
temp_type: 'billprint',
|
}).then(response => {
|
if (response.status) {
|
resolve(true)
|
} else {
|
notification.warning({
|
top: 92,
|
message: response.message,
|
duration: 5
|
})
|
resolve(false)
|
}
|
})
|
} else {
|
notification.warning({
|
top: 92,
|
message: result.ErrMesg,
|
duration: 5
|
})
|
resolve(false)
|
}
|
})
|
})
|
} else {
|
resolve(true)
|
}
|
}).then(res => { // 按钮删除
|
if (!res) return
|
|
if (delButtons.length === 0) {
|
return {
|
status: true
|
}
|
} else {
|
let _param = {
|
func: 'sPC_MainMenu_Del',
|
MenuID: delButtons.join(',')
|
}
|
return Api.getSystemConfig(_param)
|
}
|
}).then(res => { // 按钮解除冻结
|
if (!res) return
|
if (!res.status) {
|
notification.warning({
|
top: 92,
|
message: res.message,
|
duration: 5
|
})
|
return false
|
}
|
|
let ids = thawButtons.filter(item => btnIds.indexOf(item) !== -1)
|
if (ids.length === 0) {
|
return {
|
status: true
|
}
|
} else {
|
return Api.getSystemConfig({
|
func: 'sPC_MainMenu_ReDel',
|
MenuID: ids.join(',')
|
})
|
}
|
}).then(res => { // 页面保存
|
if (!res) return
|
|
if (res.status) {
|
return Api.getSystemConfig(param)
|
} else {
|
notification.warning({
|
top: 92,
|
message: res.message,
|
duration: 5
|
})
|
return false
|
}
|
}).then(res => { // 页面按钮关系保存
|
if (!res) return
|
|
if (res.status) {
|
this.setState({
|
oriConfig: fromJS(_config).toJS(),
|
openEdition: res.open_edition || ''
|
})
|
|
if (btnParam.LText) {
|
return Api.getSystemConfig(btnParam)
|
} else {
|
return {
|
status: true
|
}
|
}
|
} else {
|
notification.warning({
|
top: 92,
|
message: res.message,
|
duration: 5
|
})
|
return false
|
}
|
}).then(res => { // 按钮复制
|
if (!res) return
|
if (!res.status) {
|
notification.warning({
|
top: 92,
|
message: res.message,
|
duration: 5
|
})
|
return false
|
}
|
|
if (copyButtons.length === 0) {
|
return {
|
status: true
|
}
|
} else {
|
return new Promise(resolve => {
|
let deffers = copyButtons.map(item => {
|
return new Promise(resolve => {
|
if (btnIds.indexOf(item.uuid) === -1) { // 复制的按钮已删除
|
resolve({
|
status: true
|
})
|
return
|
}
|
|
Api.getSystemConfig({
|
func: 'sPC_Get_LongParam',
|
MenuID: item.$originUuid
|
}).then(result => {
|
if (result.status) {
|
let _conf = ''
|
|
try {
|
_conf = result.LongParam ? JSON.parse(window.decodeURIComponent(window.atob(result.LongParam))) : ''
|
} catch (e) {
|
console.warn('Parse Failure')
|
_conf = ''
|
}
|
|
if (_conf) {
|
_conf.components = MenuUtils.resetConfig(_conf.components)
|
_conf.uuid = item.uuid
|
_conf.MenuID = item.uuid
|
_conf.Template = 'CustomPage'
|
} else {
|
resolve({
|
status: true
|
})
|
return
|
}
|
|
let _param = {
|
func: 'sPC_ButtonParam_AddUpt',
|
ParentID: _config.uuid,
|
MenuID: item.uuid,
|
MenuNo: '',
|
Template: 'CustomPage',
|
MenuName: item.label,
|
PageParam: JSON.stringify({Template: 'CustomPage'}),
|
LongParam: window.btoa(window.encodeURIComponent(JSON.stringify(_conf)))
|
}
|
|
Api.getSystemConfig(_param).then(response => {
|
resolve(response)
|
})
|
}
|
})
|
})
|
})
|
Promise.all(deffers).then(result => {
|
let error = null
|
result.forEach(response => {
|
if (!response.status) {
|
error = response
|
}
|
})
|
|
if (error) {
|
notification.warning({
|
top: 92,
|
message: error.message,
|
duration: 5
|
})
|
resolve(false)
|
} else {
|
resolve({
|
status: true
|
})
|
}
|
})
|
})
|
}
|
}).then(res => {
|
if (res && res.status) {
|
this.setState({
|
delButtons: [],
|
copyButtons: [],
|
thawButtons: [],
|
menuloading: false,
|
config: {...config, components: []}
|
}, () => {
|
this.setState({
|
config: {...this.state.config, components: this.state.oriConfig.components}
|
})
|
})
|
notification.success({
|
top: 92,
|
message: '保存成功',
|
duration: 2
|
})
|
} else {
|
this.setState({
|
menuloading: false
|
})
|
}
|
})
|
})
|
}
|
|
getRoleFields = () => {
|
Api.getSystemConfig({func: 'sPC_Get_Roles_sModular'}).then(res => {
|
if (res.status) {
|
let _permFuncField = []
|
let _sysRoles = []
|
|
if (res.Roles && res.Roles.length > 0) {
|
_sysRoles = res.Roles.map(role => {
|
return {
|
uuid: Utils.getuuid(),
|
value: role.RoleID,
|
text: role.RoleName
|
}
|
})
|
}
|
|
if (res.sModular && res.sModular.length > 0) {
|
res.sModular.forEach(field => {
|
if (field.ModularNo) {
|
_permFuncField.push(field.ModularNo)
|
}
|
})
|
_permFuncField = _permFuncField.sort()
|
}
|
|
sessionStorage.setItem('sysRoles', JSON.stringify(_sysRoles))
|
sessionStorage.setItem('permFuncField', JSON.stringify(_permFuncField))
|
}
|
})
|
}
|
|
onEnabledChange = () => {
|
const { config } = this.state
|
|
if (!config.enabled && this.verifyConfig(true)) {
|
return
|
}
|
|
this.setState({
|
config: {...config, enabled: !config.enabled}
|
})
|
}
|
|
verifyConfig = (show) => {
|
const { config, MenuType } = this.state
|
let error = ''
|
|
config.components.forEach(item => {
|
if (error) return
|
if ((item.subtype === 'propcard' || item.subtype === 'brafteditor') && item.wrap.datatype === 'static') return
|
|
if (item.setting) {
|
if (item.setting.interType === 'system' && item.setting.execute !== 'false' && !item.setting.dataresource) {
|
error = `组件《${item.name}》未设置数据源!`
|
} else if (item.setting.interType === 'system' && item.setting.execute === 'false' && item.scripts.length === 0) {
|
error = `组件《${item.name}》未设置数据源!`
|
} else if (item.setting.interType && !item.setting.primaryKey && MenuType !== 'billPrint') {
|
error = `组件《${item.name}》未设置主键!`
|
}
|
}
|
if (item.type === 'bar' || item.type === 'line' || item.type === 'pie') {
|
if (!item.plot.Xaxis) {
|
error = `组件《${item.name}》图表字段尚未设置!`
|
}
|
}
|
})
|
|
if (show && error) {
|
notification.warning({
|
top: 92,
|
message: error,
|
duration: 5
|
})
|
}
|
|
return error
|
}
|
|
// 更新配置信息
|
updateConfig = (config) => {
|
this.setState({
|
config: config
|
})
|
|
this.props.modifyCustomMenu(config)
|
}
|
|
insert = (item) => {
|
let config = fromJS(this.state.config).toJS()
|
|
config.components.push(item)
|
|
this.setState({config})
|
this.props.modifyCustomMenu(config)
|
}
|
|
/**
|
* @description 更新常用表信息,快捷添加后更新配置信息
|
*/
|
updatetable = (config, fields) => {
|
const { tableFields } = this.state
|
|
config.tableFields = fields ? fields : tableFields
|
|
this.setState({
|
tableFields: fields ? fields : tableFields,
|
config
|
})
|
|
this.props.modifyCustomMenu(config)
|
}
|
|
render () {
|
const { activeKey, MenuType, popBtn, visible, dict, MenuId, config, ParentId, MenuName, MenuNo, menuloading, customComponents } = this.state
|
|
return (
|
<ConfigProvider locale={_locale}>
|
<div className="pc-menu-view" id="view">
|
<Header />
|
{!popBtn && !visible ? <DndProvider backend={HTML5Backend}>
|
<div className="menu-body">
|
<div className="menu-setting">
|
<Collapse accordion activeKey={activeKey} bordered={false} onChange={(key) => this.setState({activeKey: key})}>
|
{/* 基本信息 */}
|
<Panel header={dict['mob.basemsg']} key="basedata">
|
{/* 菜单信息 */}
|
{config && MenuType === 'custom' ? <MenuForm
|
dict={dict}
|
config={config}
|
MenuId={MenuId}
|
parentId={ParentId}
|
MenuName={MenuName}
|
MenuNo={MenuNo}
|
updateConfig={this.updateConfig}
|
/> : null}
|
{config && MenuType === 'home' ? <HomeForm
|
dict={dict}
|
config={config}
|
updateConfig={this.updateConfig}
|
/> : null}
|
{config && MenuType === 'billPrint' ? <PrintMenuForm
|
dict={dict}
|
config={config}
|
updateConfig={this.updateConfig}
|
/> : null}
|
{/* 表名添加 */}
|
{config ? <TableComponent config={config} updatetable={this.updatetable}/> : null}
|
</Panel>
|
{/* 组件添加 */}
|
<Panel header={dict['mob.component']} key="component">
|
<SourceWrap MenuType={MenuType} />
|
</Panel>
|
{customComponents && customComponents.length ? <Panel header="自定义组件" key="cuscomponent">
|
<SourceWrap components={customComponents} MenuType={MenuType} />
|
</Panel> : null}
|
<Panel header={'背景'} key="background">
|
{config ? <BgController config={config} updateConfig={this.updateConfig} /> : null}
|
</Panel>
|
<Panel header={'内边距'} key="padding">
|
{config ? <PaddingController config={config} updateConfig={this.updateConfig} /> : null}
|
</Panel>
|
</Collapse>
|
</div>
|
<div className={'menu-view ' + (menuloading ? 'saving' : '')}>
|
<Card title={
|
<div> {config && config.MenuName} </div>
|
} bordered={false} extra={
|
<div>
|
<StyleCombControlButton menu={config} />
|
<PasteController type="menu" Tab={null} insert={this.insert} />
|
{config ? <Switch className="big" checkedChildren={dict['mob.enable']} unCheckedChildren={dict['mob.disable']} checked={config.enabled} onChange={this.onEnabledChange} /> : null}
|
<Button type="primary" onClick={this.submitConfig} loading={menuloading}>{dict['mob.save']}</Button>
|
<Button type="default" onClick={this.closeView}>{dict['mob.return']}</Button>
|
</div>
|
} style={{ width: '100%' }}>
|
{config && config.components ? <MenuShell menu={config} handleList={this.updateConfig} /> : null}
|
</Card>
|
</div>
|
</div>
|
</DndProvider> : null}
|
{popBtn && visible ? <PopviewController btn={popBtn} handleBack={this.handleBack}/> : null}
|
<StyleController />
|
<StyleCombController />
|
<ModalController />
|
</div>
|
</ConfigProvider>
|
)
|
}
|
}
|
|
const mapStateToProps = () => {
|
return {}
|
}
|
|
const mapDispatchToProps = (dispatch) => {
|
return {
|
modifyCustomMenu: (customMenu) => dispatch(modifyCustomMenu(customMenu))
|
}
|
}
|
|
export default connect(mapStateToProps, mapDispatchToProps)(MenuDesign)
|