重构mock,修复苹果电脑运行报错

This commit is contained in:
chuzhixin 2020-08-17 15:54:12 +08:00
parent 78d5ca1bb6
commit ce1021fc44
24 changed files with 44 additions and 62 deletions

View File

@ -1,2 +0,0 @@
NODE_ENV = development
VUE_CLI_BABEL_TRANSPILE_MODULES = true

View File

@ -14,7 +14,7 @@ const data = [
"//shang.qq.com/wpa/qunwpa?idkey=14f123ac6d4ef3122bbb60d4693f1d8c951a50be2296951efb12d5ab1642f36b", "//shang.qq.com/wpa/qunwpa?idkey=14f123ac6d4ef3122bbb60d4693f1d8c951a50be2296951efb12d5ab1642f36b",
}, },
]; ];
export default [ module.exports = [
{ {
url: "/ad/getList", url: "/ad/getList",
type: "get", type: "get",

View File

@ -32,7 +32,7 @@ const data = [
}, },
, ,
]; ];
export default [ module.exports = [
{ {
url: "/blacklist/getList", url: "/blacklist/getList",
type: "post", type: "post",

View File

@ -168,7 +168,7 @@ const data = [
}, },
]; ];
export default [ module.exports = [
{ {
url: "/changeLog/getList", url: "/changeLog/getList",
type: "post", type: "post",

View File

@ -303,7 +303,7 @@ const data = [
"add_database", "add_database",
"add_row", "add_row",
]; ];
export default [ module.exports = [
{ {
url: "/colorfulIcon/getList", url: "/colorfulIcon/getList",
type: "post", type: "post",

View File

@ -1,6 +1,6 @@
import { mock } from "mockjs"; const { mock } = require("mockjs");
export default [ module.exports = [
{ {
url: "/goodsDetail/getList", url: "/goodsDetail/getList",
type: "post", type: "post",

View File

@ -1,4 +1,4 @@
import { mock } from "mockjs"; const { mock } = require("mockjs");
const List = []; const List = [];
const count = 999; const count = 999;
@ -18,7 +18,7 @@ for (let i = 0; i < count; i++) {
); );
} }
export default [ module.exports = [
{ {
url: "/goodsList/getList", url: "/goodsList/getList",
type: "post", type: "post",

View File

@ -964,7 +964,7 @@ const data = [
"yen-sign", "yen-sign",
"yin-yang", "yin-yang",
]; ];
export default [ module.exports = [
{ {
url: "/icon/getList", url: "/icon/getList",
type: "post", type: "post",

View File

@ -1,4 +1,4 @@
export default [ module.exports = [
{ {
url: "/menuManagement/getTree", url: "/menuManagement/getTree",
type: "post", type: "post",

View File

@ -24,8 +24,7 @@ const data = [
type: "success", type: "success",
}, },
]; ];
module.exports = [
export default [
{ {
url: "/notice/getList", url: "/notice/getList",
type: "post", type: "post",

View File

@ -1,6 +1,6 @@
import { mock } from "mockjs"; const { mock } = require("mockjs");
export default [ module.exports = [
{ {
url: "/personalCenter/getList", url: "/personalCenter/getList",
type: "post", type: "post",

View File

@ -2271,7 +2271,7 @@ const data = [
"zzz-fill", "zzz-fill",
"zzz-line", "zzz-line",
]; ];
export default [ module.exports = [
{ {
url: "/remixIcon/getList", url: "/remixIcon/getList",
type: "post", type: "post",

View File

@ -9,7 +9,7 @@ const List = [
permission: "editor", permission: "editor",
}, },
]; ];
export default [ module.exports = [
{ {
url: "/roleManagement/getList", url: "/roleManagement/getList",
type: "post", type: "post",

View File

@ -379,7 +379,7 @@ const data = [
], ],
}, },
]; ];
export default [ module.exports = [
{ {
url: "/menu/navigate", url: "/menu/navigate",
type: "post", type: "post",

View File

@ -1,5 +1,5 @@
import { mock } from "mockjs"; const { mock } = require("mockjs");
import { handleRandomImage } from "../utils"; const { handleRandomImage } = require("../utils");
const List = []; const List = [];
const count = 999; const count = 999;
@ -21,7 +21,7 @@ for (let i = 0; i < count; i++) {
); );
} }
export default [ module.exports = [
{ {
url: "/table/getList", url: "/table/getList",
type: "post", type: "post",

View File

@ -43,7 +43,7 @@ const data = [
], ],
}, },
]; ];
export default [ module.exports = [
{ {
url: "/tree/list", url: "/tree/list",
type: "post", type: "post",

View File

@ -1,5 +1,5 @@
const data = []; const data = [];
export default [ module.exports = [
{ {
url: "/upload", url: "/upload",
type: "post", type: "post",

View File

@ -4,7 +4,7 @@ const accessTokens = {
test: "test-accessToken", test: "test-accessToken",
}; };
export default [ module.exports = [
{ {
url: "/publicKey", url: "/publicKey",
type: "post", type: "post",

View File

@ -25,7 +25,7 @@ const List = [
datatime: "@datetime", datatime: "@datetime",
}, },
]; ];
export default [ module.exports = [
{ {
url: "/userManagement/getList", url: "/userManagement/getList",
type: "post", type: "post",

View File

@ -3,33 +3,14 @@
* @description 导入所有 controller 模块npm run serve时在node环境中自动输出controller文件夹下Mock接口请勿修改 * @description 导入所有 controller 模块npm run serve时在node环境中自动输出controller文件夹下Mock接口请勿修改
*/ */
import { handleMockArray } from "./utils"; const { handleMockArray } = require("./utils");
import chalk from "chalk";
import fs from "fs";
import { baseURL, devPort, httpRequestFile } from "../src/config/settings";
const mocks = []; const mocks = [];
const mockArray = handleMockArray(); const mockArray = handleMockArray();
mockArray.forEach((item) => {
if (httpRequestFile) { const obj = require(item);
fs.writeFile("./http/mock.http", "", {}, function (err) { mocks.push(...obj);
if (err) throw err;
});
}
mockArray.forEach(async (item) => {
const obj = require(item).default;
await mocks.push(...obj);
if (httpRequestFile) {
obj.forEach((item) => {
fs.appendFile(
"./http/mock.http",
`\r\n###${item.url}###\r\POST http://localhost:${devPort}/${baseURL}${item.url}\r\nContent-Type: application/x-www-form-urlencoded\r\n###\r\n`,
(error) => {
if (error)
return chalk.red(`\n > 追加HTTP Request失败${error.message}`);
}
);
});
}
}); });
export default mocks; module.exports = {
mocks,
};

View File

@ -13,7 +13,7 @@ const mockDir = path.join(process.cwd(), "mock");
*/ */
const registerRoutes = (app) => { const registerRoutes = (app) => {
let mockLastIndex; let mockLastIndex;
const { default: mocks } = require("./index.js"); const { mocks } = require("./index.js");
const mocksForServer = mocks.map((route) => { const mocksForServer = mocks.map((route) => {
return responseFake(route.url, route.type, route.response); return responseFake(route.url, route.type, route.response);
}); });
@ -58,7 +58,6 @@ const responseFake = (url, type, respond) => {
* @param app * @param app
*/ */
module.exports = (app) => { module.exports = (app) => {
require("@babel/register");
app.use(bodyParser.json()); app.use(bodyParser.json());
app.use( app.use(
bodyParser.urlencoded({ bodyParser.urlencoded({

View File

@ -1,6 +1,6 @@
import { Random } from "mockjs"; const { Random } = require("mockjs");
import { join } from "path"; const { join } = require("path");
import fs from "fs"; const fs = require("fs");
/** /**
* @copyright chuzhixin 1204505056@qq.com * @copyright chuzhixin 1204505056@qq.com
@ -9,7 +9,7 @@ import fs from "fs";
* @param height * @param height
* @returns {string} * @returns {string}
*/ */
export function handleRandomImage(width = 50, height = 50) { function handleRandomImage(width = 50, height = 50) {
return `https://picsum.photos/${width}/${height}?random=${Random.guid()}`; return `https://picsum.photos/${width}/${height}?random=${Random.guid()}`;
} }
@ -18,7 +18,7 @@ export function handleRandomImage(width = 50, height = 50) {
* @description 处理所有 controller 模块npm run serve时在node环境中自动输出controller文件夹下Mock接口请勿修改 * @description 处理所有 controller 模块npm run serve时在node环境中自动输出controller文件夹下Mock接口请勿修改
* @returns {[]} * @returns {[]}
*/ */
export function handleMockArray() { function handleMockArray() {
const mockArray = []; const mockArray = [];
const getFiles = (jsonPath) => { const getFiles = (jsonPath) => {
const jsonFiles = []; const jsonFiles = [];
@ -37,3 +37,7 @@ export function handleMockArray() {
getFiles("mock/controller"); getFiles("mock/controller");
return mockArray; return mockArray;
} }
module.exports = {
handleRandomImage,
handleMockArray,
};

View File

@ -77,7 +77,7 @@
"zx-markdown-editor": "^0.0.2", "zx-markdown-editor": "^0.0.2",
"zx-player": "^0.9.6", "zx-player": "^0.9.6",
"zx-quill": "^0.0.2", "zx-quill": "^0.0.2",
"zx-templates": "^0.0.13", "zx-templates": "^0.0.14",
"zx-verify": "^0.0.2" "zx-verify": "^0.0.2"
}, },
"devDependencies": { "devDependencies": {
@ -90,8 +90,9 @@
"@vue/eslint-config-prettier": "^6.0.0", "@vue/eslint-config-prettier": "^6.0.0",
"autoprefixer": "^9.8.6", "autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0", "babel-eslint": "^10.1.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"compression-webpack-plugin": "^4.0.1", "compression-webpack-plugin": "^4.0.1",
"eslint": "^7.6.0", "eslint": "^7.7.0",
"eslint-plugin-prettier": "^3.1.4", "eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2", "eslint-plugin-vue": "^6.2.2",
"filemanager-webpack-plugin": "^2.0.5", "filemanager-webpack-plugin": "^2.0.5",

View File

@ -9,7 +9,7 @@ const mocks = [];
const files = require.context("../../mock/controller", false, /\.js$/); const files = require.context("../../mock/controller", false, /\.js$/);
files.keys().forEach((key) => { files.keys().forEach((key) => {
const obj = files(key).default; const obj = files(key);
mocks.push(...obj); mocks.push(...obj);
}); });