From 1d395e6d750fe91082c99a15e355ab2841ed65c6 Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期四, 04 一月 2024 17:49:21 +0800
Subject: [PATCH] 2024-01-04

---
 src/menu/components/chart/antv-scatter/chartcompile/formconfig.jsx |  129 +++++++++++++++---------------------------
 1 files changed, 46 insertions(+), 83 deletions(-)

diff --git a/src/menu/components/chart/antv-scatter/chartcompile/formconfig.jsx b/src/menu/components/chart/antv-scatter/chartcompile/formconfig.jsx
index bf6ed7b..66afe79 100644
--- a/src/menu/components/chart/antv-scatter/chartcompile/formconfig.jsx
+++ b/src/menu/components/chart/antv-scatter/chartcompile/formconfig.jsx
@@ -20,24 +20,24 @@
   return [
     {
       type: 'text',
-      key: 'title',
+      field: 'title',
       label: '鏍囬',
-      initVal: card.title,
+      initval: card.title,
       required: false
     },
     {
       type: 'text',
-      key: 'name',
+      field: 'name',
       label: '缁勪欢鍚嶇О',
-      initVal: card.name,
+      initval: card.name,
       tooltip: '鐢ㄤ簬缁勪欢闂寸殑鍖哄垎銆�',
       required: true
     },
     {
       type: 'number',
-      key: 'width',
+      field: 'width',
       label: '瀹藉害',
-      initVal: card.width,
+      initval: card.width,
       tooltip: '鏍呮牸甯冨眬锛屾瘡琛岀瓑鍒嗕负24鍒椼��',
       min: 1,
       max: 24,
@@ -46,43 +46,42 @@
     },
     {
       type: 'styleInput',
-      key: 'height',
+      field: 'height',
       label: '鍥捐〃楂樺害',
-      initVal: card.height,
+      initval: card.height,
       tooltip: '鍥捐〃缁樺浘鍖哄煙鐨勯珮搴︼紝涓嶅寘鎷爣棰樺強鍐呭杈硅窛銆�',
       required: true,
       options: ['px', 'vh', 'vw']
     },
     {
       type: 'radio',
-      key: 'permission',
+      field: 'permission',
       label: '鏉冮檺楠岃瘉',
-      initVal: card.permission || 'false',
+      initval: card.permission || 'false',
       required: false,
       options: [
-        {value: 'true', text: '鍚敤'},
-        {value: 'false', text: '绂佺敤'},
+        {value: 'true', label: '鍚敤'},
+        {value: 'false', label: '绂佺敤'},
       ],
       forbid: !appType || ispop || isprint
     },
     {
       type: 'radio',
-      key: 'cacheLocal',
+      field: 'cacheLocal',
       label: '鏈湴缂撳瓨',
-      initVal: card.cacheLocal || 'true',
+      initval: card.cacheLocal || 'true',
       required: false,
       options: [
-        {value: 'true', text: '缁ф壙鑿滃崟'},
-        {value: 'false', text: '绂佺敤'},
+        {value: 'true', label: '缁ф壙鑿滃崟'},
+        {value: 'false', label: '绂佺敤'},
       ],
       forbid: ispop || isprint
     },
     {
-      type: 'select',
-      key: 'blacklist',
+      type: 'multiselect',
+      field: 'blacklist',
       label: '榛戝悕鍗�',
-      initVal: card.blacklist || [],
-      multi: true,
+      initval: card.blacklist || [],
       required: false,
       options: roleList,
       forbid: !!appType || isprint
@@ -103,126 +102,90 @@
   return [
     {
       type: 'select',
-      key: 'gender',
+      field: 'gender',
       label: '绫诲瀷',
-      initVal: card.gender || '',
+      initval: card.gender || '',
       required: true,
       options: xfields
     },
     {
       type: 'select',
-      key: 'Xaxis',
+      field: 'Xaxis',
       label: 'X-杞�',
-      initVal: card.Xaxis || '',
+      initval: card.Xaxis || '',
       required: true,
       options: columns
     },
     {
       type: 'select',
-      key: 'Yaxis',
+      field: 'Yaxis',
       label: 'Y-杞�',
-      initVal: card.Yaxis || '',
+      initval: card.Yaxis || '',
       required: true,
       options: yfields
     },
     {
       type: 'radio',
-      key: 'shape',
+      field: 'shape',
       label: '褰㈢姸',
-      initVal: card.shape || 'circle',
+      initval: card.shape || 'circle',
       required: false,
       options: [{
         value: 'circle',
-        text: 'circle'
+        label: '鍦嗗舰'
       }, {
         value: 'square',
-        text: 'square'
+        label: '鏂瑰舰'
       }]
     },
     {
       type: 'radio',
-      key: 'tooltip',
+      field: 'tooltip',
       label: '鎮诞鎻愮ず',
-      initVal: card.tooltip || 'true',
+      initval: card.tooltip || 'true',
       required: false,
       options: [{
         value: 'true',
-        text: '鏄剧ず'
+        label: '鏄剧ず'
       }, {
         value: 'false',
-        text: '闅愯棌'
+        label: '闅愯棌'
       }]
-    // }, {
-    //   type: 'radio',
-    //   key: 'download',
-    //   label: '瀵煎嚭鍥剧墖',
-    //   initVal: card.download || 'forbid',
-    //   required: false,
-    //   forbid: appType === 'mob',
-    //   options: [{
-    //     value: 'forbid',
-    //     text: '绂佺敤'
-    //   }, {
-    //     value: 'enable',
-    //     text: '鍚敤'
-    //   }]
     },
     {
       type: 'radio',
-      key: 'empty',
+      field: 'empty',
       label: '绌哄�奸殣钘�',
-      initVal: card.empty || 'show',
+      initval: card.empty || 'show',
       tooltip: '褰撴煡璇㈡暟鎹负绌烘椂锛岄殣钘忚缁勪欢銆�',
       required: false,
       options: [
-        {value: 'show', text: '鍚�'},
-        {value: 'hidden', text: '鏄�'},
+        {value: 'show', label: '鍚�'},
+        {value: 'hidden', label: '鏄�'},
       ],
     },
     {
       type: 'text',
-      key: 'Xunit',
+      field: 'Xunit',
       label: 'X杞村崟浣�',
-      initVal: card.Xunit || '',
+      initval: card.Xunit || '',
       required: false
     },
     {
       type: 'text',
-      key: 'Yunit',
+      field: 'Yunit',
       label: 'Y杞村崟浣�',
-      initVal: card.Yunit || '',
+      initval: card.Yunit || '',
       required: false
     },
     {
       type: 'color',
-      key: 'color',
-      label: '鑹茬郴',
-      initVal: card.color || 'rgba(0, 0, 0, 0.65)',
-      tooltip: '鍧愭爣杞存彁绀烘枃瀛楀強绀轰緥鐨勯鑹层��',
+      field: 'lineColor',
+      label: '鍧愭爣杞撮鑹�',
+      initval: card.lineColor || '',
+      tooltip: '鍧愭爣杞寸嚎鐨勯鑹层��',
+      allowClear: true,
       required: false
     }
-    // , {
-    //   type: 'select',
-    //   key: 'interaction',
-    //   label: '浜や簰鏁堟灉',
-    //   initVal: card.interaction || [],
-    //   multi: true,
-    //   required: false,
-    //   forbid: appType === 'mob',
-    //   options: [
-    //     { value: 'element-active', label: '鍏冪礌鑱氱劍' },
-    //     { value: 'element-selected', label: '鍏冪礌閫変腑锛堝閫夛級' },
-    //     { value: 'element-single-selected', label: '鍏冪礌閫変腑锛堝崟閫夛級' },
-    //     // { value: 'active-region', label: '鑳屾櫙妗�' },
-    //     { value: 'view-zoom', label: '瑙嗗浘缂╂斁' },
-    //     { value: 'element-highlight', label: '鍏冪礌楂樹寒' },
-    //     { value: 'element-highlight-by-color', label: '鍚岃壊鍏冪礌楂樹寒' },
-    //     { value: 'element-highlight-by-x', label: '鍚孹杞村厓绱犻珮浜�' },
-    //     { value: 'legend-filter', label: '鍥句緥杩囨护' },
-    //     { value: 'legend-active', label: '鍥句緥鑱氱劍' },
-    //     { value: 'legend-highlight', label: '鍥句緥楂樹寒' },
-    //     { value: 'brush', label: '閫夋杩囨护' },
-    //   ]
-    // }
   ]
 }

--
Gitblit v1.8.0