import * as api from './api'; import { dict, UserPageQuery, AddReq, DelReq, EditReq, compute, CreateCrudOptionsProps, CreateCrudOptionsRet } from '@fast-crud/fast-crud'; import { request } from '/@/utils/service'; import { dictionary } from '/@/utils/dictionary'; import { successMessage } from '/@/utils/message'; export const createCrudOptions = function ({ crudExpose }: CreateCrudOptionsProps): CreateCrudOptionsRet { const pageRequest = async (query: UserPageQuery) => { return await api.GetList(query); }; const editRequest = async ({ form, row }: EditReq) => { form.id = row.id; return await api.UpdateObj(form); }; const delRequest = async ({ row }: DelReq) => { return await api.DelObj(row.id); }; const addRequest = async ({ form }: AddReq) => { return await api.AddObj(form); }; return { crudOptions: { request: { pageRequest, addRequest, editRequest, delRequest, }, rowHandle: { //固定右侧 fixed: 'right', width: 200, buttons: { view: { show: false, }, edit: { iconRight: 'Edit', type: 'text', }, remove: { iconRight: 'Delete', type: 'text', }, }, }, form: { col: { span: 24 }, labelWidth: '110px', wrapper: { is: 'el-dialog', width: '600px', }, }, columns: { _index: { title: '序号', form: { show: false }, column: { //type: 'index', align: 'center', width: '70px', columnSetDisabled: true, //禁止在列设置中选择 //@ts-ignore formatter: (context) => { //计算序号,你可以自定义计算规则,此处为翻页累加 let index = context.index ?? 1; let pagination: any = crudExpose!.crudBinding.value.pagination; return ((pagination.currentPage ?? 1) - 1) * pagination.pageSize + index + 1; }, }, }, search: { title: '关键词', column: { show: false, }, search: { show: true, component: { props: { clearable: true, }, placeholder: '请输入关键词', }, }, form: { show: false, component: { props: { clearable: true, }, }, }, }, method: { title: '请求方式', sortable: 'custom', search: { disabled: false, }, type: 'dict-select', dict: dict({ data: [ { label: 'GET', value: 0, }, { label: 'POST', value: 1, }, { label: 'PUT', value: 2, }, { label: 'DELETE', value: 3, }, { label: 'PATCH', value: 4, }, ], }), form: { rules: [ // 表单校验规则 { required: true, message: '必填项', }, ], component: { span: 12, }, itemProps: { class: { yxtInput: true }, }, }, }, url: { title: '接口地址', sortable: 'custom', search: { disabled: true, }, type: 'dict-select', dict: dict({ async getData(dict: any) { return request('/swagger.json').then((ret: any) => { const res = Object.keys(ret.paths); const data = []; for (const item of res) { const obj = { label: '', value: '' }; obj.label = item; obj.value = item; data.push(obj); } return data; }); }, }), form: { rules: [ // 表单校验规则 { required: true, message: '必填项', }, ], component: { span: 24, props: { elProps: { allowCreate: true, filterable: true, clearable: true, }, }, }, itemProps: { class: { yxtInput: true }, }, helper: { position: 'label', tooltip: { placement: 'top-start', }, text: '请正确填写,以免请求时被拦截。匹配单例使用正则,例如:/api/xx/.*?/', }, }, }, enable_datasource: { title: '数据权限认证', search: { disabled: false, }, type: 'dict-radio', column: { component: { name: 'fs-dict-switch', activeText: '', inactiveText: '', style: '--el-switch-on-color: #409eff; --el-switch-off-color: #dcdfe6', onChange: compute((context) => { return () => { api.UpdateObj(context.row).then((res: APIResponseData) => { successMessage(res.msg as string); }); }; }), }, }, dict: dict({ data: dictionary('button_status_bool'), }), }, }, }, }; };