diff --git a/src/assets/images/publish-bg.png b/src/assets/images/publish-bg.png new file mode 100644 index 0000000..0e14dad Binary files /dev/null and b/src/assets/images/publish-bg.png differ diff --git a/src/assets/images/publish1.png b/src/assets/images/publish1.png new file mode 100644 index 0000000..6ad83d4 Binary files /dev/null and b/src/assets/images/publish1.png differ diff --git a/src/assets/images/publish2.png b/src/assets/images/publish2.png new file mode 100644 index 0000000..69a80aa Binary files /dev/null and b/src/assets/images/publish2.png differ diff --git a/src/assets/images/publish3.png b/src/assets/images/publish3.png new file mode 100644 index 0000000..c9edc75 Binary files /dev/null and b/src/assets/images/publish3.png differ diff --git a/src/pages/publish/index.vue b/src/pages/publish/index.vue new file mode 100644 index 0000000..40204cd --- /dev/null +++ b/src/pages/publish/index.vue @@ -0,0 +1,143 @@ + + + + + \ No newline at end of file diff --git a/src/pages/publish/show.vue b/src/pages/publish/show.vue new file mode 100644 index 0000000..34c5f4d --- /dev/null +++ b/src/pages/publish/show.vue @@ -0,0 +1,176 @@ + + + + + \ No newline at end of file diff --git a/src/router/modules/publish.js b/src/router/modules/publish.js new file mode 100644 index 0000000..b6a02fa --- /dev/null +++ b/src/router/modules/publish.js @@ -0,0 +1,19 @@ +import BasicLayout from '@/layouts/home' +const name = 'publish' +export default { + path: `/${name}`, + component: BasicLayout, + children: [ + { + name, + path: `/${name}`, + component: () => import(`@/pages/${name}`), + meta: { title: '' } + }, + { + path: `show`, + component: () => import(`@/pages/${name}/show`), + meta: { title: '' } + } + ] +};