From 31ec63f0419895876cbaba99637a884a32d33d0d Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期三, 01 九月 2021 10:31:45 +0800
Subject: [PATCH] 2021-09-01

---
 src/menu/components/share/searchcomponent/dragsearch/card.jsx |   31 +++++++++++++++++--------------
 1 files changed, 17 insertions(+), 14 deletions(-)

diff --git a/src/menu/components/share/searchcomponent/dragsearch/card.jsx b/src/menu/components/share/searchcomponent/dragsearch/card.jsx
index 6e023ff..a484993 100644
--- a/src/menu/components/share/searchcomponent/dragsearch/card.jsx
+++ b/src/menu/components/share/searchcomponent/dragsearch/card.jsx
@@ -1,9 +1,9 @@
 import React from 'react'
 import { useDrag, useDrop } from 'react-dnd'
-import { Icon, Select, DatePicker, Input, Popover } from 'antd'
+import { Icon, Select, DatePicker, Input, Popover, Form } from 'antd'
 import moment from 'moment'
 
-import DateGroup from '../dategroup'
+import DateGroup from '@/menu/components/search/main-search/dategroup'
 import './index.scss'
 
 const { MonthPicker, WeekPicker, RangePicker } = DatePicker
@@ -19,17 +19,15 @@
   const [, drop] = useDrop({
     accept: 'search',
     canDrop: () => true,
-    drop: () => {},
-    hover({ id: draggedId }) {
+    drop: ({ id: draggedId }) => {
       if (!draggedId || draggedId === id) return
 
       const { index: originIndex } = findCard(draggedId)
-
       if (originIndex === -1) return
 
       const { index: overIndex } = findCard(id)
       moveCard(draggedId, overIndex)
-    },
+    }
   })
   const opacity = isDragging ? 0 : 1
 
@@ -44,7 +42,7 @@
         _defaultValue = ''
       }
     } else if (card.setAll === 'true') {
-      _defaultValue = 'All'
+      _defaultValue = '鍏ㄩ儴'
     }
   } else if (card.type === 'daterange') {
     _defaultValue = [null, null]
@@ -52,7 +50,7 @@
       try {
         let _initval = JSON.parse(card.initval)
         _defaultValue = [moment().subtract(_initval[0], 'days'), moment().subtract(_initval[1], 'days')]
-      } catch {
+      } catch (e) {
         _defaultValue = [null, null]
       }
     }
@@ -61,14 +59,19 @@
   return (
     <Popover overlayClassName="mk-popover-control-wrap" mouseLeaveDelay={0.2} mouseEnterDelay={0.2} content={
       <div className="mk-popover-control">
-        <Icon className="edit" title="edit" type="edit" onClick={() => editCard(id)} />
-        <Icon className="copy" title="copy" type="copy" onClick={() => copyCard(id)} />
-        <Icon className="close" title="delete" type="close" onClick={() => delCard(id)} />
+        <Icon className="edit" title="缂栬緫" type="edit" onClick={() => editCard(id)} />
+        <Icon className="copy" title="澶嶅埗" type="copy" onClick={() => copyCard(id)} />
+        <Icon className="close" title="鍒犻櫎" type="close" onClick={() => delCard(id)} />
       </div>
     } trigger="hover">
-      <div className="page-card" style={{ opacity: opacity}}>
+      <div className={'page-card ' + (card.labelShow || '')} style={{ opacity: opacity}}>
         <div ref={node => drag(drop(node))}>
-          <div className="ant-form-item">
+          <Form.Item
+            labelCol={{xs: { span: 24 }, sm: { span: 8 }}}
+            wrapperCol = {{xs: { span: 24 }, sm: { span: 16 }}}
+            label={card.labelShow !== 'false' ? card.label : ''}
+            required={card.required === 'true'}
+          >
             {card.type === 'text' ?
               <Input placeholder={card.label} value={card.initval} /> : null
             }
@@ -93,7 +96,7 @@
               /> : null
             }
             {card.type === 'group' ? <DateGroup card={card} /> : null }
-          </div>
+          </Form.Item>
         </div>
       </div>
     </Popover>

--
Gitblit v1.8.0