MaoMeiQiHW 4 年 前
コミット
7f6cea73e4
共有6 個のファイルを変更した282 個の追加222 個の削除を含む
  1. 15 15
      config/routes.ts
  2. 2 2
      src/app.tsx
  3. 49 138
      src/components/common/DataTable/index.tsx
  4. 215 0
      src/pages/Order/Billing/index.jsx
  5. 0 65
      src/pages/Order/Billing/index.tsx
  6. 1 2
      src/pages/user/login/index.tsx

+ 15 - 15
config/routes.ts

@@ -21,21 +21,21 @@
     icon: 'smile',
     component: './Welcome',
   },
-  {
-    path: '/admin',
-    name: 'admin',
-    icon: 'crown',
-    access: 'canAdmin',
-    component: './Admin',
-    routes: [
-      {
-        path: '/admin/sub-page',
-        name: 'sub-page',
-        icon: 'smile',
-        component: './Welcome',
-      },
-    ],
-  },
+  // {
+  //   path: '/admin',
+  //   name: 'admin',
+  //   icon: 'crown',
+  //   access: 'canAdmin',
+  //   component: './Admin',
+  //   routes: [
+  //     {
+  //       path: '/admin/sub-page',
+  //       name: 'sub-page',
+  //       icon: 'smile',
+  //       component: './Welcome',
+  //     },
+  //   ],
+  // },
   // {
   //   name: 'list.table-list',
   //   icon: 'table',

+ 2 - 2
src/app.tsx

@@ -28,7 +28,7 @@ export async function getInitialState(): Promise<{
       currentUser.data.token = currentUser.token;
       return currentUser.data;
     } catch (error) {
-      // history.push('/user/login');
+      history.push('/user/login');
     }
     return undefined;
   };
@@ -56,7 +56,7 @@ export const layout: RunTimeLayoutConfig = ({ initialState }) => {
       const { location } = history;
       // 如果没有登录,重定向到 login
       if (!initialState?.currentUser && location.pathname !== '/user/login') {
-        // history.push('/user/login');
+        history.push('/user/login');
       }
     },
     menuHeaderRender: undefined,

+ 49 - 138
src/components/common/DataTable/index.tsx

@@ -1,146 +1,57 @@
 import React, { useRef } from 'react';
-import { PlusOutlined, EllipsisOutlined } from '@ant-design/icons';
-import { Button, Tag, Space, Menu, Dropdown } from 'antd';
-import ProTable, { ProColumns, TableDropdown, ActionType } from '@ant-design/pro-table';
+import ProTable, { ActionType } from '@ant-design/pro-table';
 import request from 'umi-request';
 
