1. 更新dependencies:日常小版本更新
2. 统一mutations命名规范:将setusername修改setUsername,与setPermissions/setAvatar风格一致
3. 整体格式化代码,无内容修改:
> - 删除未引用的import
> - 删除多余空行
> - function间隔添加空行
> - import与逻辑代码间添加空行
> - 优化导入
> - 内联变量
This commit is contained in:
飞木鱼 2020-08-06 18:07:16 +08:00
parent 0d84a9fb48
commit 949ba51fcb
14 changed files with 23 additions and 27 deletions

View File

@ -1,4 +1,3 @@
import { mock } from "mockjs";
const totalCount = 2;
const List = [
{
@ -17,8 +16,7 @@ export default [
response(config) {
const { title = "", pageNo = 1, pageSize = 20 } = config.body;
let mockList = List.filter((item) => {
if (title && item.title.indexOf(title) < 0) return false;
return true;
return !(title && item.title.indexOf(title) < 0);
});
const pageList = mockList.filter(
(item, index) =>
@ -35,7 +33,7 @@ export default [
{
url: "/roleManagement/doEdit",
type: "post",
response(config) {
response() {
return {
code: 200,
msg: "模拟保存成功",
@ -45,7 +43,7 @@ export default [
{
url: "/roleManagement/doDelete",
type: "post",
response(config) {
response() {
return {
code: 200,
msg: "模拟删除成功",

View File

@ -1,5 +1,6 @@
import { mock } from "mockjs";
import { handleRandomImage } from "../utils";
const List = [];
const count = 999;
for (let i = 0; i < count; i++) {
@ -50,8 +51,7 @@ export default [
}
const { title = "", pageNo = 1, pageSize = 20 } = config.body;
let mockList = List.filter((item) => {
if (title && item.title.indexOf(title) < 0) return false;
return true;
return !(title && item.title.indexOf(title) < 0);
});
const pageList = mockList.filter(
(item, index) =>
@ -68,7 +68,7 @@ export default [
{
url: "/table/doEdit",
type: "post",
response(config) {
response() {
return {
code: 200,
msg: "模拟保存成功",
@ -78,7 +78,7 @@ export default [
{
url: "/table/doDelete",
type: "post",
response(config) {
response() {
return {
code: 200,
msg: "模拟删除成功",

View File

@ -1,4 +1,3 @@
import { handleRandomImage } from "../utils";
const accessTokens = {
admin: "admin-accessToken",
editor: "editor-accessToken",
@ -9,7 +8,7 @@ export default [
{
url: "/publicKey",
type: "post",
response(config) {
response() {
return {
code: 200,
msg: "success",
@ -83,7 +82,6 @@ export default [
};
},
},
{
url: "/logout",
type: "post",

View File

@ -47,7 +47,7 @@
"clipboard": "^2.0.6",
"codemirror": "^5.56.0",
"core-js": "^3.6.5",
"dayjs": "^1.8.31",
"dayjs": "^1.8.32",
"echarts": "^4.8.0",
"echarts-wordcloud": "^1.1.3",
"element-ui": "^2.13.2",
@ -65,7 +65,7 @@
"vue-amap": "^0.5.10",
"vue-echarts": "^5.0.0-beta.0",
"vue-qart": "^2.2.0",
"vue-router": "^3.3.4",
"vue-router": "^3.4.1",
"vuedraggable": "^2.24.0",
"vuex": "^3.5.1",
"zx-comparison": "^1.0.3",

View File

@ -29,6 +29,7 @@ export function logout() {
method: "post",
});
}
export function register() {
return request({
url: "/register",

View File

@ -1,9 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="550px" height="400px"
xml:space="preserve">
xmlns="http://www.w3.org/2000/svg"
width="550px" height="400px"
xml:space="preserve">
<g id="PathID_1" transform="matrix(10.7099, 0, 0, 10.7099, 76.4, 396.15)" opacity="1">
<path style="fill: #41b882; fill-opacity: 1;" d="M3.75 -36.65L18.4 -36.65Q22.75 -36.65 24.85 -36.25Q27 -35.9 28.7 -34.75Q30.4 -33.6 31.5 -31.7Q32.65 -29.8 32.65 -27.4Q32.65 -24.85 31.25 -22.7Q29.85 -20.55 27.5 -19.5Q30.85 -18.5 32.65 -16.15Q34.45 -13.8 34.45 -10.6Q34.45 -8.1 33.25 -5.75Q32.1 -3.4 30.1 -1.95Q28.1 -0.55 25.15 -0.25Q23.3 -0.05 16.2 0L3.75 0L3.75 -36.65M11.15 -30.55L11.15 -22.1L16 -22.1Q20.3 -22.1 21.35 -22.2Q23.25 -22.4 24.35 -23.5Q25.45 -24.6 25.45 -26.35Q25.45 -28.05 24.5 -29.1Q23.55 -30.2 21.7 -30.4Q20.6 -30.55 15.4 -30.55L11.15 -30.55M11.15 -16L11.15 -6.2L18 -6.2Q22 -6.2 23.05 -6.4Q24.7 -6.7 25.75 -7.85Q26.8 -9.05 26.8 -11Q26.8 -12.65 26 -13.8Q25.2 -14.95 23.65 -15.45Q22.15 -16 17.1 -16L11.15 -16" />
</g>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -10,9 +10,9 @@ import getPageTitle from "@/utils/pageTitle";
import {
authentication,
loginInterception,
routesWhiteList,
progressBar,
recordRoute,
routesWhiteList,
} from "./settings";
VabProgress.configure({

View File

@ -1,6 +1,7 @@
import { MessageBox } from "element-ui";
import { donation } from "@/config/settings";
import { repository, dependencies } from "../../package.json";
import { dependencies, repository } from "../../package.json";
if (!!window.ActiveXObject || "ActiveXObject" in window) {
MessageBox({
title: "温馨提示",

View File

@ -1,5 +1,6 @@
import { Heading, Img, Keel, Text } from "zx-keel";
import "zx-keel/dist/zx-keel.css";
const VabKeel = Keel;
const VabKeelHeading = Heading;
const VabKeelImg = Img;

View File

@ -1,4 +1,5 @@
import ZxMarkdownEditor from "zx-markdown-editor";
import "zx-markdown-editor/dist/zx-markdown-editor.css";
const VabMarkdownEditor = ZxMarkdownEditor;
export default VabMarkdownEditor;

View File

@ -1,3 +1,4 @@
import VabVerify from "zx-verify";
import "zx-verify/dist/zx-verify.css";
export default VabVerify;

View File

@ -30,7 +30,7 @@ const mutations = {
state.accessToken = accessToken;
setAccessToken(accessToken);
},
setusername(state, username) {
setUsername(state, username) {
state.username = username;
},
setAvatar(state, avatar) {
@ -77,7 +77,7 @@ const actions = {
let { permissions, username, avatar } = data;
if (permissions && username && Array.isArray(permissions)) {
commit("setPermissions", permissions);
commit("setusername", username);
commit("setUsername", username);
commit("setAvatar", avatar);
return permissions;
} else {

View File

@ -608,9 +608,6 @@
text: "2099年世界GDP亿元",
subtext: "数据来自vue-admin-beautiful杜撰",
},
tooltip: {
trigger: "item",
},
dataRange: {
orient: "horizontal",
min: 0,

View File

@ -39,8 +39,7 @@ const resolve = (dir) => {
const mockServer = () => {
if (process.env.NODE_ENV === "development") {
const mockServer = require("./mock/mockServer.js");
return mockServer;
return require("./mock/mockServer.js");
} else {
return "";
}