From 298edb2c53e8a59dbd6c632a94f79dcfe830c83d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A7=8B=E4=BA=8E=E5=88=9D=E8=A7=81?= <752204717@qq.com> Date: Fri, 19 Apr 2024 10:34:01 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E8=AF=BE=E7=A8=8B=E5=8A=A0=E5=9B=BE?= =?UTF-8?q?=E7=89=87=202=E3=80=81=E6=96=B0=E5=A2=9E=E8=BF=90=E8=90=A5?= =?UTF-8?q?=E6=A0=87=E7=AD=BE=E7=BB=91=E5=AE=9A=E8=AF=BE=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../commonBookTags/bookTagsForm.vue | 597 +++++++++ .../components/commonBookTags/commonTags.vue | 575 +++++++++ .../commonBookTags/shopproduct copy.vue | 511 ++++++++ .../components/commonBookTags/shopproduct.vue | 516 ++++++++ .../commonBookTags/shopproductTable.vue | 359 ++++++ src/views/components/commonBookTags/tags.vue | 928 ++++++++++++++ .../modules/course/course-add-or-update.vue | 599 +++++---- src/views/modules/course/courseChapter.vue | 2 +- src/views/modules/course/courseList.vue | 359 ++++-- src/views/modules/course/operationsList.vue | 1117 +++++++++++++++++ 10 files changed, 5155 insertions(+), 408 deletions(-) create mode 100644 src/views/components/commonBookTags/bookTagsForm.vue create mode 100644 src/views/components/commonBookTags/commonTags.vue create mode 100644 src/views/components/commonBookTags/shopproduct copy.vue create mode 100644 src/views/components/commonBookTags/shopproduct.vue create mode 100644 src/views/components/commonBookTags/shopproductTable.vue create mode 100644 src/views/components/commonBookTags/tags.vue create mode 100644 src/views/modules/course/operationsList.vue diff --git a/src/views/components/commonBookTags/bookTagsForm.vue b/src/views/components/commonBookTags/bookTagsForm.vue new file mode 100644 index 0000000..65262b0 --- /dev/null +++ b/src/views/components/commonBookTags/bookTagsForm.vue @@ -0,0 +1,597 @@ + + + + + + + + + + + + 取消 + 确定 + + + + + + + diff --git a/src/views/components/commonBookTags/commonTags.vue b/src/views/components/commonBookTags/commonTags.vue new file mode 100644 index 0000000..1b788bf --- /dev/null +++ b/src/views/components/commonBookTags/commonTags.vue @@ -0,0 +1,575 @@ + + + + + + + + + + + + 关联图书标签 + + + + + + 关联图书营销标签 + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/views/components/commonBookTags/shopproduct copy.vue b/src/views/components/commonBookTags/shopproduct copy.vue new file mode 100644 index 0000000..21c8053 --- /dev/null +++ b/src/views/components/commonBookTags/shopproduct copy.vue @@ -0,0 +1,511 @@ + + + + + + + + + + + + + + + + + + + 查询 + + + + + + + + + selectShop(v)" + :value="selectShopArr.includes(v.id)" + class="shop_box_item_check" + > + + + + + {{ v.product.productName }} + + + + 价格: + + ¥{{ v.product.price }} + + + + 活动价: + + ¥{{ v.product.activityPrice }} + + + 库存: + + {{ v.product.productStock }} + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/views/components/commonBookTags/shopproduct.vue b/src/views/components/commonBookTags/shopproduct.vue new file mode 100644 index 0000000..85498cd --- /dev/null +++ b/src/views/components/commonBookTags/shopproduct.vue @@ -0,0 +1,516 @@ + + + + + + + + + + + 查询 + + + + + + + + + + + + + + + + 删除 + + + + + + + + + + + + + + + diff --git a/src/views/components/commonBookTags/shopproductTable.vue b/src/views/components/commonBookTags/shopproductTable.vue new file mode 100644 index 0000000..166cc04 --- /dev/null +++ b/src/views/components/commonBookTags/shopproductTable.vue @@ -0,0 +1,359 @@ + + + + + + + + + + 查询 + 重置 + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/views/components/commonBookTags/tags.vue b/src/views/components/commonBookTags/tags.vue new file mode 100644 index 0000000..9647e68 --- /dev/null +++ b/src/views/components/commonBookTags/tags.vue @@ -0,0 +1,928 @@ + + + + + + 当前标签:{{ + currentNode ? currentNode.data.title : "" + }} + + 新增顶级标签 + + + + + + + + + + + + + + {{ node.label }} + + + + 添加下级 + + + + + + 删除 + + + + + + + + + + \ No newline at end of file diff --git a/src/views/modules/course/course-add-or-update.vue b/src/views/modules/course/course-add-or-update.vue index 4842bb8..953092e 100644 --- a/src/views/modules/course/course-add-or-update.vue +++ b/src/views/modules/course/course-add-or-update.vue @@ -1,13 +1,50 @@ - - + + + + + + + + + + + + - 查询 + 查询 新增 - - + - + + + - + + + + + + + + + + @@ -116,9 +161,15 @@ align="center" label="删除标记"> --> - + - - - - - - - 目录管理 - - 修改 - 删除 - + + + + + + 目录管理 + + 修改 + 删除 + - + - + diff --git a/src/views/modules/course/operationsList.vue b/src/views/modules/course/operationsList.vue new file mode 100644 index 0000000..ead7e20 --- /dev/null +++ b/src/views/modules/course/operationsList.vue @@ -0,0 +1,1117 @@ + + + + + + + 基本标签信息 + + + + + + + + + + + + + + + + + + + + + + + + 已关联课程列表 + 新增 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 确定 + + + + + + 确定 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + 当前标签:{{ + currentNode ? currentNode.data.title : "" + }} +