-const columns: ProColumns[] = [
-  {
-    dataIndex: 'index',
-    valueType: 'indexBorder',
-    width: 48,
-  },
-  {
-    title: '标题',
-    dataIndex: 'title',
-    copyable: true,
-    ellipsis: true,
-    tip: '标题过长会自动收缩',
-    formItemProps: {
-      rules: [
-        {
-          required: true,
-          message: '此项为必填项',
-        },
-      ],
-    },
-    width: '30%',
-    search: false,
-  },
-  {
-    title: '状态',
-    dataIndex: 'state',
-    initialValue: 'open',
-    filters: true,
-    valueType: 'select',
-    valueEnum: {
-      all: { text: '全部', status: 'Default' },
-      open: {
-        text: '未解决',
-        status: 'Error',
-      },
-      closed: {
-        text: '已解决',
-        status: 'Success',
-      },
-      processing: {
-        text: '解决中',
-        status: 'Processing',
-      },
-    },
-  },
-  {
-    title: '标签',
-    dataIndex: 'labels',
-    renderFormItem: (_, { defaultRender }) => {
-      return defaultRender(_);
-    },
-    render: (_, record) => (
-      <Space>
-        {record.labels.map(({ name, color }) => (
-          <Tag color={color} key={name}>
-            {name}
-          </Tag>
-        ))}
-      </Space>
-    ),
-  },
-  {
-    title: '创建时间',
-    key: 'created_at',
-    dataIndex: 'created_at',
-    valueType: 'date',
-  },
-  {
-    title: '操作',
-    valueType: 'option',
-    render: (text, record, _, action) => [
-      <a
-        key="editable"
-        onClick={() => {
-          action.startEditable?.(record.id);
-        }}
-      >
-        编辑
-      </a>,
-      <a href={record.url} target="_blank" rel="noopener noreferrer" key="view">
-        查看
-      </a>,
-      <TableDropdown
-        key="actionGroup"
-        onSelect={() => action.reload()}
-        menus={[
-          { key: 'copy', name: '复制' },
-          { key: 'delete', name: '删除' },
-        ]}
-      />,
-    ],
-  },
-];
+export interface DataTable {
+  toolBarRender?: object;           // 表格操作栏
+  url?: boolean;                    // 表格请求地址
+  columns?: object;                 // 表格列表显示配置
+  rowKey?: string;                  // 表格key值
+  headerTitle?: string              // 表格标题
+  tableAlertOptionRender?: () => {};// 表格对选操作
+  tableAlertRender?: () => {};      // 自定义批量操作工具栏左侧信息区域
+  rowSelection?: object;            // 表格选择配置
+  search?: object;                  // 搜索配置
+  requestProcess?: ()=>{},          // 请求前参数处理  用于处理向时间间隔上传时参数重复问题
+  onRow?: ()=>{},                   // 内容行操作
+  onHeaderRow?: ()=>{},             // 标题行操作
+}
 
