123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import { config } from '@/config/axios/config'
- import { MockMethod } from 'vite-plugin-mock'
- const { result_code } = config
- const timeout = 0
- const dictObj: Recordable = {
- importance: [
- {
- value: 0,
- label: 'tableDemo.commonly'
- },
- {
- value: 1,
- label: 'tableDemo.good'
- },
- {
- value: 2,
- label: 'tableDemo.important'
- }
- ]
- }
- export default [
- // 字典接口
- {
- url: '/dict/list',
- method: 'get',
- timeout,
- response: () => {
- return {
- code: result_code,
- data: dictObj
- }
- }
- },
- // 获取某个字典
- {
- url: '/dict/one',
- method: 'get',
- timeout,
- response: () => {
- return {
- code: result_code,
- data: [
- {
- label: 'test1',
- value: 0
- },
- {
- label: 'test2',
- value: 1
- },
- {
- label: 'test3',
- value: 2
- }
- ]
- }
- }
- }
- ] as MockMethod[]
|