fix: 📦 lodash-es to lodash (lowdb存在导致lodash无法移除)

This commit is contained in:
FairyEver
2020-11-30 14:51:31 +08:00
parent 0d4f315a27
commit 136e6cd040
25 changed files with 25 additions and 29 deletions

View File

@@ -1,4 +1,4 @@
import { assign, map } from 'lodash-es'
import { assign, map } from 'lodash'
import faker from 'faker/locale/zh_CN'
import { service, request, serviceForMock, requestForMock, mock } from './service'
import * as tools from './tools'

View File

@@ -1,4 +1,4 @@
import { find, map, random } from 'lodash-es'
import { find, map, random } from 'lodash'
const businessIssue142Db = [
{ id: '1', name: '用户 1', address: '上海市普陀区金沙江路 1518 弄' },

View File

@@ -1,4 +1,4 @@
import { find, assign } from 'lodash-es'
import { find, assign } from 'lodash'
const users = [
{ username: 'admin', password: 'admin', uuid: 'admin-uuid', name: 'Admin' },

View File

@@ -1,7 +1,7 @@
import { Message } from 'element-ui'
import axios from 'axios'
import Adapter from 'axios-mock-adapter'
import { get, isEmpty } from 'lodash-es'
import { get, isEmpty } from 'lodash'
import qs from 'qs'
import util from '@/libs/util'
import store from '@/store'