ソースを参照

业务分类管理
设置默认加载中样式

HW 4 年 前
コミット
f6336c4919

+ 1 - 1
config/defaultSettings.ts

@@ -7,7 +7,7 @@ const Settings: LayoutSettings & {
   logo: 'http://ss.jishutao.com/portal/1.2.10/img/ico_logo.png',
   title: '科德管理系统',
   navTheme: 'realDark',
-  primaryColor: '#52C41A',
+  primaryColor: '#1890ff',
   layout: 'side',
   contentWidth: 'Fluid',
   fixedHeader: false,

+ 16 - 0
config/routes.ts

@@ -5,21 +5,37 @@
     component: './Order/Billing',
     access: 'billing',
   },
+  // 权限管理
   {
     path: '/jurisdiction',
     component: './admin/user/jurisdiction',
     access: 'jurisdiction',
   },
+  // 角色管理
   {
     path: '/roleManage',
     component: './admin/user/roleManage',
     access: 'roleManage',
   },
+  // 管理员列表
   {
     path: '/administrators',
     component: './admin/user/administrators',
     access: 'administrators',
   },
+  // 业务分类管理
+  {
+    path: '/category',
+    component: './admin/business/category',
+    access: 'category',
+  },
+  // 业务项目管理
+  {
+    path: '/project',
+    component: './admin/business/project',
+    access: 'project',
+  },
+  // 组织机构
   {
     path: '/mechanism',
     component: './admin/organization/mechanism',

+ 2 - 0
src/access.ts

@@ -6,6 +6,8 @@ const routers = {
   jurisdiction: false,
   administrators: false,
   mechanism: false,
+  category: false,
+  project: false,
 }
 
 export default function access(initialState: { currentUser?: API.CurrentUser | undefined }) {

+ 7 - 2
src/app.tsx

@@ -1,12 +1,13 @@
 import React from 'react';
 import { Settings as LayoutSettings, PageLoading,BasicLayoutProps } from '@ant-design/pro-layout';
-import {message, notification} from 'antd';
+import {message, notification, Spin} from 'antd';
 import qs from 'qs';
 import { history, RequestConfig, RunTimeLayoutConfig, ErrorShowType } from 'umi';
 import RightContent from '@/components/RightContent';
 import Footer from '@/components/Footer';
 import { ResponseError } from 'umi-request';
 import { MenuDataItem } from '@umijs/route-utils';
+import { LoadingOutlined } from '@ant-design/icons';
 import {
   queryCurrent,
   selectNavList
@@ -14,13 +15,17 @@ import {
 import defaultSettings from '../config/defaultSettings';
 import { Icon } from '@ant-design/compatible';
 
+const antIcon = <LoadingOutlined style={{ fontSize: 24 }} spin />;
+
 /**
  * 获取用户信息比较慢的时候会展示一个 loading
  */
 export const initialStateConfig = {
-  loading: <PageLoading />,
+  loading: <PageLoading/>,
 };
 
+Spin.setDefaultIndicator(antIcon);// 设置默认加载图标
+
 export async function getInitialState(): Promise<{
   settings?: LayoutSettings;
   currentUser?: API.CurrentUser;

+ 4 - 0
src/components/common/DataTable/index.tsx

@@ -1,6 +1,10 @@
 import React from 'react';
 import ProTable from '@ant-design/pro-table';
 import { request } from 'umi';
+import { LoadingOutlined } from '@ant-design/icons'
+import {Spin} from "antd";
+
+const antIcon = <LoadingOutlined style={{ fontSize: 24 }} spin />;
 
 export interface DataTable {
   toolBarRender?: object;           // 表格操作栏

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

@@ -126,7 +126,10 @@ class ImgList extends Component{
                   )
               }
               onPreview={(file) => {
-                this.state.gallery.view(file.index).show();
+                if(!this.state.gallery){
+                  message.info('图片加载中请稍后')
+                }
+                this.state.gallery && this.state.gallery.view(file.index).show();
               }}
               beforeUpload={this.beforeUpload}
               onChange={(infor)=>{

+ 281 - 0
src/pages/admin/business/category/components/categoryOperation.jsx

@@ -0,0 +1,281 @@
+import React,{Component} from "react";
+import ProForm, {ModalForm, ProFormSelect, ProFormText} from "@ant-design/pro-form";
+import { LoadingOutlined,ExclamationCircleOutlined } from '@ant-design/icons';
+import {getSuperList,addVarieties,getDetailVarieties,setEditVarieties} from '../services/API';
+import {splitUrl} from '@/utils/tools';
+import {Form, message, Modal, Select, Spin} from "antd";
+import {connectModel} from "@/services/common";
+import ImgOperation from "@/components/common/ImgOperation";
+
+const antIcon = <LoadingOutlined style={{ fontSize: 24 }} spin />;
+const confirm = Modal.confirm;
+
+@connectModel('test', '@@initialState')
+class CategoryOperation extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      loading:false,
+      fileList: [],
+      uploadImgLoading: false,
+      superId: '',
+    }
+  }
+
+  inquiry=(value)=>{
+    if(this.state.uploadImgLoading){
+      message.info('有图片正在上传中,请稍后');
+      return false;
+    }
+
+    let statusLv = value.status === '1';
+    let superNameLv = value.superId !== this.state.superId;
+    let _this = this;
+    if(statusLv || superNameLv){
+      confirm({
+        title:'修改提醒',
+        icon: <ExclamationCircleOutlined />,
+        content: statusLv && superNameLv ? '确定要修改该品类的上级品类并且停用该品类吗?' : statusLv ? '确定要停用该品类吗?' : '确定要修改该品类的上级品类吗?',
+        onOk() {
+          _this.updateType(value);
+        }
+      })
+    }else{
+      this.updateType(value);
+    }
+  }
+
+  updateType= async (value)=>{
+    let thecompanyLogoUrl = [];
+    if(this.state.fileList.length) {
+      let picArr = [];
+      this.state.fileList.map((item) => {
+        picArr.push(item.response.data);
+      });
+      thecompanyLogoUrl = picArr.join(",");
+    };
+    message.loading({content:'修改中...',key:'setEditVarieties'});
+    const msg = await setEditVarieties({
+      id: this.props.typeInfor.id, // 品类ID
+      cname: value.cname, // 品类名称
+      superId: value.superId, // 上级品类
+      status: value.status, // 品类状态
+      varietiesLogo: thecompanyLogoUrl,
+      sort: value.sort
+    });
+    if(msg.error.length === 0){
+      message.success({content:'修改成功',key:'setEditVarieties',duration:2.5});
+      this.props.formRef.current.reload();
+      this.props.onCancel();
+    }else{
+      message.error({content:msg.error[0].message,key:'setEditVarieties',duration:"2.5"});
+    }
+  }
+
+  getCategoryStateList=async ()=>{
+    return [
+      {
+        label: '正常',
+        value: '0',
+      },
+      {
+        label: '停用',
+        value: '1',
+      }
+    ];
+  }
+
+  addType= async (value)=>{
+    message.loading({content:'保存中...',key:'addType'})
+    const msg = await addVarieties(value.cname,value.superId);
+    if(msg.error.length === 0){
+     message.success({content:'保存成功',key:'addType',duration:2.5});
+     this.props.formRef.current.reload();
+     this.props.onCancel();
+    }else{
+      message.error({content:msg.error[0].message,key:'addType',duration:2.5});
+    }
+  }
+
+  getSuperList= async ()=>{
+    const msg = await getSuperList(1);
+    let theArr = [];
+    if(msg.error.length === 0){
+      msg.data.forEach((item) => {
+        theArr.push({
+          label: item.cname,
+          value: item.id
+        });
+      });
+    }else{
+      message.error(msg.error.message);
+    }
+    return theArr;
+  }
+
+  getDetailVarieties=async ()=>{
+    this.setState({
+      loading: true,
+    })
+    const msg = await getDetailVarieties(this.props.typeInfor.id);
+    if(msg.error.length === 0){
+      this.formRef.current.setFieldsValue({
+        cname: msg.data.cname,
+        superId: msg.data.superId,
+        status: msg.data.status,
+        sort: msg.data.sort,
+        layer: msg.data.layer,
+        cid: msg.data.cid,
+        createName: msg.data.createName,
+        createTimeFormattedDate: msg.data.createTimeFormattedDate,
+        varietiesLogo:msg.data.varietiesLogo? splitUrl(msg.data.varietiesLogo, ',', this.props.test.initialState.globalConfig.avatarHost + '/upload').fileList : [],
+      });
+      this.setState({
+        superId: msg.data.superId,
+        fileList: msg.data.varietiesLogo? splitUrl(msg.data.varietiesLogo, ',', this.props.test.initialState.globalConfig.avatarHost + '/upload').fileList : []
+      })
+    }else{
+      message.error(msg.error[0].message);
+    }
+    this.setState({
+      loading: false,
+    })
+  }
+
+  componentDidMount() {
+    if(this.props.typeInfor.id){
+      this.getDetailVarieties();
+    }
+  }
+
+  formRef = React.createRef();
+
+  render() {
+    return (
+      <ModalForm
+        formRef={this.formRef}
+        visible={this.props.visible}
+        preserve={false}
+        title={this.props.typeInfor ? '编辑种类' : '新建种类'}
+        modalProps={{
+          width:400,
+          onCancel: (e) => {e.stopPropagation();this.props.onCancel();},
+        }}
+        onFinish={this.props.typeInfor ? this.inquiry : this.addType}
+      >
+        <Spin spinning={this.state.loading} indicator={antIcon}>
+          <ProForm.Group>
+            <ProFormText
+              width="m"
+              rules={[
+                {
+                  required:true,
+                  message:'请输入品类名称'
+                }
+              ]}
+              placeholder="请输入品类名称"
+              name="cname"
+              label="品类名称"/>
+          </ProForm.Group>
+          <ProForm.Group>
+            <ProFormSelect
+              width="m"
+              label='上级品类'
+              name="superId"
+              placeholder="请选择上级品类"
+              rules={[
+                {
+                  required:true,
+                  message:'请选择上级品类'
+                }
+              ]}
+              request={this.getSuperList}/>
+          </ProForm.Group>
+          {this.props.typeInfor && <>
+            <ProForm.Group>
+              <ProFormSelect
+                width="m"
+                label='品类状态'
+                name="status"
+                placeholder="请选择品类状态"
+                rules={[
+                  {
+                    required:true,
+                    message:'请选择品类状态'
+                  }
+                ]}
+                request={this.getCategoryStateList}/>
+            </ProForm.Group>
+            <ProForm.Group>
+              <ProFormText
+                width="m"
+                rules={[
+                  {
+                    required:true,
+                    message:'请输入品类序号'
+                  }
+                ]}
+                placeholder="请输入品类序号"
+                name="sort"
+                label="品类序号"/>
+            </ProForm.Group>
+            <ProForm.Group>
+              <Form.Item label='业务品类图标'  name="varietiesLogo" extra="图片建议:要清晰。">
+                <ImgOperation
+                  domId='varietiesLogo'
+                  uploadConfig={{
+                    action:'/api/admin/Varieties/uploadPicture',
+                    multiple:true,
+                    data:{ 'sign': 'varieties_picture' },
+                    listType:"picture-card",
+                  }}
+                  onChange={(infor)=>{
+                    this.setState({
+                      fileList: infor.fileList,
+                    });
+                  }}
+                  fileList={this.state.fileList}
+                  onUploadState={(v)=>{
+                    this.setState({
+                      uploadImgLoading: v.state === 'uploading'
+                    })
+                  }}
+                />
+              </Form.Item>
+            </ProForm.Group>
+            <ProForm.Group>
+              <ProFormText
+                width="m"
+                readonly
+                name="layer"
+                label="品类层级"/>
+            </ProForm.Group>
+            <ProForm.Group>
+              <ProFormText
+                width="m"
+                readonly
+                name="cid"
+                label="品类编号"/>
+            </ProForm.Group>
+            <ProForm.Group>
+              <ProFormText
+                width="m"
+                readonly
+                name="createName"
+                label="创建人"/>
+            </ProForm.Group>
+            <ProForm.Group>
+              <ProFormText
+                width="m"
+                readonly
+                name="createTimeFormattedDate"
+                label="创建时间"/>
+            </ProForm.Group>
+          </>}
+        </Spin>
+      </ModalForm>
+    )
+  }
+}
+
+export default CategoryOperation;

+ 208 - 0
src/pages/admin/business/category/index.jsx

@@ -0,0 +1,208 @@
+import React,{Component} from 'react';
+import {Button, message, Popconfirm} from "antd";
+import DataTable from "@/components/common/DataTable";
+import {getCategoryState} from '@/utils/tools';
+import {getSuperList,deleteState,locationChange} from './services/API';
+import {ProFormSelect} from "@ant-design/pro-form";
+import CategoryOperation from './components/categoryOperation';
+
+class Business extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      columns: [
+        {
+          title: '品类序号',
+          dataIndex: 'sort',
+          key: 'sort',
+        },{
+          title: '品类编号',
+          dataIndex: 'cid',
+          key: 'cid',
+        }, {
+          title: '品类名称',
+          dataIndex: 'cname',
+          key: 'cname',
+          searchBool: true,
+        },  {
+          title: '品类层级',
+          dataIndex: 'layer',
+          key: 'layer',
+          searchBool: true,
+          valueType: 'select',
+          valueEnum: {
+            '1': {
+              text: '一级',
+            },
+            '2': {
+              text: '二级',
+            },
+            '3': {
+              text: '三级',
+            },
+          },
+        }, {
+          title: '上级品类',
+          dataIndex: 'superName',
+          key: 'superId',
+          searchBool: true,
+          renderFormItem: () => {
+            return (
+              <ProFormSelect label='' request={this.getSuperList}/>
+            );
+          },
+        },{
+          title: '品类状态',
+          dataIndex: 'status',
+          key: 'status',
+          searchBool: true,
+          renderFormItem: () => {
+            return (
+              <ProFormSelect label='' request={this.getCategoryStateList}/>
+            );
+          },
+          render: text => { return getCategoryState(text) }
+        },{
+          title: '品类状态',
+          dataIndex: 'id',
+          key: 'id',
+          fixed: 'right',
+          width: 220,
+          align:'center',
+          render: (text,record,_,action)=>{
+            return (
+              <>
+                <Popconfirm
+                  title="是否删除?"
+                  onConfirm={(e)=>{e.stopPropagation();this.deleteState(text,action)}}
+                  onCancel={(e)=>{e.stopPropagation();}}
+                  okText="确认"
+                  cancelText="取消"
+                  placement="topLeft">
+                  <Button size='small' type="link" onClick={(e)=>e.stopPropagation()}>删除</Button>
+                </Popconfirm>
+                <Button size='small' type="link" onClick={(e)=>{e.stopPropagation();this.locationChange('1',record,action)}}>品类上移</Button>
+                <Button size='small' type="link" onClick={(e)=>{e.stopPropagation();this.locationChange('0',record,action)}}>品类下移</Button>
+              </>
+            )
+          }
+        }
+      ],
+      typeVisible: false,
+    }
+  }
+
+  async componentDidMount() {
+
+  }
+
+  locationChange = async (type,value,action) =>{
+    message.loading({content:type === '1' ? '上移中...' : '上移中...',key:'locationChange'});
+    const msg = await locationChange(value.id,value.sort,type);
+    if(msg.error.length === 0){
+      message.success({content:type === '1' ? '上移成功' : '下移成功',key:'locationChange',duration:2.5});
+      action.reload();
+    }else{
+      message.error({content: msg.error[0].message ,key:'locationChange',duration:2.5});
+    }
+  }
+
+  deleteState= async (id,action)=>{
+    message.loading({content:'删除中...',key:'deleteState'});
+    const msg = await deleteState(id);
+    if(msg.error.length === 0){
+      message.success({content:'删除成功',key:'deleteState',duration:2.5});
+      action.reload();
+    }else{
+      message.error({content:msg.error[0].message,key:'deleteState',duration:2.5})
+    }
+  }
+
+  getSuperList= async ()=>{
+    const msg = await getSuperList(1);
+    let theArr = [];
+    if(msg.error.length === 0){
+      msg.data.forEach((item) => {
+        theArr.push({
+          label: item.cname,
+          value: item.id
+        });
+      });
+    }else{
+      message.error(msg.error.message);
+    }
+    return theArr;
+  }
+
+  getCategoryStateList=async ()=>{
+    return [
+      {
+        label: '正常',
+        value: '0',
+      },
+      {
+        label: '停用',
+        value: '1',
+      }
+    ];
+  }
+
+  render() {
+    const ref = React.createRef();
+    return (
+      <>
+        <DataTable
+          ref={ref}
+          headerTitle='业务分类管理'
+          url='/api/admin/Varieties/vtList'
+          method='post'
+          rowKey='id'
+          scroll={{x:1100}}
+          columns={this.state.columns}
+          search={{
+            filterType: 'query',
+            labelWidth: 'auto',
+            defaultCollapsed: false,
+          }}
+          onRow={(record) => ({
+            onClick: (e) => {
+              e.stopPropagation();
+              this.setState({
+                typeVisible: true,
+                typeInfor: record
+              })
+            }
+          })}
+          toolBarRender={[
+            <Button
+              type='primary'
+              key='addUser'
+              onClick={(e)=>{
+                e.stopPropagation();
+                this.setState({
+                  typeVisible: true,
+                  typeInfor: ''
+                })
+              }}
+            >
+              新增品类
+            </Button>
+          ]}
+        />
+        {this.state.typeVisible && <CategoryOperation
+          formRef={ref}
+          visible={this.state.typeVisible}
+          typeInfor={this.state.typeInfor}
+          onCancel={()=>{
+            this.setState({
+              typeVisible: false,
+              typeInfor: ''
+            })
+          }}
+        />}
+      </>
+    );
+  }
+}
+
+export default Business;

+ 63 - 0
src/pages/admin/business/category/services/API.ts

@@ -0,0 +1,63 @@
+import {request} from 'umi';
+
+// 获取组织列表
+export async function getSuperList(flag: number){
+  return request('/api/admin/Varieties/getSuperList',{
+    method:'get',
+    params:{
+      flag
+    }
+  })
+}
+
+// 新增组织
+export async function addVarieties(cname: string,superId: string){
+  return request('/api/admin/Varieties/addVarieties',{
+    method:'get',
+    params:{
+      cname,
+      superId
+    }
+  })
+}
+
+// 获取组织详情
+export async function getDetailVarieties(id: string){
+  return request('/api/admin/Varieties/detailVarieties',{
+    method:'get',
+    params:{
+      id
+    }
+  })
+}
+
+// 更改组织详情
+export async function setEditVarieties(data: object){
+  return request('/api/admin/Varieties/editVarieties',{
+    method:'post',
+    data,
+  })
+}
+
+// 删除品类
+export async function deleteState(id: string){
+  return request('/api/admin/Varieties/deleteState',{
+    method:'get',
+    params:{
+      id
+    },
+  })
+}
+
+// 品类移动
+// type : 0下移  1 上移
+export async function locationChange(id: string,sort: string,type:string){
+  return request('/api/admin/Varieties/locationChange',{
+    method:'get',
+    params:{
+      id,
+      sort,
+      flag:type,
+    },
+  })
+}

+ 82 - 0
src/pages/admin/business/project/components/addProject.jsx

@@ -0,0 +1,82 @@
+import React,{Component} from 'react';
+import {Button, message} from 'antd';
+import ProForm, {ModalForm, ProFormSelect, ProFormText} from "@ant-design/pro-form";
+import { PlusOutlined } from '@ant-design/icons';
+import {getAllCname} from '../services/API';
+
+class AddProject extends Component{
+  constructor(props) {
+    super(props);
+  }
+
+  formRef = React.createRef();
+
+  getAllCname=async (value)=>{
+    const msg = await getAllCname(value);
+    let theArr = [];
+    if(msg.error.length === 0){
+      msg.data.forEach((item,key) => {
+        theArr.push({
+          label: item.cname,
+          value: key,
+        });
+      });
+    }else{
+      message.error(msg.error[0].message)
+    }
+    return theArr;
+  }
+
+  render() {
+    return (
+      <ModalForm
+        formRef={this.formRef}
+        preserve={false}
+        title='新增业务项目'
+        trigger={
+          <Button type="primary">
+            <PlusOutlined />
+            新建表单
+          </Button>
+        }
+        modalProps={{
+          width: 380
+        }}
+        onFinish={this.addUser}
+      >
+        <ProForm.Group>
+          <ProFormText
+            width="m"
+            rules={[
+              {
+                required:true,
+                message:'请输入业务项目名称'
+              }
+            ]}
+            placeholder="请输入业务项目名称"
+            name="mobile"
+            label="业务项目名称"
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormSelect
+            mode="multiple"
+            allowClear
+            width="m"
+            rules={[
+              {
+                required:true,
+                message:'请选择业务品类'
+              }
+            ]}
+            placeholder="请选择业务品类"
+            label='业务品类'
+            name="roles"
+            request={this.getAllCname}/>
+        </ProForm.Group>
+      </ModalForm>
+    )
+  }
+}
+
+export default AddProject;

+ 147 - 0
src/pages/admin/business/project/index.jsx

@@ -0,0 +1,147 @@
+import React,{Component} from 'react';
+import {Button} from "antd";
+import DataTable from "@/components/common/DataTable";
+import {getCategoryState,getGameState,splitUrl,getprovince} from '@/utils/tools';
+import AddProject from './components/addProject';
+
+class Project extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      columns: [
+        {
+          title: "项目名称",
+          dataIndex: "bname",
+          key: "bname",
+        },
+        {
+          title: "业务品类",
+          dataIndex: "cname",
+          key: "cname",
+        },
+        {
+          title: "业务地区",
+          dataIndex: "country",
+          key: "country",
+          render: (text,record) => {
+            let isCountry = "";
+            if (text === '1') {
+              isCountry = "全国";
+            } else {
+              if (record.city == null || !record.city) {
+                isCountry += getprovince(parseInt(record.province));
+              } else if (
+                record.district == null ||
+                !record.district
+              ) {
+                isCountry += getprovince(parseInt(record.province)) + "-";
+                isCountry += getprovince(parseInt(record.city));
+              } else {
+                isCountry += getprovince(parseInt(record.province)) + "-";
+                isCountry += getprovince(parseInt(record.city)) + "-";
+                isCountry += getprovince(parseInt(record.district));
+              }
+            }
+            return (
+              isCountry
+            );
+          }
+        },
+        {
+          title: "市场价",
+          dataIndex: "price",
+          key: "price",
+        },
+        {
+          title: "最低折扣",
+          dataIndex: "offset",
+          key: "offset",
+        },
+        {
+          title: "会员价",
+          dataIndex: "memberPrice",
+          key: "memberPrice",
+        },
+        {
+          title: "活动价",
+          dataIndex: "activityPrice",
+          key: "activityPrice",
+        },
+        {
+          title: "活动生效标识",
+          dataIndex: "activityFlag",
+          key: "activityFlag",
+          render: (text) => {
+            return getGameState(text);
+          },
+        },
+        {
+          title: "业务状态",
+          dataIndex: "status",
+          key: "status",
+          render: (text) => {
+            return getCategoryState(text);
+          },
+        },
+        {
+          title: "项目分类",
+          dataIndex: "type",
+          key: "type",
+          render: (text, record) => {
+            if (record.type === 0) {
+              return "通用";
+            } else if (record.type === 1) {
+              return "专利";
+            } else if (record.type === 2) {
+              return "软著";
+            } else if (record.type === 3) {
+              return "审计";
+            }else if(record.type === 4) {
+              return "双软"
+            }else if(record.type === 5) {
+              return "高新"
+            }else if(record.type === 6) {
+              return "商标"
+            }
+          },
+        },
+      ]
+    }
+  }
+
+  render() {
+    const ref = React.createRef();
+    return (
+      <>
+        <DataTable
+          ref={ref}
+          headerTitle='业务项目管理'
+          url='/api/admin/ProjectSize/listProject'
+          method='post'
+          rowKey='id'
+          scroll={{x:1100}}
+          columns={this.state.columns}
+          search={{
+            filterType: 'query',
+            labelWidth: 'auto',
+            defaultCollapsed: false,
+          }}
+          onRow={(record) => ({
+            onClick: (e) => {
+              e.stopPropagation();
+              this.setState({
+                typeVisible: true,
+                typeInfor: record
+              })
+            }
+          })}
+          toolBarRender={[
+            <AddProject  key='addProject'/>
+          ]}
+        />
+      </>
+    )
+  }
+}
+
+export default Project;

