dingxin 5 년 전
부모
커밋
b310aad8fb
2개의 변경된 파일12개의 추가작업 그리고 2개의 파일을 삭제
  1. 10
    0
      src/pages/activity/editActivity.jsx
  2. 2
    2
      src/pages/system/messageList.jsx

+ 10
- 0
src/pages/activity/editActivity.jsx 파일 보기

@@ -124,6 +124,16 @@ const BasicForm = props => {
124 124
           ],
125 125
         })(<ImageUploader />)}
126 126
         </Form.Item>
127
+        <Form.Item label="活动封面图2" help="建议图片尺寸:750*250,比例3:1,格式:jpg,用于:项目详情活动轮播">
128
+          {getFieldDecorator('bannerListImg', {
129
+          rules: [
130
+            {
131
+              required: true,
132
+              message: '请选择活动封面图2',
133
+            },
134
+          ],
135
+        })(<ImageUploader />)}
136
+        </Form.Item>
127 137
         <Form.Item label="活动详情主图" help="建议图片尺寸:750*600px,比例5:4,格式:jpg,用于普通活动详情">
128 138
           {getFieldDecorator('imgUrl', {
129 139
           rules: [

+ 2
- 2
src/pages/system/messageList.jsx 파일 보기

@@ -71,7 +71,7 @@ const header = (props) => {
71 71
   // const { getFieldDecorator } = props.form
72 72
   return (
73 73
     <>
74
-    <SearchForm
74
+    {/* <SearchForm
75 75
       onSearch={console.log}
76 76
       fields={[
77 77
         {
@@ -88,7 +88,7 @@ const header = (props) => {
88 88
           </Select>)
89 89
         },
90 90
       ]}
91
-    ></SearchForm>
91
+    ></SearchForm> */}
92 92
     <PaginationWrapper
93 93
       request={getMessageList}
94 94
       render={data => <Table rowKey={record => record.messageId} dataSource={data.records} columns={columns} pagination={false}/>}