Commit e4624295 authored by chenqikuai's avatar chenqikuai

草稿箱

parent df0d4ce3
...@@ -46,13 +46,11 @@ const routes = [ ...@@ -46,13 +46,11 @@ const routes = [
name: "filingPersonManagement", name: "filingPersonManagement",
component: () => import("@/views/FilingPersonManagement/index.vue"), component: () => import("@/views/FilingPersonManagement/index.vue"),
}, },
// { {
// path: "/draftBox", path: "/draftBox",
// name: "draftBox", name: "draftBox",
// component: ( component: () => import("@/views/draftBox/index.vue"),
// () => import("@/views/draftBox/index.vue") },
// ),
// },
{ {
path: "/collectionManagement", path: "/collectionManagement",
name: "collectionManagement", name: "collectionManagement",
...@@ -157,15 +155,15 @@ const routes = [ ...@@ -157,15 +155,15 @@ const routes = [
component: () => import("@/views/AddCopyRight/index.vue"), component: () => import("@/views/AddCopyRight/index.vue"),
}, },
{ {
path: '/copyRightDetail', path: "/copyRightDetail",
name: 'copyRightDetail', name: "copyRightDetail",
component: () => import("@/views/CopyRightDetail/index.vue") component: () => import("@/views/CopyRightDetail/index.vue"),
}, },
{ {
path: '/filingPersonDetail', path: "/filingPersonDetail",
name: 'filingPersonDetail', name: "filingPersonDetail",
component: () => import("@/views/FilingPersonDetail/index.vue") component: () => import("@/views/FilingPersonDetail/index.vue"),
} },
]; ];
const router = createRouter({ const router = createRouter({
......
...@@ -2,16 +2,23 @@ ...@@ -2,16 +2,23 @@
<LayoutVue> <LayoutVue>
<div class="flex flex-col w-full h-full"> <div class="flex flex-col w-full h-full">
<div class="flex items-center"> <div class="flex items-center">
<Search v-model="searchValue" placeholder="搜索草稿"></Search> <Search v-model="searchValue" placeholder="搜索名称/备案号"></Search>
<Avatar class="ml-7"></Avatar> <Avatar class="ml-7"></Avatar>
</div> </div>
<div <div
class="flex items-center justify-between flex-shrink-0" class="flex items-center justify-between flex-shrink-0"
style="margin-top: 26px" style="margin-top: 26px"
> >
<Title>草稿箱</Title> <Title
<div class="tip flex-grow">草稿将在7日后删除,请尽快完成版权登记</div> :title="[
<div class="flex items-center"> { name: '版权管理', routerName: 'copyrightManagement' },
{
name: '草稿箱',
},
]"
></Title>
<!-- <div class="tip flex-grow">草稿将在7日后删除,请尽快完成版权登记</div> -->
<!-- <div class="flex items-center">
<syButton <syButton
style="width: 113px" style="width: 113px"
mode="elementBtn" mode="elementBtn"
...@@ -34,9 +41,9 @@ ...@@ -34,9 +41,9 @@
type="primary" type="primary"
>添加版权</syButton >添加版权</syButton
> >
</div> -->
</div> </div>
</div> <div class="flex-grow overflow-hidden">
<div class="flex-grow overflow-hidden" style="padding-top: 60px">
<DraftBoxTable <DraftBoxTable
:loading="loading" :loading="loading"
:data="tableData" :data="tableData"
......
...@@ -4,13 +4,14 @@ export const tableColumns = [ ...@@ -4,13 +4,14 @@ export const tableColumns = [
{ {
label: "版权名称", label: "版权名称",
prop: "name", prop: "name",
minWidth: 200,
}, },
{ {
label: "流水号", label: "作品类型",
prop: "id", prop: "id",
}, },
{ {
label: "操作日期", label: "提交日期",
prop: "date", prop: "date",
}, },
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment