123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- // 引入fast-crud
- import { FastCrud, useTypes } from '@fast-crud/fast-crud';
- const { getType } = useTypes();
- import '@fast-crud/fast-crud/dist/style.css';
- import { setLogger } from '@fast-crud/fast-crud';
- // element
- import ui from '@fast-crud/ui-element';
- import { request } from '/@/utils/service';
- //扩展包
- import { FsExtendsEditor,FsExtendsUploader } from '@fast-crud/fast-extends';
- import '@fast-crud/fast-extends/dist/style.css';
- import { successMessage, successNotification } from '/@/utils/message';
- export default {
- async install(app: any, options: any) {
- // 先安装ui
- app.use(ui);
- // 然后安装FastCrud
- app.use(FastCrud, {
- //i18n, //i18n配置,可选,默认使用中文,具体用法请看demo里的 src/i18n/index.js 文件
- // 此处配置公共的dictRequest(字典请求)
- async dictRequest({ dict }: any) {
- //根据dict的url,异步返回一个字典数组
- return await request({ url: dict.url, params: dict.params || {} }).then((res:any)=>{
- return res.data
- });
- },
- //公共crud配置
- commonOptions() {
- return {
- request: {
- //接口请求配置
- //你项目后台接口大概率与fast-crud所需要的返回结构不一致,所以需要配置此项
- //请参考文档http://fast-crud.docmirror.cn/api/crud-options/request.html
- transformQuery: ({ page, form, sort }: any) => {
- if (sort.asc !== undefined) {
- form['ordering'] = `${sort.asc ? '' : '-'}${sort.prop}`;
- }
- //转换为你pageRequest所需要的请求参数结构
- return { page: page.currentPage, limit: page.pageSize, ...form };
- },
- transformRes: ({ res }: any) => {
- //将pageRequest的返回数据,转换为fast-crud所需要的格式
- //return {records,currentPage,pageSize,total};
- return { records: res.data, currentPage: res.page, pageSize: res.limit, total: res.total };
- },
- },
- form: {
- afterSubmit(ctx: any) {
- // 增加crud提示
- if (ctx.res.code == 2000) {
- successNotification(ctx.res.msg);
- }
- },
- },
- toolbar: {
- buttons: {
- compact: {
- show: false
- }
- }
- },
- /* search: {
- layout: 'multi-line',
- collapse: true,
- col: {
- span: 4,
- },
- options: {
- labelCol: {
- style: {
- width: '100px',
- },
- },
- },
- }, */
- };
- },
- });
- //富文本
- app.use(FsExtendsEditor, {
- wangEditor: {
- width: 300,
- },
- });
- // 文件上传
- app.use(FsExtendsUploader, {
- defaultType: "form",
- form: {
- action: `/api/system/file/`,
- name: "file",
- withCredentials: false,
- uploadRequest: async ({ action, file, onProgress }) => {
- // @ts-ignore
- const data = new FormData();
- data.append("file", file);
- return await request({
- url: action,
- method: "post",
- timeout: 60000,
- headers: {
- "Content-Type": "multipart/form-data"
- },
- data,
- onUploadProgress: (p) => {
- onProgress({ percent: Math.round((p.loaded / p.total) * 100) });
- }
- });
- },
- successHandle(ret) {
- // 上传完成后的结果处理, 此处应返回格式为{url:xxx,key:xxx}
- return {
- url: getBaseURL() + ret.data.url,
- key: ret.data.id
- };
- }
- }
- })
- setLogger({ level: 'error' });
- // 设置自动染色
- const dictComponentList = ['dict-cascader', 'dict-checkbox', 'dict-radio', 'dict-select', 'dict-switch', 'dict-tree'];
- dictComponentList.forEach((val) => {
- getType(val).column.component.color = 'auto';
- });
- },
- };
|