浏览代码

管理员列表

HW 4 年之前
父节点
当前提交
391c3479f5

+ 3 - 0
README.md

@@ -1,3 +1,6 @@
+yarn upgrade-interactive --latest 更新依赖版本
+
+
 # Ant Design Pro
 
 This project is initialized with [Ant Design Pro](https://pro.ant.design). Follow is the quick guide for how to use.

+ 1 - 1
package.json

@@ -52,7 +52,7 @@
     "@ant-design/pro-layout": "^6.5.0",
     "@ant-design/pro-table": "^2.9.16",
     "@umijs/route-utils": "^1.0.33",
-    "antd": "^4.8.6",
+    "antd": "^4.10.2",
     "classnames": "^2.2.6",
     "lodash": "^4.17.11",
     "moment": "^2.25.3",

+ 32 - 1
src/app.tsx

@@ -24,8 +24,10 @@ export const initialStateConfig = {
 export async function getInitialState(): Promise<{
   settings?: LayoutSettings;
   currentUser?: API.CurrentUser;
+  globalConfig?: {},
   fetchUserInfo?: () => Promise<API.CurrentUser | undefined>;
   fetchNavList?: () => Promise<API.CurrentUser | undefined>;
+  getGlobalConfig?: () => Promise<API.CurrentUser | undefined>;
   menuData: MenuDataItem[];
 }> {
   const fetchUserInfo = async () => {
@@ -47,14 +49,42 @@ export async function getInitialState(): Promise<{
     }
     return undefined;
   };
+  // 系统的相关配置
+  //      window.globalConfig = {};
+  // 			globalConfig.context = "";
+  // 			globalConfig.portalHost = "\/\/sf.jishutao.com\/portal\/2.0.6";
+  // 			globalConfig.staticDomain = "\/\/static.jishutao.com";
+  // 			globalConfig.staticHost = "\/\/static.jishutao.com\/1.1.61";
+  // 			globalConfig.uploadPath = null;
+  // 			globalConfig.uploadPrivatePath = null;
+  // 			globalConfig.avatarHost = "\/\/static.jishutao.com";
+  // TODO 这里要加个接口返回
+  const getGlobalConfig = async () => {
+    return {
+      avatarHost: '//static.jishutao.com',
+      adminData: {
+        mobile : "admin",
+        name : "\u79D1\u5FB7\u9879\u76EE\u7BA1\u7406\u7CFB\u7EDF",
+        email : "2304089483@qq.com",
+        createTime : "2018-11-01T11:13:18.000+08:00",
+        uid : "1",
+        departmentId : "04d7a497-f009-41fc-af89-538e4f05e9b2",
+        isSuperAdmin : true,
+        isApprovalDecision : false
+      }
+    }
+  };
   // 如果是登录页面,不执行
   if (history.location.pathname !== '/user/login') {
     const currentUser = await fetchUserInfo();
     const currentNavList = await fetchNavList();
+    const globalConfig = await getGlobalConfig();
     return {
       fetchUserInfo,
       fetchNavList,
       currentUser,
+      globalConfig,
+      getGlobalConfig,
       menuData: currentNavList,
       settings: defaultSettings,
     };
@@ -63,6 +93,7 @@ export async function getInitialState(): Promise<{
     menuData: [],
     fetchUserInfo,
     fetchNavList,
+    getGlobalConfig,
     settings: defaultSettings,
   };
 }
@@ -168,7 +199,7 @@ export const request: RequestConfig = {
       if (config.method === 'post') {
         config.data = qs.stringify({
           ...(config.data || {}),
-        });
+        }, {arrayFormat: 'brackets'});
       }
       config.headers = {
         'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8;',

+ 0 - 1
src/components/common/ImgOperation/index.jsx

@@ -103,7 +103,6 @@ class ImgList extends Component{
             <Upload
               {...this.props.uploadConfig}
               className={Object.keys(this.props.uploadConfig).length !== 0 ? "" : "demandDetailShow-upload" }
-              listType="picture-card"
               fileList={
                 Object.keys(this.props.uploadConfig).length !== 0 ?
                   (

+ 214 - 67
src/pages/admin/user/administrators/compenents/addUser.jsx

@@ -1,15 +1,16 @@
 import React,{Component} from 'react';
-import {AutoComplete, Form, message, Modal, Spin} from "antd";
-import ProForm, {ModalForm, ProFormCheckbox, ProFormSelect, ProFormText} from "@ant-design/pro-form";
-import {post, roleResources, station,cityArr} from "@/utils/dataDic";
-import { LoadingOutlined } from '@ant-design/icons';
+import {AutoComplete, Form, message} from "antd";
+import ProForm, {ModalForm, ProFormSelect, ProFormText} from "@ant-design/pro-form";
+import {post, station,cityArr} from "@/utils/dataDic";
+import {splitUrl} from '@/utils/tools';
 import {getSelectSuperId,getRolesList} from "@/services/user";
+import {connectModel} from "@/services/common";
 import ImgOperation from "@/components/common/ImgOperation";
-import {selectName} from "@/pages/admin/user/jurisdiction/services/API";
-import {getSelectName} from '../services/API';
+import {getSelectName,setInsertAdmin,getNewId,getSelectAllByid,getUserRole,updateAdmin} from '../services/API';
 
 const { Option } = AutoComplete;
 
+@connectModel('test', '@@initialState')
 class AddUser extends Component{
   constructor(props) {
     super(props);
@@ -18,14 +19,87 @@ class AddUser extends Component{
       fileList: [],
       uploadImgLoading: false,
       modules: [],
+      addId: '',
+      details: {},
     }
     this.handleSearchModule= this.handleSearchModule.bind(this);
   }
 
-  addUser= async ()=>{
+  addUser= async (value) =>{
     if(this.state.uploadImgLoading){
       message.info('有图片正在上传中,请稍后');
-      return;
+      return false;
+    }
+    let superiorId ='';
+    if(value.superiorId){
+      let arr = this.state.modules.filter(v=>v.name === value.superiorId);
+      if(arr.length){
+        superiorId = arr[0].id
+      }
+    }
+    message.loading({content:'保存中...',key:'addUser'})
+    const msg = await setInsertAdmin({
+      roles:value.roles,
+      data:JSON.stringify({
+        id:this.state.addId,
+        email:value.email,
+        position:value.position,
+        mobile:value.mobile,
+        status:'正常',
+        contactMobile:value.contactMobile,
+        name:value.name,
+        duty:value.duty,
+        headPortraitUrl:value.headPortraitUrl.fileList[0].response.data,
+        departmentId:this.props.test.initialState.globalConfig.adminData.isSuperAdmin?value.departmentId:this.props.test.initialState.globalConfig.adminData.departmentId,
+        superiorId:superiorId,
+        district:value.district,
+      })
+    });
+    if(msg.error.length === 0){
+      message.success({content:'保存成功',key:'addUser',duration:2.5});
+      this.props.onCancel();
+      this.props.tableRef.current.reload();
+    }else{
+      message.error({content:msg.error[0].message,key:'addUser',duration:2.5});
+    }
+  }
+
+  updateAdmin= async (value)=>{
+    if(this.state.uploadImgLoading){
+      message.info('有图片正在上传中,请稍后');
+      return false;
+    }
+    let superiorId ='';
+    if(value.superiorId){
+      let arr = this.state.modules.filter(v=>v.name === value.superiorId);
+      if(arr.length){
+        superiorId = arr[0].id
+      }
+    }
+    message.loading({content:'保存中...',key:'addUser'})
+    const msg = await updateAdmin({
+      roles:value.roles,
+      data:JSON.stringify({
+        id:this.props.userId,
+        email:value.email,
+        position:value.position,
+        mobile:value.mobile,
+        status: value.status,
+        contactMobile:value.contactMobile,
+        name:value.name,
+        duty:value.duty,
+        headPortraitUrl:value.headPortraitUrl ? value.headPortraitUrl.fileList[0].response.data : '',
+        departmentId:this.props.test.initialState.globalConfig.adminData.isSuperAdmin?value.departmentId:this.props.test.initialState.globalConfig.adminData.departmentId,
+        superiorId:superiorId,
+        district:value.district,
+      })
+    });
+    if(msg.error.length === 0){
+      message.success({content:'保存成功',key:'addUser',duration:2.5});
+      this.props.onCancel();
+      this.props.tableRef.current.reload();
+    }else{
+      message.error({content:msg.error[0].message,key:'addUser',duration:2.5});
     }
   }
 
@@ -45,6 +119,23 @@ class AddUser extends Component{
     return post;
   }
 
+  getStatus = async  () =>{
+    return [
+      {
+        label: '正常',
+        value: '正常',
+      },
+      {
+        label: '注销',
+        value: '注销',
+      },
+      {
+        label: '锁定',
+        value: '锁定',
+      }
+    ]
+  }
+
   getCityArr = async () => {
     cityArr.map((v)=>{
       v.label = v.key;
@@ -59,7 +150,7 @@ class AddUser extends Component{
     if(msg.error.length === 0){
       msg.data.forEach((item) => {
         theArr.push({
-          label: item.name,
+          label: item.roleName,
           value: item.id
         });
       });
@@ -96,19 +187,84 @@ class AddUser extends Component{
     }
   }
 
+  getNewId= async ()=>{
+    const msg = await getNewId();
+    if(msg.error.length === 0){
+      this.setState({
+        addId: msg.data
+      })
+    }else{
+      message.error(msg.error[0].message)
+    }
+  }
+
+  getUserRole= async (id)=>{
+    const msg = await getUserRole(id);
+    if(msg.error.length === 0){
+      this.formRef.current.setFieldsValue({
+        roles: msg.data,
+      })
+    }else{
+      message.error(msg.error[0].message);
+    }
+  }
+
+  getSelectAllByid= async (id)=>{
+    const msg = await getSelectAllByid(id);
+    if(msg.error.length === 0){
+      this.setState({
+        details: msg.data,
+        fileList: msg.data.headPortraitUrl? splitUrl(msg.data.headPortraitUrl, ',', this.props.test.initialState.globalConfig.avatarHost + '/upload').fileList : []
+      })
+      let superiorId ='';
+      if(msg.data.superiorId){
+        let arr = this.state.modules.filter(v=>v.id === msg.data.superiorId);
+        if(arr.length){
+          superiorId = arr[0].name
+        }
+      }
+      this.formRef.current.setFieldsValue({
+           email:msg.data.email,
+           position:msg.data.position,
+           mobile:msg.data.mobile,
+           status: msg.data.status,
+           contactMobile:msg.data.contactMobile,
+           name:msg.data.name,
+           duty:msg.data.duty,
+           headPortraitUrl:msg.data.headPortraitUrl? splitUrl(msg.data.headPortraitUrl, ',', this.props.test.initialState.globalConfig.avatarHost + '/upload') : '',
+           departmentId:msg.data.departmentId,
+           superiorId: superiorId,
+           district:msg.data.district ? JSON.parse(msg.data.district) : null,
+      });
+    }else{
+     message.error(msg.error.message);
+    }
+  }
+
+  async componentDidMount() {
+    if(!this.props.userId){
+      this.getNewId();
+    }else if(this.props.userId){
+      await this.handleSearchModule('');
+      await this.getUserRole(this.props.userId);
+      await this.getSelectAllByid(this.props.userId);
+    }
+  }
+
   formRef = React.createRef();
 
   render() {
+    const {userId} = this.props;
     return (
       <ModalForm
         formRef={this.formRef}
         visible={this.props.visible}
         preserve={false}
-        title='新建用户'
+        title={userId ? '编辑用户': '新建用户'}
         modalProps={{
-          onCancel: (e) => {e.stopPropagation();this.props.onCancel();},
+          onCancel: (e) => {e.stopPropagation();this.props.onCancel();this.setState({fileList:[]})},
         }}
-        onFinish={this.addUser}
+        onFinish={userId ? this.updateAdmin : this.addUser}
       >
           <ProForm.Group>
             <ProFormText
@@ -124,6 +280,8 @@ class AddUser extends Component{
               label="用户名"
             />
             <ProFormSelect
+              mode="multiple"
+              allowClear
               width="m"
               rules={[
                 {
@@ -149,23 +307,30 @@ class AddUser extends Component{
               name="name"
               label="用户姓名"
             />
-            <ProFormText
-              width="m"
+            <Form.Item
               rules={[
                 {
                   required:true,
-                  message:'请输入联系方式'
-                },
-                {
-                  pattern: /^1\d{10}$/,
-                  message: '不合法的手机号格式!',
+                  message:'请选择上级主管'
                 }
               ]}
-              placeholder="请输入手机号"
-              name="contactMobile"
-              label="联系方式"
-            />
-          </ProForm.Group>
+              label="上级主管"
+              name='superiorId'
+            >
+              <AutoComplete
+                style={{
+                  width:'328px'
+                }}
+                onSearch={this.handleSearchModule}
+                placeholder="请输入名称"
+              >
+                {this.state.modules.map((v) => (
+                  <Option key={v.id} value={v.name}>
+                    {v.name}
+                  </Option>
+                ))}
+              </AutoComplete>
+            </Form.Item>
           <ProForm.Group>
             <ProFormSelect
               width="m"
@@ -181,12 +346,6 @@ class AddUser extends Component{
               request={this.departmentList}/>
             <ProFormSelect
               width="m"
-              rules={[
-                {
-                  required:true,
-                  message:'请选择职务'
-                }
-              ]}
               placeholder="请选择职务"
               label='职务'
               name="duty"
@@ -195,12 +354,6 @@ class AddUser extends Component{
           <ProForm.Group>
             <ProFormSelect
               width="m"
-              rules={[
-                {
-                  required:true,
-                  message:'请选择岗位'
-                }
-              ]}
               placeholder="请选择岗位"
               label='岗位'
               name="position"
@@ -209,10 +362,6 @@ class AddUser extends Component{
               width="m"
               rules={[
                 {
-                  required:true,
-                  message:'请输入电子邮箱'
-                },
-                {
                   pattern: /^[A-Za-z0-9\-_]+[A-Za-z0-9\.\-_]*[A-Za-z0-9\-_]+@[A-Za-z0-9]+[A-Za-z0-9\.\-_]*(\.[A-Za-z0-9\.\-_]+)*[A-Za-z0-9]+\.[A-Za-z0-9]+[A-Za-z0-9\.\-_]*[A-Za-z0-9]+$/,
                   message: '不合法的邮箱格式!',
                 },
@@ -223,54 +372,52 @@ class AddUser extends Component{
             />
           </ProForm.Group>
           <ProForm.Group>
-            <Form.Item
+            <ProFormText
+              width="m"
               rules={[
                 {
-                  required:true,
-                  message:'请选择上级主管'
+                  pattern: /^1\d{10}$/,
+                  message: '不合法的手机号格式!',
                 }
               ]}
-              label="上级主管"
-              name='superior'
-            >
-              <AutoComplete
-                style={{
-                  width:'328px'
-                }}
-                onSearch={this.handleSearchModule}
-                placeholder="请输入名称"
-              >
-                {this.state.modules.map((v) => (
-                  <Option key={v.id} value={v.name}>
-                    {v.name}
-                  </Option>
-                ))}
-              </AutoComplete>
-            </Form.Item>
+              placeholder="请输入手机号"
+              name="contactMobile"
+              label="联系方式"
+            />
+          </ProForm.Group>
             <ProFormSelect
               mode="multiple"
               allowClear
               width="m"
+              placeholder="请选择地区"
+              label='地区'
+              name="district"
+              request={this.getCityArr}/>
+          </ProForm.Group>
+          <ProForm.Group>
+            {userId && <ProFormSelect
+              width="m"
               rules={[
                 {
                   required:true,
-                  message:'请选择地区'
+                  message:'请选择用户状态'
                 }
               ]}
-              placeholder="请选择地区"
-              label='地区'
-              name="district"
-              request={this.getCityArr}/>
+              placeholder="请选择用户状态"
+              label='用户状态'
+              name="status"
+              request={this.getStatus}/>}
           </ProForm.Group>
           <ProForm.Group>
-            <Form.Item label='用户头像'  name="orgCodeUrl" extra="图片建议:要清晰。">
+            <Form.Item label='用户头像'  name="headPortraitUrl" extra="图片建议:要清晰。">
               <ImgOperation
                 domId='uploadAdminImg'
                 uploadConfig={{
                   action:'/api/admin/superviser/uploadAdminImg',
-                  multiple:true,
+                  multiple:false,
                   data:{ 'sign': this.props.pictureSign || '' },
                   listType:"picture-card",
+                  maxCount:1
                 }}
                 onChange={(infor)=>{
                   this.setState({

+ 16 - 2
src/pages/admin/user/administrators/compenents/unifiedTransfer.jsx

@@ -1,5 +1,6 @@
 import React,{Component} from 'react';
-import {Button, Modal, Popconfirm} from "antd";
+import {Button, message, Modal, Popconfirm} from "antd";
+import {dimission} from '../services/API';
 import DataTable from "@/components/common/DataTable";
 
 class UnifiedTransfer extends Component{
@@ -30,7 +31,7 @@ class UnifiedTransfer extends Component{
         render: (text, record) => {
           return <Popconfirm
             title={'请确认转交【'+record.name+'】'}
-            onConfirm={(e)=>{e.stopPropagation();}}
+            onConfirm={(e)=>{e.stopPropagation();this.dimission(text)}}
             okText="确认"
             cancelText="取消"
             placement="topLeft">
@@ -44,6 +45,19 @@ class UnifiedTransfer extends Component{
     }
   }
 
+  dimission= async (transferId)=>{
+    message.loading({content:'转交中...',key:'dimission'})
+    const msg = await dimission({
+      aid:this.props.userId,
+      transferId
+    });
+    if(msg.error.length === 0){
+      message.success({content:'转交成功',key:'dimission',duration:2.5});
+    }else{
+      message.error({content:msg.error[0].message,key:'dimission',duration:2.5});
+    }
+  }
+
   render() {
     return (
       <Modal

+ 47 - 11
src/pages/admin/user/administrators/index.jsx

@@ -5,7 +5,7 @@ import {ProFormSelect} from "@ant-design/pro-form";
 import {getRolesList,getSelectSuperId} from '@/services/user';
 import {post,station} from '@/utils/dataDic';
 import {getPost,getStation} from '@/utils/tools.js';
-import {updateAdmin} from './services/API';
+import {updateAdmin,resetPwd} from './services/API';
 import UnifiedTransfer from './compenents/unifiedTransfer';
 import AddUser from './compenents/addUser';
 
@@ -108,12 +108,13 @@ class Administrators extends Component {
         key: 'id',
         fixed: 'right',
         align: 'center',
-        width: 250,
+        width: 315,
         render:(text,record,key,action)=>(
           <>
             {record.status === '正常' ? <Popconfirm
               title="是否锁定?"
-              onConfirm={(e)=>{e.stopPropagation();this.locking(record,action);}}
+              onConfirm={(e)=>{e.stopPropagation();this.locking(record,action)}}
+              onCancel={(e)=>{e.stopPropagation();}}
               okText="确认"
               cancelText="取消"
               placement="topLeft">
@@ -124,6 +125,7 @@ class Administrators extends Component {
             <Popconfirm
               title="是否激活?"
               onConfirm={(e)=>{e.stopPropagation();this.activation(record,action)}}
+              onCancel={(e)=>{e.stopPropagation();}}
               okText="确认"
               cancelText="取消"
               placement="topLeft">
@@ -131,10 +133,22 @@ class Administrators extends Component {
                 激活
               </Button>
             </Popconfirm> : null}
+            <Popconfirm
+              title="是否重置密码?"
+              onConfirm={(e)=>{e.stopPropagation();this.resetUserPwd(text,action);}}
+              onCancel={(e)=>{e.stopPropagation();}}
+              okText="确认"
+              cancelText="取消"
+              placement="topLeft">
+              <Button danger style={{marginLeft:'15px'}} onClick={(e)=>{e.stopPropagation();}}>
+                重置密码
+              </Button>
+            </Popconfirm>
             <Button type='primary' style={{marginLeft:'15px'}} danger onClick={(e)=>{
               e.stopPropagation();
               this.setState({
                 visible: true,
+                userId: text,
               })
             }}>
               离职一键转交
@@ -144,6 +158,18 @@ class Administrators extends Component {
       }],
       visible: false,
       addUserVisible: false,
+      userId: '',
+    }
+  }
+
+  resetUserPwd= async (id,action) =>{
+    message.loading({content:'重置中...',key:'resetPwd'})
+    const msg = await resetPwd(id);
+    if(msg.error.length === 0){
+      message.success({content:'重置成功',key:'resetPwd',duration:2.5});
+      action.reload();
+    }else{
+      message.error({content:msg.error[0].message,key:'resetPwd',duration:2.5})
     }
   }
 
@@ -244,7 +270,7 @@ class Administrators extends Component {
           headerTitle='角色管理'
           url='/api/admin/superviser/adminList'
           rowKey='id'
-          scroll={{x:1200}}
+          scroll={{x:1400}}
           columns={this.state.columns}
           search={{
             filterType: 'query',
@@ -254,6 +280,10 @@ class Administrators extends Component {
           onRow={(record) => ({
             onClick: (e) => {
               e.stopPropagation();
+              this.setState({
+                addUserVisible: true,
+                userId: record.id
+              })
             }
           })}
           toolBarRender={[
@@ -263,7 +293,8 @@ class Administrators extends Component {
               onClick={(e)=>{
                 e.stopPropagation();
                 this.setState({
-                  addUserVisible: true
+                  addUserVisible: true,
+                  userId: ''
                 })
               }}
             >
@@ -271,22 +302,27 @@ class Administrators extends Component {
             </Button>
           ]}
         />
-        <UnifiedTransfer
+        {this.state.visible && <UnifiedTransfer
+          userId={this.state.userId}
           visible={this.state.visible}
           onCancel={()=>{
             this.setState({
-              visible:false
+              visible:false,
+              userId: '',
             })
           }}
-        />
-        <AddUser
+        />}
+        {this.state.addUserVisible && <AddUser
+          userId={this.state.userId}
+          tableRef={ref}
           visible={this.state.addUserVisible}
           onCancel={()=>{
             this.setState({
-              addUserVisible:false
+              addUserVisible: false,
+              userId: ''
             })
           }}
-        />
+        />}
       </>
     );
   }

+ 57 - 1
src/pages/admin/user/administrators/services/API.ts

@@ -1,5 +1,6 @@
 import { request } from 'umi';
 
+// 修改用户
 export async function updateAdmin(data: object){
   return request('/api/admin/superviser/updateAdmin',{
     method:'post',
@@ -7,8 +8,16 @@ export async function updateAdmin(data: object){
   })
 }
 
+// 一键离职
+export async function dimission(data: object){
+  return request('/api/admin/role/dimission',{
+    method:'post',
+    data
+  })
+}
+
 // 查询上级主管
-export async function getSelectName(name: object){
+export async function getSelectName(name: string){
   return request('/api/admin/organization/selectName',{
     method:'post',
     data:{
@@ -16,3 +25,50 @@ export async function getSelectName(name: object){
     }
   })
 }
+
+// 新建用户
+export async function setInsertAdmin(data: object){
+  return request('/api/admin/superviser/insertAdmin',{
+    method:'post',
+    data
+  })
+}
+
+// 新建获取id
+export async function getNewId(data: object){
+  return request('/api/admin/superviser/newId',{
+    method:'get',
+    data
+  })
+}
+
+// 重置密码
+export async function resetPwd(id: object){
+  return request('/api/admin/superviser/resetPwd',{
+    method:'post',
+    data:{
+      id
+    }
+  })
+}
+
+// 查看基本详情基本信息
+export async function getSelectAllByid(id: string){
+  return request('/api/admin/superviser/selectAllByid',{
+    method:'post',
+    data: {
+      id
+    }
+  })
+}
+
+// 获取角色数组
+export async function getUserRole(uid: string){
+  return request('/api/admin/role',{
+    method:'get',
+    params: {
+      uid
+    }
+  })
+}
+

+ 11 - 0
src/services/common.js

@@ -0,0 +1,11 @@
+import { useModel } from 'umi';
+
+export function connectModel(key, name) {
+  return function (WrappedComponent) {
+    return function (props) {
+      const model = useModel(name);
+      const data = { [key]: model };
+      return <WrappedComponent {...props} {...data} />;
+    };
+  };
+}

+ 3 - 0
src/services/user.ts

@@ -33,3 +33,6 @@ export async function getRolesList(){
 export async function getSelectSuperId() {
   return request('/api/admin/organization/selectSuperId');
 }
+
+
+

+ 23 - 1
src/utils/tools.js

@@ -121,6 +121,27 @@ const getPattern = (e) => {
   }
 }
 
+// 处理图片地址
+const splitUrl = (string, i, url) => {
+  let theList = [];
+  let theArr = [];
+  if (string && string.length) {
+    theArr = string.split(i);
+    theArr.map((item, i) => {
+      let name = item.substring(item.lastIndexOf("_") + 1);
+      theList.push({
+        uid: -i - 1,
+        name: name,
+        url: url + item,
+        response: {
+          data: item,
+        },
+      });
+    });
+  }
+  return {fileList:theList};
+}
+
 export {
   getProcessStatus,
   getLiquidationStatus,
@@ -129,5 +150,6 @@ export {
   getInvoiceStatus,
   getPost,
   getPattern,
-  getStation
+  getStation,
+  splitUrl,
 };