123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- /*
- * @Author: code4eat awesomedema@gmail.com
- * @Date: 2023-03-03 11:30:33
- * @LastEditors: code4eat awesomedema@gmail.com
- * @LastEditTime: 2023-04-14 10:23:41
- * @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 BMSPagecontainer from '@/components/BMSPageContainer';
- import { BMSTable } from '@/components/BMSTable';
- import { createFromIconfontCN } from '@ant-design/icons';
- import { ActionType, ProFormText, ProFormTextArea } from '@ant-design/pro-components';
- import { ModalForm, ProFormDependency, ProFormDigit, ProFormSelect } 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 { getClolumnTableData, getReportColumn } from '../reportSetting/service';
- import { addData, delData, editData, getSqlListTableData, getSqlTypeList } from './service';
- import './style.less';
- const IconFont = createFromIconfontCN({
- scriptUrl: '//at.alicdn.com/t/c/font_1927152_4nm5kxbv4m3.js',
- });
- export default function DiySqlMana() {
- const [tableDataFilterParams, set_tableDataFilterParams] = useState<any | undefined>();
- const [tableDataSearchKeywords, set_tableDataSearchKeywords] = useState<string>('');
- const tableRef = useRef<ActionType>();
- const columns: ProColumns[] = [
- {
- title: 'SQL代码',
- dataIndex: 'sqlCode',
- },
- {
- title: 'SQL语句',
- width:500,
- ellipsis:true,
- dataIndex: 'sql',
- },
- {
- title: 'SQL说明',
- dataIndex: 'sqlDefinition',
- // render:(_:any)=>_ == 1?'指标':'自定义SQL'
- },
- {
- title: 'SQL类型',
- dataIndex: 'sqlTypeName',
- },
- {
- title: '序号',
- dataIndex: 'sort',
- },
- {
- 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) => {
- const resp = await getSqlListTableData(params);
- if (resp) {
- 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 resp = await addData({
- sqlCode: formVal.sqlCode,
- sql: formVal.sql,
- sqlDefinition: formVal.sqlDefinition,
- sqlType: formVal.sqlType.value,
- sort: formVal.sort
- });
- if (resp) {
- tableRef.current?.reload();
- message.success('操作成功!');
- }
- }
- if (type == 'EDIT') {
- const resp = await editData({
- id: formVal.id,
- sql: formVal.sql,
- sqlDefinition: formVal.sqlDefinition,
- sqlType: formVal.sqlType,
- sort: formVal.sort
- });
- if (resp) {
- tableRef.current?.reload();
- message.success('操作成功!');
- }
- }
- return true;
- }
- const formRef = useRef();
- const UpDataActBtn = ({ record, type }: { record: any, type: 'EDIT' | 'ADD' }) => {
- return (
- <ModalForm
- title={`${type == 'EDIT' ? '编辑' : '新增'}报表列`}
- width={352}
- formRef={formRef}
- initialValues={type == 'EDIT' ? { ...record } : {}}
- trigger={
- type == 'EDIT' ? <a key="edit" >编辑</a> : <span className='add'>新增</span>
- }
- onFinish={(val) => {
- return updateTable(type == 'EDIT' ? { ...record, ...val } : { ...val }, type);
- }}
- modalProps={{destroyOnClose:true}}
- colProps={{ span: 24 }}
- grid
- >
- {
- type != 'EDIT' && (
- <ProFormText
- name="sqlCode"
- label="SQL代码:"
- placeholder="请输入"
- rules={[{ required: true, message: '列名称不能为空!' }]}
- />
- )
- }
- <ProFormTextArea placeholder="请输入" name={'sql'} label='SQL语句:' rules={[{ required: true, message: 'SQL不能为空!' }]} />
- <ProFormTextArea placeholder="请输入" name={'sqlDefinition'} label='SQL说明:' rules={[{ required: true, message: '说明不能为空!' }]} />
- <ProFormSelect
- name="sqlType"
- label="SQL类型:"
- placeholder="请选择"
- request={async () => {
- const resp = await getSqlTypeList();
- if (resp) {
- return resp.list.map((a: any) => ({ label: a.name, value: a.code }))
- }
- }}
- fieldProps={{
- labelInValue: true
- }}
- rules={[{ required: true, message: '类型不能为空!' }]}
- />
- <ProFormDigit
- name="sort"
- label="顺序号:"
- placeholder="请输入"
- rules={[{ required: true, message: '顺序号不能为空!' }]}
- />
- </ModalForm>
- )
- }
- return (
- <BMSPagecontainer className='DiySqlMana' title={false}>
- <div className='toolBar'>
- <div className='filter'>
- <div className='filterItem'>
- <span className='label'>检索:</span>
- <ProFormSelect
- noStyle
- allowClear
- placeholder="请选择类型"
- style={{ width: 160, marginRight: 16 }}
- request={async () => {
- const resp = await getSqlTypeList();
- if (resp) {
- return resp.list.map((a: any) => ({ label: a.name, value: a.code }))
- }
- }}
- fieldProps={{
- onChange(value, option) {
- set_tableDataFilterParams({ ...tableDataFilterParams, sqlType: value })
- },
- }}
- />
- </div>
- </div>
- <div className='btnGroup'>
- <UpDataActBtn record type='ADD' />
- </div>
- </div>
- <div style={{ marginTop: 16 }}>
- <BMSTable columns={columns as ProColumns[]} actionRef={tableRef} rowKey='id' params={tableDataFilterParams} request={(params) => getTableData(params)} />
- </div>
- </BMSPagecontainer>
- )
- }
|