Blame view

src/pages/contract/ExpressChargingStandardSetting/index.tsx 4.84 KB
cb335d0f   谢忠泽   fix:快递收费标准优化
1
2
  import React, { useState } from "react";
  import { Button, Card, ConfigProvider, Divider, message, Popconfirm, Table } from "antd";
0bc2e94e   谢忠泽   add:快递收费标准配置
3
4
5
6
7
8
9
10
11
  import { PageHeaderWrapper } from "@ant-design/pro-layout";
  import zhCN from "antd/lib/locale-provider/zh_CN";
  import usePagination from "@/hooks/usePagination";
  import useInitial from "@/hooks/useInitail";
  import { PlusOutlined } from "@ant-design/icons";
  import AddModel from './components/AddModel';
  import Filter from './components/Filter';
  import * as API from './api';
  import _ from "lodash";
0bc2e94e   谢忠泽   add:快递收费标准配置
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  import st from "./style.less";
  
  interface Props {
  }
  
  const { Column } = Table;
  
  function expressChargingStandard(props:Props) {
    const [visible, setVisible] = useState<boolean>(false);
    const {
      list: standardList,
      loading,
      paginationConfig,
      innerParams,
      setParams,
      setLoading
    } = usePagination<API.Item>(API.getStandardPage, {current: 1, pageSize: 10});
    const { data: cityList, loading: cityLoading } = useInitial(API.getCityLsit, [], {});
1c4a8623   谢忠泽   fix:快递收费标准配置文案修改
30
    const { data: compList, loading: compLoading } = useInitial(API.fetchComps, [], {types: '88'});
0bc2e94e   谢忠泽   add:快递收费标准配置
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
    const [row, setRow] = useState<API.Item>();
    /**
     * @description: 编辑
     * @param {*} _
     * @return {*}
     */
    const edit = _.debounce(async (row:API.Item) => {
      await setRow({...row});
      setVisible(true);
    }, 800); 
  
    /**
     * @description: 删除
     * @param {*} _
     * @return {*}
     */
    const _delete = _.debounce((row:API.Item) => {
      const {id} = row;
      if (!id) return;
      setLoading(true);
      API.delStandard({expressChargeStandardId: id})
      .then(res => {
        message.success("操作成功");
        setParams({...innerParams}, true);
        setLoading(false);
      }).catch(err => {
        message.error(err?.message);
        setLoading(false);
      });
    }, 800);
  
    return (
      <PageHeaderWrapper 
        loading={cityLoading || compLoading} 
        title="快递收费标准配置"
      >
        <ConfigProvider locale={zhCN}>
          <Card className={st.page}>
            <div className={st.header}>
              <Filter
                cityList={cityList || []}
                compList={compList || []}
                setParams={setParams}
                innerParams={innerParams}
              />
              <Button
                type="primary"
                icon={<PlusOutlined />}
                onClick={() => {
                    setVisible(true);
                }}
              >
                新增
              </Button>
            </div>
            <Table
              size="middle"
              loading={loading}
              dataSource={standardList}
              pagination={{ ...paginationConfig }}
              scroll={{ y: 800 }}
              rowKey={(item: API.Item) => `${item.id}`}
              onChange={(_pagination) => setParams({ ..._pagination }, true)}
            >       
1c4a8623   谢忠泽   fix:快递收费标准配置文案修改
95
              <Column title="快递公司" width={200} dataIndex="tradeCompName" render={(t:any) => t || "-"} /> 
0bc2e94e   谢忠泽   add:快递收费标准配置
96
97
              <Column title="寄件地区" width={200} dataIndex="sendAreaName" render={(t:any) => t || '-'} />
              <Column title="到达地区" width={200} dataIndex="arriveAreaName" render={(t:any) => t || '-'} />
1c4a8623   谢忠泽   fix:快递收费标准配置文案修改
98
99
              <Column title="首重(元)" width={200} dataIndex="firstWeight" render={(t:any) => t || '-'} />
              <Column title="续重(元/kg)" width={200} dataIndex="continuedWeight" render={(t:any) => t || '-'} />
0bc2e94e   谢忠泽   add:快递收费标准配置
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
              <Column 
                title="操作"
                width={100} 
                dataIndex="unit"
                render={(text, row:API.Item) => (
                  <span>
                    <Popconfirm title="是否编辑?" onConfirm={() => edit(row)} okText="确定" cancelText="取消">
                      <a
                        onClick={(e) => {
                            e.preventDefault();
                        }}
                        style={{ color: "#FAAD14" }}
                      >
                        编辑
                      </a>
                    </Popconfirm>
                    <Divider type="vertical" />
                    <Popconfirm title="是否删除?" onConfirm={() => _delete(row)} okText="确定" cancelText="取消">
                      <a
                        onClick={(e) => {
                            e.preventDefault();
                        }}
                        style={{ color: "red" }}
                      >
                        删除
                      </a>
                    </Popconfirm>
                  </span>
                  
                )}
              /> 
            </Table>
            <AddModel 
              visible={visible}
              row={row}
              compList={compList || []}
              cityList={cityList || []}
              onCancel={() => {
                setVisible(false);
                setRow(undefined);
              }}
              onRefresh={() => setParams({ ...innerParams }, true)}
            />
          </Card>
        </ConfigProvider>
      </PageHeaderWrapper>
    );
  }
  
  export default expressChargingStandard;