diff --git a/src/assets/img/add.png b/src/assets/img/add.png new file mode 100644 index 00000000..59a8922f Binary files /dev/null and b/src/assets/img/add.png differ diff --git a/src/assets/scss/modules/management/categoryMain.scss b/src/assets/scss/modules/management/categoryMain.scss new file mode 100644 index 00000000..9bda62e4 --- /dev/null +++ b/src/assets/scss/modules/management/categoryMain.scss @@ -0,0 +1,81 @@ +.div_main { + box-sizing: border-box; + height: 100%; + width: 100%; + background: #ffffff; + border-radius: 5px; + padding: 35px 0; + + .div_tip { + font-size: 24px; + font-family: PingFang SC; + font-weight: bold; + color: #333333; + margin-left: 42px; + } + .div_room_bar { + box-sizing: border-box; + margin-top: 5px; + height: calc(100vh - 230px); + } + + .div_room { + // height: calc(88vh - 40px); + // margin-top: 9px; + display: flex; + flex-wrap: wrap; + justify-content: flex-start; + margin-left: 42px; + // margin: 0 21px 0 21px; + + .item { + width: 340px; + height: 120px; + background: #ffffff; + box-shadow: 0px 0px 17px 3px #eaeaea; + border-radius: 6px; + margin-top: 30px; + display: flex; + + .item_category { + display: flex; + align-items: center; + padding: 17px 16px; + > img { + width: 86px; + height: 86px; + } + } + + .item_add { + font-size: 24px; + font-family: PingFang SC; + font-weight: 500; + color: #333333; + line-height: 350px; + display: flex; + align-items: center; + padding: 17px 16px; + + > img { + width: 86px; + height: 86px; + } + + > span { + font-size: 24px; + font-family: PingFang SC; + font-weight: 500; + color: #333333; + line-height: 350px; + margin-left: 16px; + } + } + } + } + + .div_room::after { + content: ''; + flex: 1; + } +} diff --git a/src/views/modules/base/category/main.vue b/src/views/modules/base/category/main.vue new file mode 100644 index 00000000..7e8900de --- /dev/null +++ b/src/views/modules/base/category/main.vue @@ -0,0 +1,382 @@ + + + + + 类别信息 + + + + + + + + + + {{item.columnName}} + + + + + + + {{item.count}} + {{item.columnName}} + + {{item.columnName}} + + + + + + + + + + + + + + + + + + \ No newline at end of file