123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- import { AddReq, CreateCrudOptionsProps, CreateCrudOptionsRet, dict, UserPageQuery } from '@fast-crud/fast-crud';
- import * as api from './api';
- import { auth } from '/@/utils/authFunction';
- export const createCrudOptions = function ({ crudExpose }: CreateCrudOptionsProps): CreateCrudOptionsRet {
- const pageRequest = async (query: UserPageQuery) => {
- return await api.GetList(query);
-
- };
- const getDetail = async ({ row }: InfoReq) => {
- return await api.GetObj(row.id);
- };
- 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,
- editRequest,
- delRequest,
- addRequest,
- getDetail,
- },
- form:{
- wrapper: {
- buttons: {
- ok:{
- text:'提交'
- }
- }
- }
- },
- actionbar: {
- buttons: {
- add: {
- show: auth('area:Create'),
- },
- },
- },
- pagination: {
- show: false,
- },
- columns: {
- _index: {
- title: '序号',
- form: { show: false },
- column: {
- type: 'index',
- align: 'center',
- width: '70px',
- columnSetDisabled: true, //禁止在列设置中选择
- },
- },
- user_code:{
- title:'学号',
- type:'input',
- column: {
- minWidth: 120,
- },
- form: {
- component: { placeholder: '请填写学号' },
- rules: [{ required: true, message: '请填写学号' }],
- },
- },
- username:{
- title:'昵称',
- type:'input',
- column: {
- show: false,
- minWidth: 120,
- },
- form: {
- component: { placeholder: '请填写昵称' },
- rules: [{ required: true, message: '请填写昵称' }],
- },
- viewForm:{
- component: { placeholder: '' },
- }
- },
- name: {
- title: '名称',
- search: {
- show: true,
- },
- treeNode: true,
- type: 'input',
- column: {
- minWidth: 120,
- },
- form: {
- rules: [
- // 表单校验规则
- { required: true, message: '名称必填项' },
- ],
- component: {
- placeholder: '请输入名称',
- },
- },
- },
- password:{
- title: '密码',
- type: 'input',
- column: {
- minWidth: 120,
- show: false,
- },
- form: {
- component: { placeholder: '请填写密码' },
- rules: [{ required: true, message: '请填写密码' }],
- },
- editForm:{
- show:false,
- },
- viewForm:{
- show:false,
- }
- },
- email:{
- title: '邮箱',
- type: 'input',
- column: {
- show: false,
- minWidth: 120,
- },
- form: {
- component: { placeholder: '请填写邮箱' },
- rules: [{ required: false, message: '请填写邮箱' }],
- },
- viewForm:{
- component: { placeholder: '' },
- }
- },
- mobile:{
- title: '手机号',
- type: 'input',
- column: {
- show: false,
- minWidth: 120,
- },
- form: {
- component: { placeholder: '请填写手机号' },
- rules: [{ required: true, message: '请填写手机号' }],
- },
- viewForm:{
- component: { placeholder: '' },
- }
- },
- gender:{
- title: '性别',
- type: 'dict-select',
- column: {
- show: false,
- minWidth: 120,
- },
- dict: dict({
- data: [
- { label: '男', value: 1 },
- { label: '女', value: 2 },
- ],
- }),
- form: {
- component: { placeholder: '请选择性别' },
- rules: [{ required: true, message: '请选择性别' }],
- },
- viewForm:{
- component: { placeholder: '' },
- }
- },
- user_type:{
- title: '用户类型',
- type: 'dict-select',
- column: {
- minWidth: 120,
- },
- dict: dict({
- data: [
- { label: '学生', value: 0 },
- { label: '教师', value: 1 },
- { label: '校外团体', value: 2 },
- { label: '学院领导', value: 3 },
- ],
- }),
- form: {
- value:1,
- component: { placeholder: '请填写租户' },
- rules: [{ required: false, message: '请填写租户' }],
- },
- },
- organization:{
- title: '学院',
- type: 'input',
- column: {
- show: true,
- minWidth: 120,
- },
- form: {
- component: { placeholder: '请填写学院' },
- rules: [{ required: false, message: '请填写学院' }],
- },
- viewForm:{
- component: { placeholder: '' },
- }
- },
- sub_organization:{
- title: '专业',
- type: 'input',
- column: {
- show: true,
- minWidth: 120,
- },
- form: {
- component: { placeholder: '请填写专业' },
- rules: [{ required: false, message: '请填写专业' }],
- },
- viewForm:{
- component: { placeholder: '' },
- }
- },
- grade_or_level:{
- title: '年级',
- type: 'input',
- column: {
- show: false,
- minWidth: 120,
- },
- form: {
- component: { placeholder: '请填写年级' },
- rules: [{ required: false, message: '请填写年级' }],
- },
- viewForm:{
- component: { placeholder: '' },
- }
- },
- class_or_group:{
- title: '班级',
- type: 'input',
- column: {
- show: false,
- minWidth: 120,
- },
- form: {
- component: { placeholder: '请填写班级' },
- rules: [{ required: false, message: '请填写班级' }],
- },
- viewForm:{
- component: { placeholder: '' },
- }
- },
- },
- },
- };
- };
|