-const menu = (
-  <Menu>
-    <Menu.Item key="1">1st item</Menu.Item>
-    <Menu.Item key="2">2nd item</Menu.Item>
-    <Menu.Item key="3">3rd item</Menu.Item>
-  </Menu>
-);
-
-export default (props) => {
+const DataTable: React.FC<DataTable> =  (props) => {
   const actionRef = useRef<ActionType>();
 
   return (
     <ProTable
       columns={
-        //默认配置列都不出现在搜索中
+        // 默认配置列都不出现在搜索中
+        // v5中不再支持设置search为true,所以用searchbool代替
         props.columns.map((v) => {
-          if(!v.search){
+          if(!v.searchbool){
             v.search = false;
-          }
+          };
           return v
         })
       }
       actionRef={actionRef}
-      request={async (params = {}) =>
-      {
-        params.pageNo = params.current;
-        delete params.current;
-        const msg = await request(props.url, {
-          params,
-        });
-        if(msg.error.length > 0){
-          return {
-            success: false,
-          };
-        }else{
-          return {
-            data: msg.data.list,
-            success: true,
-            total: msg.data.totalCount,
-          };
+      request={async (params = {}) =>{
+          params.pageNo = params.current;
+          delete params.current;
+          const msg = await request(props.url, {
+            params: props.requestProcess?props.requestProcess(params):params,
+          });
+          if(msg.error.length > 0){
+            return {
+              success: false,
+            };
+          }else{
+            return {
+              data: msg.data.list,
+              success: true,
+              total: msg.data.totalCount,
+            };
+          }
         }
       }
-      }
       editable={{
         type: 'multiple',
       }}
@@ -149,22 +60,22 @@ export default (props) => {
         filterType: 'query',
         labelWidth: 'auto',
         defaultCollapsed: false,
+        ...props.search,
       }}
       pagination={{
         pageSize: 10,
       }}
-      dateFormatter="string"
-      headerTitle="高级表格"
-      toolBarRender={() => [
-      <Button key="button" icon={<PlusOutlined />} type="primary">
-        新建
-      </Button>,
-      <Dropdown key="menu" overlay={menu}>
-        <Button>
-          <EllipsisOutlined />
-        </Button>
-      </Dropdown>,
-    ]}
+      scroll={{ x: 1300 }}
+      dateFormatter="string"    // 时间转换格式
+      headerTitle={props.headerTitle || '未知列表'}
+      toolBarRender={() => props.toolBarRender || false}
+      rowSelection={props.rowSelection || false}
+      tableAlertRender={props.tableAlertRender || false}
+      tableAlertOptionRender={props.tableAlertOptionRender || false}
+      onRow={props.onRow}
+      onHeaderRow={props.onHeaderRow}
       />
   );
 };
+
+export default DataTable;

+ 215 - 0
src/pages/Order/Billing/index.jsx

@@ -0,0 +1,215 @@
+import React, { Component } from 'react';
+import DataTable from '@/components/common/DataTable';
+import {Button, Dropdown, Menu, Space, Table, DatePicker} from "antd";
+import {EllipsisOutlined, PlusOutlined} from "@ant-design/icons";
+import { TableDropdown } from '@ant-design/pro-table';
+
+const { RangePicker } = DatePicker;
+
+const menu = (
+  <Menu>
+    <Menu.Item key="1">1st item</Menu.Item>
+    <Menu.Item key="2">2nd item</Menu.Item>
+    <Menu.Item key="3">3rd item</Menu.Item>
+  </Menu>
+);
+
+class Billing extends Component{
+  constructor(props) {
+    super(props);
+    this.state = {
+      columns: [
+        {
+          title: '合同编号',
+          dataIndex: 'contractNo',
+          width: 200,
+          lock: 'left',
+          searchbool: true,
+        },
+        {
+          title: '订单编号',
+          dataIndex: 'orderNo',
+          width: 200,
+        },
+        {
+          title: '客户名称',
+          dataIndex: 'userName',
+          render: text => {
+            return text && text.length > 9 ? text.substr(0, 9) + '...' : text;
+          },
+        },
+        {
+          title: '订单部门',
+          dataIndex: 'depName',
+          width: 200,
+        },
+        {
+          title: '下单时间',
+          dataIndex: 'createDate',
+          valueType: 'dateRange',
+          searchbool: true,
+        },
+        {
+          title: '合同签订时间',
+          dataIndex: 'signDate',
+          width: 200,
+        },
+        {
+          title: '签单金额(万元)',
+          dataIndex: 'totalAmount',
+          width: 200,
+          filters: true,
+        },
+        {
+          title: '自定义筛选',
+          key: 'direction',
+          hideInTable: true,
+          dataIndex: 'direction',
+          searchbool: true,
+          search: {
+            transform: (v)=>{
+              console.log(v)
+              return v
+            }
+          },
+          renderFormItem: (item, props) => {
+            return (
+              <RangePicker value={props.value} onPanelChange={props.onChange}/>
+            );
+          },
+        },
+        {
+          title: '状态',
+          dataIndex: 'state',
+          initialValue: 'open',
+          valueType: 'select',
+          searchbool: true,
+          filters: true,
+          valueEnum: {
+            all: {
+              text: '全部',
+              status: 'Default'
+            },
+            open: {
+              text: '未解决',
+              status: 'Error',
+            },
+            closed: {
+              text: '已解决',
+              status: 'Success',
+            },
+            processing: {
+              text: '解决中',
+              status: 'Processing',
+            },
+          },
+        },
+        {
+          title: '操作',
+          valueType: 'option',
+          key: 'option',
+          fixed: 'right',
+          align: 'center',
+          width: 150,
+          render: (text, record, _, action) => [
+            <a
+              key="editable"
+              onClick={() => {}}
+            >
+              开票
+            </a>,
+            <a target="_blank" rel="noopener noreferrer" key="view">
+              结项
+            </a>,
+            <TableDropdown
+              key="actionGroup"
+              onSelect={(v) => {
+                //操作
+                console.log(v)
+              }}
+              menus={[
+                { key: 'copy', name: '复制' },
+                { key: 'delete', name: '删除' },
+              ]}
+            />,
+          ],
+        },
+      ]
+    }
+  }
+
+  componentDidMount() {
+
+  }
+
+  render() {
+    return (
+      <div>
+        <DataTable
+          url='/api/admin/newOrder/orderNewList'
+          rowKey='orderNo'
+          columns={this.state.columns}
+          rowSelection={{
+            type: 'radio',
+            selections: [Table.SELECTION_ALL, Table.SELECTION_INVERT],
+          }}
+          requestProcess={(v)=>{
+            if(v && v.createDate){
+              v.starTime = v.createDate[0];
+              v.endTime = v.createDate[1];
+              delete v.createDate;
+            }
+            return v;
+          }}
+          onRow={record => {
+            return {
+              onClick: (event) => {
+                console.log(record,event);
+              }, // 点击行
+            };
+          }}
+          onHeaderRow={column => {
+            return {
+              onClick: () => {}, // 点击表头行
+            };
+          }}
+          toolBarRender={[
+            <Button key="button" icon={<PlusOutlined />} type="primary">
+              新建
+            </Button>,
+            <Dropdown key="menu" overlay={menu}>
+              <Button>
+                <EllipsisOutlined />
+              </Button>
+            </Dropdown>,
+          ]}
+          tableAlertRender={({ selectedRowKeys, selectedRows, onCleanSelected }) => (
+            <Space size={24}>
+              <span>
+                已选 {selectedRowKeys.length} 项
+                <a style={{ marginLeft: 8 }} onClick={onCleanSelected}>
+                  取消选择
+                </a>
+              </span>
+                  <span>{`签单金额: ${selectedRows.reduce(
+                    (pre, item) => pre + item.totalAmount,
+                    0,
+                  )} 万`}</span>
+            </Space>
+          )}
+          tableAlertOptionRender={({ selectedRowKeys, selectedRows, onCleanSelected }) => {
+            return (
+              <Space size={16}>
+                <a>查看开票记录</a>
+                <a>查看催款详情</a>
+                <a>查看项目进度</a>
+              </Space>
+            );
+          }}
+        />
+      </div>
+    );
+  }
+}
+
+export default Billing;

+ 0 - 65
src/pages/Order/Billing/index.tsx

@@ -1,65 +0,0 @@
-import React, { Component } from 'react';
-import DataTable from '@/components/common/DataTable';
-import {Space, Tag} from "antd";
-import {TableDropdown} from "@ant-design/pro-table";
-
-class Billing extends Component{
-  constructor(props) {
-    super(props);
-    this.state = {
-      columns: [
-        {
-          title: '合同编号',
-          dataIndex: 'contractNo',
-          width: 200,
-          lock: 'left',
-          search: true,
-        },
-        {
-          title: '订单编号',
-          dataIndex: 'orderNo',
-          width: 200,
-        },
-        {
-          title: '客户名称',
-          dataIndex: 'userName',
-          render: text => {
-            return text && text.length > 9 ? text.substr(0, 9) + '...' : text;
-          },
-        },
-        {
-          title: '订单部门',
-          dataIndex: 'depName',
-          width: 200,
-        },
-        {
-          title: '下单时间',
-          dataIndex: 'createDate',
-        },
-        {
-          title: '合同签订时间',
-          dataIndex: 'signDate',
-          width: 200,
-        },
-      ]
-    }
-  }
-
-  componentDidMount() {
-
-  }
-
-  render() {
-    return (
-      <div>
-        <DataTable
-          url={'/api/admin/newOrder/orderNewList'}
-          rowKey={'orderNo'}
-          columns={this.state.columns}
-        />
-      </div>
-    );
-  }
-}
-
-export default Billing;

+ 1 - 2
src/pages/user/login/index.tsx

@@ -65,10 +65,9 @@ const Login: React.FC<{}> = () => {
     try {
       // 登录
       const msg = await fakeAccountLogin({ ...values, type });
-      console.log(msg,'sss');
       if(msg.error.length === 0){
         message.success('登录成功!');
-        // await fetchUserInfo();
+        await fetchUserInfo();
         goto();
         return;
       }else{