xiejun
2024-11-01 80b6cbfc9c861469146318d0b3dd5f8b8b525b8a
Source/BladeX-Tool/blade-starter-develop/src/main/resources/templates/sword/list.js.vm
对比新文件
@@ -0,0 +1,84 @@
#set($upperEntityPath=$table.entityPath.toUpperCase())
import React, { PureComponent } from 'react';
import { connect } from 'dva';
import { Button, Col, Form, Input, Row } from 'antd';
import Panel from '../../../components/Panel';
import { $!{upperEntityPath}_LIST } from '../../../actions/$!{table.entityPath}';
import Grid from '../../../components/Sword/Grid';
const FormItem = Form.Item;
@connect(({ $!{table.entityPath}, loading }) => ({
  $!{table.entityPath},
  loading: loading.models.$!{table.entityPath},
}))
@Form.create()
class $!{entity} extends PureComponent {
  // ============ 鏌ヨ ===============
  handleSearch = params => {
    const { dispatch } = this.props;
    dispatch($!{upperEntityPath}_LIST(params));
  };
  // ============ 鏌ヨ琛ㄥ崟 ===============
  renderSearchForm = onReset => {
    const { form } = this.props;
    const { getFieldDecorator } = form;
    return (
      <Row gutter={{ md: 8, lg: 24, xl: 48 }}>
        <Col md={6} sm={24}>
          <FormItem label="鏌ヨ鍚嶇О">
            {getFieldDecorator('name')(<Input placeholder="鏌ヨ鍚嶇О" />)}
          </FormItem>
        </Col>
        <Col>
          <div style={{ float: 'right' }}>
            <Button type="primary" htmlType="submit">
              鏌ヨ
            </Button>
            <Button style={{ marginLeft: 8 }} onClick={onReset}>
              閲嶇疆
            </Button>
          </div>
        </Col>
      </Row>
    );
  };
  render() {
    const code = '$!{table.entityPath}';
    const {
      form,
      loading,
      $!{table.entityPath}: { data },
    } = this.props;
    const columns = [
#foreach($field in $!{table.fields})
#if($!{field.name}!=$!{tenantColumn})
      {
        title: '$!{field.comment}',
        dataIndex: '$!{field.propertyName}',
      },
#end
#end
    ];
    return (
      <Panel>
        <Grid
          code={code}
          form={form}
          onSearch={this.handleSearch}
          renderSearchForm={this.renderSearchForm}
          loading={loading}
          data={data}
          columns={columns}
        />
      </Panel>
    );
  }
}
export default $!{entity};