|
@@ -2,7 +2,7 @@
|
|
<el-aside style="width: 254px;">
|
|
<el-aside style="width: 254px;">
|
|
<div class="sidebar">
|
|
<div class="sidebar">
|
|
<div class="side-logo">
|
|
<div class="side-logo">
|
|
- <img @click="$router.push({path:'/'})" src="static/image/logo.png" class="logo" />
|
|
|
|
|
|
+ <img @click="$router.push({path:'/'})" src="../../static/image/logo.png" class="logo" />
|
|
</div>
|
|
</div>
|
|
<el-menu class="sidebar-el-menu" :default-active="$route.path" :collapse="collapse" background-color="#00152A" text-color="#bfcbd9" active-text-color="#20a0ff" router>
|
|
<el-menu class="sidebar-el-menu" :default-active="$route.path" :collapse="collapse" background-color="#00152A" text-color="#bfcbd9" active-text-color="#20a0ff" router>
|
|
<template v-for="item in items">
|
|
<template v-for="item in items">
|
|
@@ -49,7 +49,7 @@ export default {
|
|
path: "/",
|
|
path: "/",
|
|
name: "home",
|
|
name: "home",
|
|
title: "一键发单",
|
|
title: "一键发单",
|
|
- icon: "/static/image/order-icon.png",
|
|
|
|
|
|
+ icon: require("../../static/image/order-icon.png"),
|
|
children: [
|
|
children: [
|
|
{
|
|
{
|
|
path: "/",
|
|
path: "/",
|
|
@@ -72,7 +72,7 @@ export default {
|
|
path: "/shopInfo",
|
|
path: "/shopInfo",
|
|
name: "shopInfo",
|
|
name: "shopInfo",
|
|
title: "商户信息",
|
|
title: "商户信息",
|
|
- icon: "/static/image/shop-icon.png",
|
|
|
|
|
|
+ icon: require("../../static/image/shop-icon.png"),
|
|
children: [
|
|
children: [
|
|
{
|
|
{
|
|
path: "/shopInfo/shopInfos",
|
|
path: "/shopInfo/shopInfos",
|
|
@@ -90,7 +90,7 @@ export default {
|
|
path: "/setUp",
|
|
path: "/setUp",
|
|
name: "setUp",
|
|
name: "setUp",
|
|
title: "设置",
|
|
title: "设置",
|
|
- icon: "/static/image/setting-icon.png",
|
|
|
|
|
|
+ icon: require("../../static/image/setting-icon.png"),
|
|
children: [
|
|
children: [
|
|
{
|
|
{
|
|
path: "/setUp/set",
|
|
path: "/setUp/set",
|
|
@@ -113,13 +113,13 @@ export default {
|
|
path: "/help",
|
|
path: "/help",
|
|
name: "help",
|
|
name: "help",
|
|
title: "帮助中心",
|
|
title: "帮助中心",
|
|
- icon: "/static/image/help-icon.png",
|
|
|
|
|
|
+ icon: require("../../static/image/help-icon.png"),
|
|
},
|
|
},
|
|
{
|
|
{
|
|
path: "/about",
|
|
path: "/about",
|
|
name: "about",
|
|
name: "about",
|
|
title: "关于我们",
|
|
title: "关于我们",
|
|
- icon: "/static/image/about-icon.png",
|
|
|
|
|
|
+ icon: require("../../static/image/about-icon.png"),
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|
|
};
|