+ 11 - 0
src/pages/admin/business/project/services/API.ts

@@ -0,0 +1,11 @@
+import {request} from "@@/plugin-request/request";
+
+// 获取上级品类
+export async function getAllCname(){
+  return request('/api/admin/ProjectSize/getAllCname',{
+    method:'get',
+    params:{
+      flag: 0
+    },
+  })
+}

+ 1 - 1
src/pages/admin/organization/mechanism/index.jsx

@@ -126,7 +126,7 @@ class Mechanism extends Component{
       <>
         <DataTable
           ref={ref}
-          headerTitle='角色管理'
+          headerTitle='组织结构'
           url='/api/admin/organization/listOrganizationManagement'
           method='post'
           rowKey='id'

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

@@ -59,8 +59,8 @@ class AddUser extends Component{
     });
     if(msg.error.length === 0){
       message.success({content:'保存成功',key:'addUser',duration:2.5});
-      this.props.onCancel();
       this.props.tableRef.current.reload();
+      this.props.onCancel();
     }else{
       message.error({content:msg.error[0].message,key:'addUser',duration:2.5});
     }
@@ -98,8 +98,8 @@ class AddUser extends Component{
     });
     if(msg.error.length === 0){
       message.success({content:'保存成功',key:'addUser',duration:2.5});
-      this.props.onCancel();
       this.props.tableRef.current.reload();
+      this.props.onCancel();
     }else{
       message.error({content:msg.error[0].message,key:'addUser',duration:2.5});
     }

