| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406 |
- /*
- * @Author: code4eat awesomedema@gmail.com
- * @Date: 2023-03-03 11:30:33
- * @LastEditors: code4eat awesomedema@gmail.com
- * @LastEditTime: 2025-07-09 17:35:25
- * @FilePath: /KC-MiddlePlatform/src/pages/platform/setting/pubDicTypeMana/index.tsx
- * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- */
- import { createFromIconfontCN } from '@ant-design/icons';
- import {
- ActionType,
- ProFormInstance,
- ProFormSelect,
- } from '@ant-design/pro-components';
- import {
- ModalForm,
- ProFormDigit,
- ProFormText,
- ProFormTextArea,
- } from '@ant-design/pro-form';
- import { ProColumns } from '@ant-design/pro-table';
- import { Input, message, Popconfirm } from 'antd';
- import { useEffect, useRef, useState } from 'react';
- import {
- addData,
- delData,
- editData,
- getColorFromDic,
- getData,
- } from './service';
- import './style.less';
- import KCIMPagecontainer from '@/components/KCIMPageContainer';
- import { KCIMTable } from '@/components/KCIMTable';
- const IconFont = createFromIconfontCN({
- scriptUrl: '',
- });
- type TableDataResponse = {
- data: any[];
- success: boolean;
- total: number;
- pageSize: number;
- totalPage: number;
- };
- const resultTypeList = [
- {
- label: '无需操作',
- value: 1,
- },
- {
- label: '需改善回复',
- value: 2,
- },
- {
- label: '需使用改善工具',
- value: 3,
- },
- ];
- export default function DicClassfication() {
- const [tableDataFilterParams, set_tableDataFilterParams] = useState<
- any | undefined
- >();
- const [tableDataSearchKeywords, set_tableDataSearchKeywords] =
- useState<string>('');
- const tableRef = useRef<ActionType>();
- const modalFormRef = useRef<ProFormInstance>();
- const [pagination, set_pagination] = useState({
- total: 0,
- pageSize: 10,
- current: 1,
- });
- const columns: ProColumns[] = [
- {
- title: 'ID',
- dataIndex: 'id',
- },
- {
- title: '定性选项',
- dataIndex: 'name',
- },
- {
- title: '选项编码',
- dataIndex: 'code',
- },
- {
- title: '类型',
- dataIndex: 'resultTypeName',
- },
- {
- title: '是否默认',
- dataIndex: 'defaultFlag',
- renderText(num, record, index, action) {
- return num == 1 ? '是' : '否';
- },
- },
- {
- title: '排序序号',
- dataIndex: 'sort',
- },
- {
- title: '默认颜色',
- dataIndex: 'color',
- renderText(text, record, index, action) {
- return (
- <span
- style={{
- display: 'inline-block',
- backgroundColor: `#${text}`,
- padding: 2,
- borderRadius: 4,
- color: '#fff',
- }}
- >
- {text}
- </span>
- );
- },
- },
- {
- title: '操作',
- key: 'option',
- width: 120,
- valueType: 'option',
- render: (_: any, record: any) => {
- return [
- <UpDataActBtn key={'act'} record={record} type="EDIT" />,
- <Popconfirm
- title="是否确认作废?"
- key="del"
- onConfirm={() => delTableData(record)}
- >
- <a>作废</a>
- </Popconfirm>,
- ];
- },
- },
- ];
- const getTableData = async (
- params: any,
- ): Promise<TableDataResponse | any[]> => {
- const resp = await getData({ ...params });
- if (resp) {
- if (resp.totalCount == 0 && resp.currPage != 1) {
- return getTableData({ ...params, current: resp.currPage - 1 });
- } else {
- return {
- data: resp.list,
- success: true,
- total: resp.totalCount,
- pageSize: resp.pageSize,
- totalPage: resp.totalPage,
- };
- }
- }
- return [];
- };
- const delTableData = async (record: any) => {
- const resp = await delData(record.id);
- if (resp) {
- message.success('操作成功!');
- tableRef.current?.reload();
- // message.success('操作成功!');
- }
- };
- const updateTable = async (formVal: any, type: 'EDIT' | 'ADD') => {
- if (type == 'ADD') {
- const currentHosp = localStorage.getItem('currentSelectedSubHop');
- const currentUser = localStorage.getItem('userData');
- if (currentHosp && currentUser) {
- const { id } = JSON.parse(currentHosp);
- const { userId } = JSON.parse(currentUser);
- const result = {
- hiId: id,
- code: formVal.code,
- name: formVal.name,
- resultType: formVal.resultType,
- defaultFlag: formVal.defaultFlag,
- sort: formVal.sort,
- delFlag: '',
- createUser: userId,
- createTime: new Date().getTime(),
- color: formVal.color,
- };
- const resp = await addData({ ...formVal });
- if (resp) {
- tableRef.current?.reload();
- message.success('操作成功!');
- }
- }
- }
- if (type == 'EDIT') {
- const resp = await editData({ ...formVal });
- if (resp) {
- tableRef.current?.reload();
- message.success('操作成功!');
- }
- }
- return true;
- };
- const UpDataActBtn = ({
- record,
- type,
- }: {
- record: any;
- type: 'EDIT' | 'ADD';
- }) => {
- return (
- <ModalForm
- title={`${type == 'EDIT' ? '编辑' : '新增'}定性选项`}
- width={352}
- initialValues={type == 'EDIT' ? { ...record } : {}}
- trigger={
- type == 'EDIT' ? (
- <a key="edit">编辑</a>
- ) : (
- <span className="add">新增</span>
- )
- }
- formRef={modalFormRef}
- onFinish={(val) => {
- return updateTable(
- type == 'EDIT' ? { ...record, ...val } : { ...val },
- type,
- );
- }}
- modalProps={{ destroyOnClose: true }}
- colProps={{ span: 24 }}
- grid
- >
- <ProFormText
- name="name"
- label="定性选项:"
- placeholder="请输入"
- rules={[{ required: true, message: '定性不能为空!' }]}
- />
- <ProFormText
- name="code"
- label="选项编码:"
- placeholder="请输入"
- rules={[{ required: true, message: '编码不能为空!' }]}
- />
- <ProFormSelect
- label="类型:"
- name="resultType"
- request={async () => {
- return resultTypeList;
- }}
- rules={[{ required: true, message: '类型不能为空!' }]}
- />
- <ProFormSelect
- label="是否默认:"
- name="defaultFlag"
- request={async () => {
- return [
- { label: '是', value: 1 },
- { label: '否', value: 0 },
- ];
- }}
- />
- <ProFormDigit name="sort" label="排序序号:" placeholder="请输入" />
- <ProFormSelect
- label="默认颜色:"
- name="color"
- request={async () => {
- const currentSys = localStorage.getItem('currentSelectedTab');
- if (currentSys) {
- const { systemId } = JSON.parse(currentSys);
- const resp = await getColorFromDic({
- dictType: 'COLOR_TYPE',
- systemId: systemId,
- });
-
- if (resp) {
- const list = resp.dataVoList.map((a: any) => {
- if (type == 'ADD' && a.defaultValue) {
- modalFormRef.current?.setFieldValue('color', a.value);
- }
- return {
- label: (
- <span
- style={{
- background: `#${a.value}`,
- color: '#fff',
- width: 20,
- height: 15,
- display: 'inline-block',
- position: 'relative',
- top: 1,
- }}
- >
- {}
- </span>
- ),
- value: a.value,
- };
- });
- return list;
- }
- }
- return [];
- }}
- />
- </ModalForm>
- );
- };
- const tableDataSearchHandle = (paramName: string) => {
- set_tableDataFilterParams({
- ...tableDataFilterParams,
- [`${paramName}`]: tableDataSearchKeywords,
- });
- };
- useEffect(() => {}, []);
- return (
- <KCIMPagecontainer className="QualitativeOptMana" title={false}>
- <div className="toolBar">
- <div className="filter">
- <div className="filterItem" style={{ marginRight: 16, width: 205 }}>
- <span className="label" style={{ whiteSpace: 'nowrap' }}>
- 检索:
- </span>
- <Input
- placeholder={'请输入定性名称'}
- allowClear
- suffix={
- <IconFont
- type="iconsousuo"
- style={{ color: '#99A6BF' }}
- onClick={() => tableDataSearchHandle('filter')}
- />
- }
- onChange={(e) => {
- set_tableDataSearchKeywords(e.target.value);
- if (e.target.value.length == 0) {
- set_tableDataFilterParams({
- ...tableDataFilterParams,
- filter: '',
- });
- }
- }}
- onPressEnter={(e) => {
- set_tableDataFilterParams({
- ...tableDataFilterParams,
- filter: (e.target as HTMLInputElement).value,
- });
- }}
- />
- </div>
- <div className="filterItem">
- <span className="label" style={{ whiteSpace: 'nowrap' }}>
- {' '}
- 类型:
- </span>
- <ProFormSelect
- noStyle
- allowClear
- placeholder="请选择"
- style={{ width: 160, marginRight: 16 }}
- request={async () => {
- return resultTypeList;
- }}
- fieldProps={{
- onChange(value, option) {
- set_tableDataFilterParams({
- ...tableDataFilterParams,
- resultType: value,
- });
- },
- }}
- />
- </div>
- </div>
- <div className="btnGroup">
- <UpDataActBtn record type="ADD" />
- </div>
- </div>
- <div style={{ marginTop: 16 }}>
- <KCIMTable
- columns={columns as ProColumns[]}
- actionRef={tableRef}
- rowKey="id"
- params={tableDataFilterParams}
- request={(params) => getTableData(params)}
- />
- </div>
- </KCIMPagecontainer>
- );
- }
|