Browse Source

业务分类管理

HW 4 years ago
parent
commit
2d88922b05

+ 8 - 1
src/app.tsx

@@ -106,7 +106,7 @@ export async function getInitialState(): Promise<{
 const handleMenuList = (menuList)=>{
   menuList.map((value)=>{
     value.path = value.url;
-    // value.icon = <Icon type="copy" theme="filled" />;
+    setMenuIcon(value);
     if(value.subMenus){
       value.routes = value.subMenus;
       handleMenuList(value.routes);
@@ -120,6 +120,13 @@ const handleMenuList = (menuList)=>{
   return menuList;
 }
 
+// 设置导航图标
+const setMenuIcon = (value)=>{
+  switch (value.url) {
+    case 'admin' : value.icon = <Icon type="control" theme="filled" />;break;
+  }
+}
+
 export const layout: RunTimeLayoutConfig = ({ initialState }: {
   initialState: {
     settings?: LayoutSettings;

+ 177 - 0
src/pages/admin/business/project/components/AddBusinessNorms.jsx

@@ -0,0 +1,177 @@
+import React,{Component} from 'react';
+import {message} from "antd";
+import {addProjectSize,orgProjectSize,getOrgProject} from '../services/API';
+import ProForm, {ModalForm, ProFormDigit, ProFormSelect, ProFormText} from "@ant-design/pro-form";
+
+class AddBusinessNorms extends Component{
+  constructor(props) {
+    super(props);
+  }
+
+  addProjectSize= async (value)=>{
+    if(value.offset>10 || value.offset<0){
+      message.warning('最低折扣请输入0到10之间的数字');
+      return false;
+    }
+    message.loading({content:'保存中...',key:'addProjectSize'});
+    value.pid = this.props.projectInfor.id;
+    const msg = await addProjectSize(value);
+    if(msg.error.length === 0){
+      message.success({content:'保存成功',key:'addProjectSize',duration:2.5});
+      this.props.formRef.current.reload();
+      this.props.onCancel();
+    }else{
+      message.error({content:msg.error[0].message,key:'addProjectSize',duration:2.5})
+    }
+  }
+
+  componentDidMount() {
+    if(this.props.businessNormsInfor){
+      this.getOrgProject();
+      this.ref.current.setFieldsValue({
+        pname:this.props.businessNormsInfor.pname,
+        price:this.props.businessNormsInfor.price,
+        activityPrice:this.props.businessNormsInfor.activityPrice,
+        offset:this.props.businessNormsInfor.offset,
+        memberPrice:this.props.businessNormsInfor.memberPrice,
+        activityFlag:this.props.businessNormsInfor.activityFlag,
+        status:this.props.businessNormsInfor.status,
+      })
+    }
+  }
+
+  getOrgProject= async ()=>{
+    const msg = await getOrgProject(this.props.projectInfor.id);
+    if(msg.error.length === 0){
+      this.ref.current.setFieldsValue({
+        createName: msg.data.createName
+      })
+    }else{
+      message.error(msg.error[0].message)
+    }
+  }
+
+  orgProjectSize = async (value)=>{
+    if(value.offset>10 || value.offset<0){
+      message.warning('最低折扣请输入0到10之间的数字');
+      return false;
+    }
+    delete value.createName;
+    message.loading({content:'修改中...',key:'addProjectSize'});
+    value.id = this.props.businessNormsInfor.id;
+    const msg = await orgProjectSize(value);
+    if(msg.error.length === 0){
+      message.success({content:'修改成功',key:'addProjectSize',duration:2.5});
+      this.props.formRef.current.reload();
+      this.props.onCancel();
+    }else{
+      message.error({content:msg.error[0].message,key:'addProjectSize',duration:2.5})
+    }
+  }
+
+  ref = React.createRef();
+
+  render() {
+    return (
+      <ModalForm
+        formRef={this.ref}
+        visible={this.props.visible}
+        preserve={false}
+        title={(this.props.businessNormsInfor ? '编辑项目规格(' : '新增项目规格(')+this.props.projectInfor.bname+')'}
+        modalProps={{
+          width: 520,
+          maskClosable: true,
+          onCancel: (e) => {e.stopPropagation();this.props.onCancel();},
+        }}
+        onFinish={this.props.businessNormsInfor ? this.orgProjectSize:this.addProjectSize}
+      >
+        <ProForm.Group>
+          <ProFormText
+            width='s'
+            rules={[
+              {
+                required:true,
+                message:'请输入规格名称'
+              }
+            ]}
+            placeholder="请输入规格名称"
+            name="pname"
+            label="规格名称"
+          />
+          <ProFormDigit
+            name="price"
+            width='s'
+            label="市场价"
+            placeholder="请输入市场价"
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormDigit
+            name="activityPrice"
+            width='s'
+            label="活动价"
+            placeholder="请输入活动价"
+          />
+          <ProFormDigit
+            name="offset"
+            width='s'
+            label="最低折扣"
+            placeholder="请输入最低折扣"
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormDigit
+            name="memberPrice"
+            width='s'
+            label="会员价"
+            placeholder="请输入会员价"
+          />
+          <ProFormSelect
+            width='s'
+            name="activityFlag"
+            label="活动生效"
+            placeholder="请选择活动生效"
+            options={[
+              {
+                value: '0',
+                label: '有效',
+              },
+              {
+                value: '1',
+                label: '无效',
+              },
+            ]}
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          {this.props.businessNormsInfor && <>
+            <ProFormSelect
+              width='s'
+              name="status"
+              label="项目状态"
+              placeholder="请选择项目状态"
+              options={[
+                {
+                  value: 0,
+                  label: '正常',
+                },
+                {
+                  value: 1,
+                  label: '解散',
+                },
+              ]}
+            />
+            <ProFormText
+              width='s'
+              name="createName"
+              label="创建人"
+              readonly
+            />
+          </>}
+        </ProForm.Group>
+      </ModalForm>
+    );
+  }
+}
+
+export default AddBusinessNorms;

+ 2 - 4
src/pages/admin/business/project/components/addProject.jsx

@@ -10,8 +10,6 @@ class AddProject extends Component{
     super(props);
   }
 
-  formRef = React.createRef();
-
   getAllCname=async ()=>{
     const msg = await getAllCname();
     let theArr = [];
@@ -38,6 +36,7 @@ class AddProject extends Component{
     const msg = await addProject(value);
     if(msg.error.length === 0){
       message.success({content:'保存成功',key:'addProject',duration:2.5});
+      this.props.formRef.current.reload();
       return true;
     }else{
       message.error({content:msg.error[0].message,key:'addProject',duration:2.5})
@@ -52,13 +51,12 @@ class AddProject extends Component{
     })
     return (
       <ModalForm
-        formRef={this.formRef}
         preserve={false}
         title='新增业务项目'
         trigger={
           <Button type="primary">
             <PlusOutlined />
-            新建表单
+            新建业务
           </Button>
         }
         modalProps={{

+ 346 - 0
src/pages/admin/business/project/components/basicInformation.jsx

@@ -0,0 +1,346 @@
+import React,{Component} from 'react';
+import ProForm, {
+  ProFormText,
+  ProFormSelect,
+  ProFormDigit,
+  ProFormTextArea,
+} from '@ant-design/pro-form';
+import {Cascader, Form, message} from "antd";
+import {getAllCname,getOrgProject,updateProject} from '../services/API';
+import {getAddressSelect, getprovince} from "@/utils/tools";
+
+class BasicInformation extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      loading: false,
+      activityFlag: '',
+      createTimeFormattedDate: '',
+      createName: '',
+      address: [],
+    }
+  }
+
+  getAllCname=async ()=>{
+    const msg = await getAllCname();
+    let theArr = [];
+    if(msg.error.length === 0){
+      msg.data.forEach((item) => {
+        theArr.push({
+          label: item.cname,
+          value: item.id,
+        });
+      });
+    }else{
+      message.error(msg.error[0].message)
+    }
+    return theArr;
+  }
+
+  getOrgProject= async ()=>{
+    this.setState({
+      loading: true,
+    })
+    const msg = await getOrgProject(this.props.projectInfor.id);
+    if(msg.error.length === 0){
+      let arr = [];
+      msg.data.province && arr.push(msg.data.country === "1"?0:parseInt(msg.data.province));
+      msg.data.city && arr.push(parseInt(msg.data.city));
+      msg.data.district && arr.push(parseInt(msg.data.district));
+      msg.data.country === "1" ? arr[0]=0 : null;
+      this.setState({
+        createName: msg.data.createName,
+        createTimeFormattedDate: msg.data.createTimeFormattedDate,
+        address: arr,
+      })
+      let addres = [];
+      if(!isNaN(parseInt(msg.data.province))){
+        addres.push(getprovince(parseInt(msg.data.province)));
+      }
+      if(!isNaN(parseInt(msg.data.city))){
+        addres.push(getprovince(parseInt(msg.data.city)));
+      }
+      if(!isNaN(parseInt(msg.data.district))){
+        addres.push(getprovince(parseInt(msg.data.district)));
+      }
+      this.formRef.current.setFieldsValue({
+        bname:msg.data.bname,
+        cid:msg.data.cid,
+        address:arr[0] === 0 ? ['全国'] : addres,
+        price:msg.data.price,
+        offset:msg.data.offset,
+        memberPrice:msg.data.memberPrice,
+        firstPayment:msg.data.firstPayment,
+        activityPrice:msg.data.activityPrice,
+        status:msg.data.status,
+        type:msg.data.type,
+        projectUrl:msg.data.projectUrl,
+        clientSize:msg.data.clientSize,
+        valueEffect:msg.data.valueEffect,
+        introduce:msg.data.introduce,
+        activityFlag: msg.data.activityFlag,
+      })
+    }else{
+      message.error(msg.error[0].message)
+    }
+    this.setState({
+      loading: false,
+    })
+  }
+
+  updateProject= async (value)=>{
+    if(this.state.address){
+      value.address = this.state.address;
+    }
+    value.province = value.address[0] || value.address[0] === 0 ?  value.address[0] : null; // 省
+    value.city = value.address[1] || null;     // 市
+    value.district = value.address[2] || null; // 区
+    value.country = value.address[0] === 0 ? 1 : 0; // 是否全国
+    delete value.address;
+    value.id = this.props.projectInfor.id;
+    message.loading({content:'保存中...',key:'updateProject'});
+    const msg = await updateProject(value);
+    if(msg.error.length === 0){
+      message.success({content:'保存成功',key:'updateProject',duration:2.5});
+      this.props.formRef.current.reload();
+      this.props.onCancel();
+    }else{
+      message.error({content:msg.error[0].message,key:'updateProject',duration:2.5})
+    }
+  }
+
+  componentDidMount() {
+    this.getOrgProject();
+  }
+
+  formRef=React.createRef();
+
+  render() {
+    let addressSelect = getAddressSelect()
+    addressSelect.unshift({
+      label: '全国',
+      value: 0,
+    })
+    return (
+      <ProForm
+        formRef={this.formRef}
+        onFinish={this.updateProject}
+      >
+        <ProForm.Group>
+          <ProFormText
+            name="bname"
+            width='m'
+            label="项目名称"
+            placeholder="请输入项目名称"
+            rules={[
+              {
+                required: true,
+                message: '请输入项目名称!',
+              },
+            ]}
+          />
+          <ProFormSelect
+            name="cid"
+            width='m'
+            label='业务品类'
+            placeholder="请选择业务品类"
+            request={this.getAllCname}
+            rules={[
+              {
+                required: true,
+                message: '请选择业务品类',
+              },
+            ]}
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <Form.Item
+            label="省-市-区:"
+            name='address'
+            rules={[
+              {
+                required:true,
+                message:'请选择省-市-区'
+              }
+            ]}
+          >
+            <Cascader
+              changeOnSelect
+              style={{
+                width: '329px',
+              }}
+              options={addressSelect}
+              onChange={()=>{
+                this.setState({
+                  address: ''
+                })
+              }}
+              placeholder='请选择省-市-区'/>
+          </Form.Item>
+          <ProFormDigit
+            name="price"
+            width='m'
+            label="市场价"
+            placeholder="请输入市场价"
+            rules={[
+              {
+                required: true,
+                message: '请输入市场价',
+              },
+            ]}
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormDigit
+            name="firstPayment"
+            label="首付金额"
+            width='m'
+            placeholder="请输入首付金额"
+            rules={[
+              {
+                required: true,
+                message: '请输入首付金额',
+              },
+            ]}
+          />
+          <ProFormDigit
+            name="activityPrice"
+            width='m'
+            label="活动价"
+            placeholder="请输入活动价"
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormDigit
+            name="offset"
+            label="最低折扣"
+            width='m'
+            placeholder="请输入最低折扣"
+          />
+          <ProFormDigit
+            name="memberPrice"
+            label="会员价"
+            width='m'
+            placeholder="请输入会员价"
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormSelect
+            width="m"
+            name="activityFlag"
+            label="活动生效"
+            placeholder="请选择活动生效"
+            options={[
+              {
+                value: '0',
+                label: '有效',
+              },
+              {
+                value: '1',
+                label: '无效',
+              },
+            ]}
+          />
+          <ProFormSelect
+            width="m"
+            name="status"
+            label="项目状态"
+            placeholder="请选择项目状态"
+            options={[
+              {
+                value: '0',
+                label: '正常',
+              },
+              {
+                value: '1',
+                label: '解散',
+              },
+            ]}
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormSelect
+            width="m"
+            name="type"
+            label="项目分类"
+            placeholder="请选择项目分类"
+            options={[
+              {
+                value: 0,
+                label: '通用',
+              },
+              {
+                value: 1,
+                label: '专利',
+              },
+              {
+                value: 2,
+                label: '软著',
+              },
+              {
+                value: 3,
+                label: '审计',
+              },
+              {
+                value: 4,
+                label: '双软',
+              },
+              {
+                value: 5,
+                label: '高新',
+              },
+              {
+                value: 6,
+                label: '商标',
+              }
+            ]}
+          />
+          <div style={{display:'flex',alientItem:'center',paddingBottom:'25px'}}>
+            <div style={{paddingRight:'35px'}}>
+              <span>创建人:</span>
+              <span style={{paddingLeft:'15px'}}>{this.state.createName}</span>
+            </div>
+            <div style={{paddingRight:'35px'}}>
+              <span>创建时间:</span>
+              <span style={{paddingLeft:'15px'}}>{this.state.createTimeFormattedDate}</span>
+            </div>
+          </div>
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormTextArea
+            name="projectUrl"
+            width='m'
+            label="项目地址"
+            placeholder="请输入项目地址"
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormTextArea
+            name="introduce"
+            width='m'
+            label="业务项目服务内容"
+            placeholder="请输入业务项目服务内容"
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormTextArea
+            name="valueEffect"
+            width='m'
+            label="业务项目价值及作用"
+            placeholder="请输入业务项目价值及作用"
+          />
+        </ProForm.Group>
+        <ProForm.Group>
+          <ProFormTextArea
+            name="clientSize"
+            width='m'
+            label="业务项目客户基本条件"
+            placeholder="请输入业务项目客户基本条件"
+          />
+        </ProForm.Group>
+      </ProForm>
+    )
+  }
+}
+
+export default BasicInformation;

+ 153 - 0
src/pages/admin/business/project/components/businessNorms.jsx

@@ -0,0 +1,153 @@
+import React,{Component} from 'react';
+import AddBusinessNorms from "./addBusinessNorms";
+import DataTable from "@/components/common/DataTable";
+import {getGameState} from '@/utils/tools';
+import { PlusOutlined } from '@ant-design/icons';
+import {Button, message, Popconfirm} from "antd";
+import {deleteProjectSize} from '../services/API';
+
+class BusinessNorms extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      columns:[
+        {
+          title: "业务项目名称",
+          dataIndex: "bname",
+          key: "bname",
+        },
+        {
+          title: "规格名称",
+          dataIndex: "pname",
+          key: "pname",
+        },
+        {
+          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",
+          valueType: 'select',
+          valueEnum: {
+            '0': {
+              text: '正常',
+              status: 'Success'
+            },
+            '1': {
+              text: '停用',
+              status: 'Error'
+            },
+          },
+        },{
+          title: '操作',
+          dataIndex: 'id',
+          key: 'id',
+          render: (text,record,key,action) => { return (
+            <Popconfirm
+              title="是否删除?"
+              onConfirm={(e)=>{e.stopPropagation();this.deleteProjectSize(text,action)}}
+              onCancel={(e)=>{e.stopPropagation();}}
+              okText="确认"
+              cancelText="取消"
+              placement="topLeft">
+              <Button type='primary' danger onClick={(e)=>e.stopPropagation()}>删除</Button>
+            </Popconfirm>
+          ) }
+        }
+      ],
+      visible: false,
+      businessNormsInfor: '',
+    }
+  }
+
+  deleteProjectSize= async (id,action)=>{
+    message.loading({content:'删除中...',key:'deleteProjectSize'});
+    const msg = await deleteProjectSize(id);
+    if(msg.error.length === 0) {
+      message.success({content: '删除成功', key: 'deleteProjectSize', duration: 2.5});
+      action.reload();
+    }else{
+      message.error({content:msg.error[0].message,key:'deleteProjectSize',duration:2.5});
+    }
+  }
+
+  render() {
+    const ref = React.createRef();
+    return (
+      <>
+        <DataTable
+          ref={ref}
+          url='/api/admin/ProjectSize/listProjectSize'
+          params={{
+            pid:this.props.projectInfor.id,
+          }}
+          rowKey='id'
+          scroll={{x:700}}
+          search={false}
+          columns={this.state.columns}
+          onRow={(record) => ({
+            onClick: (e) => {
+              e.stopPropagation();
+              this.setState({
+                visible: true,
+                businessNormsInfor: record
+              })
+            }
+          })}
+          toolBarRender={[
+            <Button type="primary" key='addProject' onClick={()=>{
+              this.setState({
+                visible: true,
+                businessNormsInfor: ''
+              })
+            }}>
+              <PlusOutlined />
+              新增项目规格
+            </Button>
+          ]}
+        />
+        {this.state.visible && <AddBusinessNorms
+          {...this.props}
+          key='addProject'
+          formRef={ref}
+          visible={this.state.visible}
+          businessNormsInfor={this.state.businessNormsInfor}
+          onCancel={()=>{
+            this.setState({
+              visible:false,
+              businessNormsInfor: ''
+            })
+          }}
+        />}
+      </>
+    )
+  }
+}
+
+export default BusinessNorms;

+ 47 - 0
src/pages/admin/business/project/components/upadateProject.jsx

@@ -0,0 +1,47 @@
+import React,{Component} from 'react';
+import {Tabs,Modal} from "antd";
+import BasicInformation from './basicInformation';
+import BusinessNorms from './businessNorms';
+
+const { TabPane } = Tabs;
+
+class UpadateProject extends Component{
+  constructor(props) {
+    super(props);
+    this.callback = this.callback.bind(this);
+  }
+
+  formRef=React.createRef();
+
+  updateProject=()=>{
+
+  }
+
+  callback=(v)=>{
+
+  }
+
+  render() {
+    return (
+      <Modal
+        visible={this.props.visible}
+        title="业务项目"
+        width={850}
+        onOk={(e)=>{e.stopPropagation();this.props.onCancel();}}
+        onCancel={(e)=>{e.stopPropagation();this.props.onCancel();}}
+        footer={null}
+      >
+        <Tabs defaultActiveKey="1" onChange={this.callback}>
+          <TabPane tab="业务项目基本资料" key="1">
+            <BasicInformation {...this.props}/>
+          </TabPane>
+          <TabPane tab="业务项目规格" key="2">
+            <BusinessNorms {...this.props}/>
+          </TabPane>
+        </Tabs>
+      </Modal>
+    )
+  }
+}
+
+export default UpadateProject;

+ 169 - 22
src/pages/admin/business/project/index.jsx

@@ -1,8 +1,11 @@
 import React,{Component} from 'react';
-import {Button} from "antd";
+import {Button, Cascader, message, Popconfirm} from "antd";
 import DataTable from "@/components/common/DataTable";
-import {getCategoryState,getGameState,splitUrl,getprovince} from '@/utils/tools';
+import {getGameState, getprovince, getAddressSelect} from '@/utils/tools';
 import AddProject from './components/addProject';
+import {ProFormSelect} from "@ant-design/pro-form";
+import {getAllCname,deleteProject} from './services/API';
+import UpadateProject from './components/upadateProject';
 
 class Project extends Component{
   constructor(props) {
@@ -13,11 +16,20 @@ class Project extends Component{
           title: "项目名称",
           dataIndex: "bname",
           key: "bname",
+          searchBool: true,
         },
         {
           title: "业务品类",
           dataIndex: "cname",
-          key: "cname",
+          key: "cid",
+          searchBool: true,
+          renderFormItem:()=>{
+            return (
+              <ProFormSelect
+                label=''
+                request={this.getAllCname}/>
+            )
+          }
         },
         {
           title: "业务地区",
@@ -28,18 +40,14 @@ class Project extends Component{
             if (text === '1') {
               isCountry = "全国";
             } else {
-              if (record.city == null || record.city == "") {
+              if(!isNaN(parseInt(record.province))){
                 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));
+              }
+              if(!isNaN(parseInt(record.city))){
+                isCountry += '-'+getprovince(parseInt(record.city));
+              }
+              if(!isNaN(parseInt(record.district))){
+                isCountry += '-'+getprovince(parseInt(record.district));
               }
             }
             return (
@@ -71,22 +79,66 @@ class Project extends Component{
           title: "活动生效标识",
           dataIndex: "activityFlag",
           key: "activityFlag",
-          render: (text) => {
-            return getGameState(text);
+          searchBool: true,
+          valueType: 'select',
+          valueEnum: {
+            '0': {
+              text: '有效',
+            },
+            '1': {
+              text: '无效',
+            },
+          },
+          render: (text,record) => {
+            return getGameState(record.activityFlag);
           },
         },
         {
           title: "业务状态",
           dataIndex: "status",
           key: "status",
-          render: (text) => {
-            return getCategoryState(text);
+          searchBool: true,
+          valueType: 'select',
+          valueEnum: {
+            '0': {
+              text: '正常',
+              status: 'Success'
+            },
+            '1': {
+              text: '停用',
+              status: 'Error'
+            },
           },
         },
         {
           title: "项目分类",
           dataIndex: "type",
           key: "type",
+          searchBool: true,
+          valueType: 'select',
+          valueEnum: {
+            0: {
+              text: '通用',
+            },
+            1: {
+              text: '专利',
+            },
+            2: {
+              text: '软著',
+            },
+            3: {
+              text: '审计',
+            },
+            4: {
+              text: '双软',
+            },
+            5: {
+              text: '高新',
+            },
+            6: {
+              text: '商标',
+            },
+          },
           render: (text, record) => {
             if (record.type === 0) {
               return "通用";
@@ -105,8 +157,92 @@ class Project extends Component{
             }
           },
         },
-      ]
+        {
+          title: '省-市-区',
+          key: 'address',
+          hideInTable: true,
+          dataIndex: 'address',
+          searchBool: true,
+          search: {
+            transform: (v)=>{
+              return {
+                province: v[0] || '',
+                city: v[1] || '',
+                district: v[2] || '',
+              }
+            }
+          },
+          renderFormItem: (item, props) => {
+            let addressSelect = getAddressSelect()
+            addressSelect.unshift({
+              label: '全国',
+              value: 0,
+            })
+            return (
+              <Cascader
+                changeOnSelect
+                options={addressSelect}
+                placeholder='请选择省-市-区'/>
+            );
+          },
+        },{
+          title: '操作',
+          dataIndex: 'id',
+          key: 'id',
+          render: (text,record,key,action) => { return (
+            <Popconfirm
+              title="是否删除?"
+              onConfirm={(e)=>{e.stopPropagation();this.deleteProject(text,action)}}
+              onCancel={(e)=>{e.stopPropagation();}}
+              okText="确认"
+              cancelText="取消"
+              placement="topLeft">
+              <Button type='primary' danger onClick={(e)=>e.stopPropagation()}>删除</Button>
+            </Popconfirm>
+          ) }
+        }
+      ],
+      visible: false,
+      projectInfor: {},
+    }
+  }
+
+  deleteById=async (id,action)=>{
+    message.loading({content:'删除中...',key:'deleteById'})
+    const msg = await deleteById(id);
+    if(msg.error.length === 0){
+      message.success({content:'删除成功',key:'deleteById',duration:2.5});
+      action.reload();
+    }else{
+      message.error({content:msg.error[0].message,key:'deleteById',duration:2.5});
+    }
+  }
+
+  deleteProject= async (id,action)=>{
+    message.loading({content:'删除中...',key:'deleteProject'});
+    const msg = await deleteProject(id);
+    if(msg.error.length === 0){
+      message.success({content:'删除成功',key:'deleteProject',duration:2.5});
+      action.reload();
+    }else{
+      message.error({content:msg.error[0].message,key:'deleteProject',duration:2.5})
+    }
+  }
+
+  getAllCname=async ()=>{
+    const msg = await getAllCname();
+    let theArr = [];
+    if(msg.error.length === 0){
+      msg.data.forEach((item) => {
+        theArr.push({
+          label: item.cname,
+          value: item.id,
+        });
+      });
+    }else{
+      message.error(msg.error[0].message)
     }
+    return theArr;
   }
 
   render() {
@@ -130,15 +266,26 @@ class Project extends Component{
             onClick: (e) => {
               e.stopPropagation();
               this.setState({
-                typeVisible: true,
-                typeInfor: record
+                visible: true,
+                projectInfor: record,
               })
             }
           })}
           toolBarRender={[
-            <AddProject  key='addProject'/>
+            <AddProject formRef={ref}  key='addProject'/>
           ]}
         />
+        {this.state.visible && <UpadateProject
+          formRef={ref}
+          visible={this.state.visible}
+          projectInfor={this.state.projectInfor}
+          onCancel={()=>{
+            this.setState({
+              visible: false,
+              projectInfor: {}
+            })
+          }}
+        />}
       </>
     )
   }

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

@@ -17,3 +17,57 @@ export async function addProject(data: object){
     data,
   })
 }
+
+// 项目详情
+export async function getOrgProject(id: string){
+  return request('/api/admin/ProjectSize/orgProject',{
+    method:'get',
+    params:{
+      id
+    },
+  })
+}
+
+// 更新项目详情
+export async function updateProject(data: object){
+  return request('/api/admin/ProjectSize/updateProject',{
+    method:'post',
+    data,
+  })
+}
+
+// 删除业务
+export async function deleteProject(id: string){
+  return request('/api/admin/ProjectSize/deleteProject',{
+    method:'get',
+    params:{
+      id
+    },
+  })
+}
+
+// 增加规格
+export async function addProjectSize(data: object){
+  return request('/api/admin/ProjectSize/addProjectSize',{
+    method:'post',
+    data,
+  })
+}
+
+// 更新规格
+export async function orgProjectSize(data: object){
+  return request('/api/admin/ProjectSize/orgProjectSize',{
+    method:'post',
+    data,
+  })
+}
+
+// 删除规格
+export async function deleteProjectSize(id: string){
+  return request('/api/admin/ProjectSize/deleteProjectSize',{
+    method:'get',
+    params:{
+      id
+    },
+  })
+}

+ 15 - 4
src/pages/admin/organization/mechanism/components/addOrganization/index.jsx

@@ -4,12 +4,10 @@ import { LoadingOutlined,ExclamationCircleOutlined } from '@ant-design/icons';
 import ProForm, {ModalForm, ProFormSelect, ProFormText, ProFormTextArea} from "@ant-design/pro-form";
 import {getSelectSuperId} from "@/services/user";
 import {addOrganization,getSelectAllById,getSelectName,updateOrganization} from '../../services/API';
-import {patternOrganization,conditionOrganization} from '@/utils/dataDic';
-import {citySelect} from '@/utils/tools';
+import {conditionOrganization, addressList} from '@/utils/dataDic';
 
 const antIcon = <LoadingOutlined style={{ fontSize: 24 }} spin />;
 const confirm = Modal.confirm;
-const { Option } = AutoComplete;
 
 class AddOrganization extends Component{
   constructor(props) {
@@ -78,6 +76,19 @@ class AddOrganization extends Component{
     return theArr;
   }
 
+  citySelect = async () => {
+    let option = [];
+    await addressList.map((item) => {
+      if(item.id){
+        option.push({
+          value: item.id,
+          label: item.name
+        });
+      }
+    });
+    return option;
+  }
+
   setUpdateOrganization= async (value)=>{
     message.loading({content:'保存中...',key:'updateOrganization'});
     value.id = this.props.organizationInfor.id;
@@ -301,7 +312,7 @@ class AddOrganization extends Component{
                   label='省份'
                   name="province"
                   placeholder="请选择省份"
-                  request={citySelect}/>
+                  request={this.citySelect}/>
               </ProForm.Group>
               <ProForm.Group>
                 <ProFormText

+ 2 - 2
src/pages/admin/organization/mechanism/services/API.ts

@@ -21,8 +21,8 @@ export async function deleteById(id: string){
 // 获取组织详情
 export async function getSelectAllById(id: string){
   return request('/api/admin/organization/selectAllById',{
-    method:'post',
-    data:{
+    method:'get',
+    params:{
       id
     }
   })

+ 1 - 3
src/pages/admin/user/jurisdiction/index.jsx

@@ -65,8 +65,6 @@ class Jurisdiction extends Component{
       detailsVisible: true,
       detailsInfor:record
     })
-
-    console.log(record)
   }
 
   delectRow=async (id,action)=>{
@@ -88,8 +86,8 @@ class Jurisdiction extends Component{
 
   onNewPermissionCancel=()=>{
     this.setState({
-      newPermissionVisible: false,
       superData:'',
+      newPermissionVisible: false,
     })
   }
 

+ 17 - 13
src/pages/user/login/index.tsx

@@ -81,20 +81,24 @@ const Login: React.FC<{}> = () => {
 
   const handleSubmit = async (values: LoginParamsType) => {
     setSubmitting(true);
-    message.loading({content:'登录中...',key:'handleSubmit'})
-    const msg = await fakeAccountLogin({ ...values, type });
-    if(msg.error.length === 0){
-      message.success({content:'登录成功',key:'handleSubmit',duration:2.5});
-      await fetchUserInfo();
-      goto();
-    }else{
-      message.error({content:msg.error[0].message,key:'handleSubmit',duration:2.5});
-      setUserLoginState({
-        status: 'error',
-        type: msg.error[0].message,
-      });
+    try{
+      message.loading({content:'登录中...',key:'handleSubmit'})
+      const msg = await fakeAccountLogin({ ...values, type });
+      if(msg.error.length === 0){
+        message.success({content:'登录成功',key:'handleSubmit',duration:2.5});
+        await fetchUserInfo();
+        goto();
+      }else{
+        message.error({content:msg.error[0].message,key:'handleSubmit',duration:2.5});
+        setUserLoginState({
+          status: 'error',
+          type: msg.error[0].message,
+        });
+      }
+      setSubmitting(false);
+    }catch (_){
+      setSubmitting(false);
     }
-    setSubmitting(false);
   };
 
   const { status, type: loginType } = userLoginState;

+ 4 - 4
src/utils/tools.js

@@ -225,7 +225,7 @@ const getAddressSelect = (arr = addressList) => {
       getAddressSelect(v.children);
     }
   })
-  return arr
+  return arr.filter(v=>v.id)
 }
 
 // 省份转换
@@ -241,7 +241,7 @@ const getprovince = (e) => {
   }
   if (nub > 34 && nub < 380) {
     addressList.map((item) => {
-      item.cityList.map((city) => {
+      item.cityList && item.cityList.map((city) => {
         if (city.id === nub) {
           theType = city.name;
         }
@@ -250,8 +250,8 @@ const getprovince = (e) => {
   }
   if (nub >= 380) {
     addressList.map((item) => {
-      item.cityList.map((city) => {
-        city.areaList.map((areas) => {
+      item.cityList && item.cityList.map((city) => {
+        city.areaList && city.areaList.map((areas) => {
           if (areas.id === nub) {
             theType = areas.name;
           }