+ 16 - 16
src/pages/admin/user/administrators/index.jsx

@@ -83,21 +83,21 @@ class Administrators extends Component {
         dataIndex: 'status',
         key: 'status',
         searchBool: true,
-        renderFormItem: () => {
-          return (
-            <ProFormSelect label='' valueEnum={{
-              '正常': {
-                text: '正常',
-              },
-              '锁定': {
-                text: '锁定',
-              },
-              '注销': {
-                text: '注销',
-              }
-            }}/>
-          );
-        }
+        valueType: 'select',
+        valueEnum: {
+          '正常': {
+            text: '正常',
+            status: 'Success',
+          },
+          '锁定': {
+            text: '锁定',
+            status: 'Warning',
+          },
+          '注销': {
+            text: '注销',
+            status: 'Error',
+          },
+        },
       }, {
         title: '最后登录时间',
         dataIndex: 'lastLoginTime',
@@ -267,7 +267,7 @@ class Administrators extends Component {
       <>
         <DataTable
           ref={ref}
-          headerTitle='角色管理'
+          headerTitle='管理员列表'
           url='/api/admin/superviser/adminList'
           rowKey='id'
           scroll={{x:1500}}

+ 17 - 15
src/pages/document.ejs

@@ -190,22 +190,24 @@
           min-height: 420px;
         "
       >
-        <img src="<%= context.config.publicPath +'pro_icon.svg'%>" alt="logo" width="256" />
-        <div class="page-loading-warp">
-          <div class="ant-spin ant-spin-lg ant-spin-spinning">
-            <span class="ant-spin-dot ant-spin-dot-spin"
-              ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
-              ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
-            ></span>
-          </div>
-        </div>
+        <img src="http://ss.jishutao.com/portal/1.2.10/img/ico_logo.png" alt="logo" width="256" />
+<!--        <div class="page-loading-warp">-->
+<!--          <div class="ant-spin ant-spin-lg ant-spin-spinning">-->
+<!--            <span class="ant-spin-dot ant-spin-dot-spin">-->
+<!--              <i class="ant-spin-dot-item"></i>-->
+<!--              <i class="ant-spin-dot-item"></i>-->
+<!--              <i class="ant-spin-dot-item"></i>-->
+<!--              <i class="ant-spin-dot-item"></i>-->
+<!--            </span>-->
+<!--          </div>-->
+<!--        </div>-->
         <div style="display: flex; align-items: center; justify-content: center">
-          <img
-            src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg"
-            width="32"
-            style="margin-right: 8px"
-          />
-          Ant Design
+<!--          <img-->
+<!--            src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg"-->
+<!--            width="32"-->
+<!--            style="margin-right: 8px"-->
+<!--          />-->
+          科德管理系统
         </div>
       </div>
     </div>

+ 74 - 1
src/utils/tools.js

@@ -8,7 +8,9 @@ import {
   patternOrganization,
   station,
   conditionOrganization,
-  addressList
+  addressList,
+  categoryState,
+  gameState,
 } from './dataDic';
 
 // 流程状态
@@ -136,6 +138,19 @@ const getCondition = (e) => {
   }
 }
 
+// 品类状态
+const getCategoryState = (e) => {
+  if (e) {
+    let theType = "";
+    categoryState.map((item) => {
+      if (item.value === e) {
+        theType = item.key;
+      }
+    });
+    return theType;
+  }
+}
+
 // 处理图片地址
 const splitUrl = (string, i, url) => {
   let theList = [];
@@ -157,6 +172,20 @@ const splitUrl = (string, i, url) => {
   return {fileList:theList};
 }
 
+// 品类状态
+const getGameState = (index) => {
+  let e = index ? index.toString() : "";
+  if (e) {
+    let theType = "";
+    gameState.map((item) => {
+      if (item.value === e) {
+        theType = item.key;
+      }
+    });
+    return theType;
+  }
+}
+
 const citySelect = () => {
   let option = [];
   addressList.map((item, i) => {
@@ -182,6 +211,47 @@ const citySelect = () => {
   return option;
 }
 
+// 地区选择 省市区
+const getAddressSelect = () => {
+  addressList.map((v) =>{
+
+  })
+}
+
+// 省份转换
+const getprovince = (e) => {
+  let nub = parseInt(e);
+  let theType = "";
+  if (nub <= 34) {
+    addressList.map((item) => {
+      if (item.id === nub) {
+        theType = item.name;
+      }
+    });
+  }
+  if (nub > 34 && nub < 380) {
+    addressList.map((item) => {
+      item.cityList.map((city) => {
+        if (city.id === nub) {
+          theType = city.name;
+        }
+      });
+    });
+  }
+  if (nub >= 380) {
+    addressList.map((item) => {
+      item.cityList.map((city) => {
+        city.areaList.map((areas) => {
+          if (areas.id === nub) {
+            theType = areas.name;
+          }
+        });
+      });
+    });
+  }
+  return theType;
+}
+
 export {
   getProcessStatus,
   getLiquidationStatus,
@@ -194,4 +264,7 @@ export {
   splitUrl,
   getCondition,
   citySelect,
+  getCategoryState,
+  getGameState,
+  getprovince,
 };