From e8edfdadb561cd83bf6e1c3e00d55b8cc2aee6d5 Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期一, 17 十月 2022 17:57:34 +0800
Subject: [PATCH] 2022-10-17

---
 src/pc/createview/settingform/index.jsx |   26 +++++++++++++++++---------
 1 files changed, 17 insertions(+), 9 deletions(-)

diff --git a/src/pc/createview/settingform/index.jsx b/src/pc/createview/settingform/index.jsx
index 638c2a5..0405709 100644
--- a/src/pc/createview/settingform/index.jsx
+++ b/src/pc/createview/settingform/index.jsx
@@ -1,15 +1,10 @@
 import React, {Component} from 'react'
-import PropTypes from 'prop-types'
 import { Form, Row, Col, Select, Input, Tooltip, Radio } from 'antd'
 import { QuestionCircleOutlined } from '@ant-design/icons'
 
 import './index.scss'
 
 class SettingForm extends Component {
-  static propTpyes = {
-    dict: PropTypes.object,      // 瀛楀吀椤�
-  }
-
   state = {
     appMenus: [],
     copymenuId: ''
@@ -20,6 +15,14 @@
     if (appMenus) {
       try {
         appMenus = JSON.parse(appMenus)
+        appMenus = appMenus.map(item => {
+          item.name = item.MenuName
+          if (item.MenuNo && item.MenuNo !== item.MenuName) {
+            item.name = item.MenuName + `锛�${item.MenuNo}锛塦
+          }
+
+          return item
+        })
       } catch (e) {
         appMenus = []
       }
@@ -68,7 +71,7 @@
                 rules: [
                   {
                     required: true,
-                    message: this.props.dict['form.required.input'] + '鑿滃崟鍚嶇О!'
+                    message: '璇疯緭鍏ヨ彍鍗曞悕绉�!'
                   }
                 ]
               })(<Input placeholder="" autoComplete="off" />)}
@@ -81,7 +84,7 @@
                 rules: [
                   {
                     required: true,
-                    message: this.props.dict['form.required.input'] + '鑿滃崟鍙傛暟!'
+                    message: '璇疯緭鍏ヨ彍鍗曞弬鏁�!'
                   }
                 ]
               })(<Input placeholder="" autoComplete="off" />)}
@@ -114,9 +117,14 @@
               {getFieldDecorator('copymenuId', {
                 initialValue: ''
               })(
-                <Select allowClear showSearch onChange={(val) => this.setState({copymenuId: val})} filterOption={(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0}>
+                <Select
+                  allowClear
+                  showSearch
+                  onChange={(val) => this.setState({copymenuId: val})}
+                  filterOption={(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0}
+                >
                   {appMenus.map(option =>
-                    <Select.Option key={option.MenuID} value={option.MenuID}>{option.MenuName}</Select.Option>
+                    <Select.Option key={option.MenuID} value={option.MenuID}>{option.name}</Select.Option>
                   )}
                 </Select>
               )}

--
Gitblit v1.8.0