Skip to content

Commit d19572d

Browse files
内容管理修改功能完成
1 parent 19517ab commit d19572d

File tree

11 files changed

+373
-31
lines changed

11 files changed

+373
-31
lines changed

package-lock.json

Lines changed: 57 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"element-ui": "^2.0.8",
2828
"normalize.css": "^7.0.0",
2929
"vue": "^2.5.10",
30+
"vue-quill-editor": "^3.0.4",
3031
"vue-router": "^3.0.1"
3132
}
3233
}

src/component/admin/frame/Aside.vue

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
{title: "评论管理", path: "/"}
4848
]},
4949
{title: "购物商城", sub: [
50-
{title: "内容管理", path: "/"},
51-
{title: "类别管理", path: "/"},
50+
{title: "内容管理", path: "/admin/goods/content/list"},
51+
{title: "类别管理", path: "/admin/goods/category/list"},
5252
{title: "评论管理", path: "/"}
5353
]},
5454
{title: "订单管理", sub: [
@@ -77,6 +77,12 @@
7777
.el-menu {
7878
border-right: 0;
7979
height: 100%;
80+
li {
81+
a {
82+
color: #fff;
83+
text-decoration: none;
84+
}
85+
}
8086
i {
8187
color: #fff;
8288
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<template>
2+
<div>
3+
商品分类添加
4+
</div>
5+
</template>
6+
7+
<script>
8+
export default {
9+
10+
}
11+
</script>
12+
13+
<style scoped>
14+
15+
</style>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<template>
2+
<div>
3+
商品分类编辑
4+
</div>
5+
</template>
6+
7+
<script>
8+
export default {
9+
10+
}
11+
</script>
12+
13+
<style scoped>
14+
15+
</style>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<template>
2+
<div>
3+
商品分类列表
4+
</div>
5+
</template>
6+
7+
<script>
8+
export default {
9+
10+
}
11+
</script>
12+
13+
<style scoped>
14+
15+
</style>

0 commit comments

Comments
 (0)