diff --git a/uml/UML最终版/src/views/BookManagement.vue b/uml/UML最终版/src/views/BookManagement.vue new file mode 100644 index 0000000..157ea2d --- /dev/null +++ b/uml/UML最终版/src/views/BookManagement.vue @@ -0,0 +1,290 @@ + + + + + 图书管理 + 添加图书 + + + + + + {{ editMode ? '编辑图书' : '添加图书' }} + + 图书标题 + + + 作者 + + + 价格 + + + 库存 + + + 封面图片路径 + + + 类型 + + + 描述 + + + + {{ editMode ? '确认修改' : '确认添加' }} + 取消 + + + + + + + + + + {{ book.bookName }} + 作者: {{ book.author }} + 价格: ¥{{ book.price }} + 库存: {{ book.quantity }} + 类型: {{ book.type }} + 描述: {{ book.description }} + + + 编辑 + 删除 + + + + + + + + + \ No newline at end of file
作者: {{ book.author }}
价格: ¥{{ book.price }}
库存: {{ book.quantity }}
类型: {{ book.type }}
描述: {{ book.description }}