king
2022-01-07 c1f9e05741e64087ebbfa5e1185bfd0beeb4eeb5
src/views/pcdesign/index.jsx
@@ -1502,7 +1502,12 @@
        } else if (item.type === 'tree' && (!item.wrap.valueField || !item.wrap.labelField || !item.wrap.parentField)) {
          error = `组件《${item.name}》基本信息尚未设置!`
        } else if (item.type === 'table' && item.wrap.doubleClick) {
          if (item.action.findIndex((m) => m.uuid === item.wrap.doubleClick) === -1) {
          let _actions = [...item.action]
          item.cols.forEach(col => {
            if (col.type !== 'action') return
            _actions.push(...col.elements)
          })
          if (_actions.findIndex((m) => m.uuid === item.wrap.doubleClick) === -1) {
            error = `组件《${item.name}》绑定的双击按钮已删除!`
          }
        }