From d9122249926c76bb4bb11c09eeef0258c7a839e2 Mon Sep 17 00:00:00 2001 From: lukeyan <1727408482@qq.com> Date: Mon, 7 Aug 2023 10:31:10 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A8=E6=A0=BC=E4=BA=8C=E6=AC=A1=E5=B0=81?= =?UTF-8?q?=E8=A3=851?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/publicModule/lkyTable.vue | 393 +++++++++++++++++++++++ src/main.js | 3 +- src/router/index.js | 7 +- src/views/module/index.vue | 175 ++++++++++ 4 files changed, 576 insertions(+), 2 deletions(-) create mode 100644 src/components/publicModule/lkyTable.vue create mode 100644 src/views/module/index.vue diff --git a/src/components/publicModule/lkyTable.vue b/src/components/publicModule/lkyTable.vue new file mode 100644 index 0000000..f90b317 --- /dev/null +++ b/src/components/publicModule/lkyTable.vue @@ -0,0 +1,393 @@ + + + + \ No newline at end of file diff --git a/src/main.js b/src/main.js index 9a4957a..a79074a 100644 --- a/src/main.js +++ b/src/main.js @@ -6,10 +6,11 @@ import router from './router' import store from './store' import Message from './components/message'; import erupload from "./components/upload"; +import lkyTable from "./components/publicModule/lkyTable" // 本组件样式包含普通表格、分页 Vue.use(ElementUI); Vue.use(Message) Vue.component('erupload', erupload) - +Vue.component('lkyTable', lkyTable) const vm = new Vue({ el: '#app', router, diff --git a/src/router/index.js b/src/router/index.js index d1ad40b..d421566 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -67,12 +67,17 @@ const routes = [ name: 'closeLoopDispose', component: () => import('@/views/closeLoopDispose'), }, - // 应用超市 + // 安商惠企 { path:'applySupermarket', name:'applySupermarket', component: () => import('@/views/applySupermarket'), }, + { + path:'module', + name:'module', + component: () => import('@/views/module'), + }, ] }, { diff --git a/src/views/module/index.vue b/src/views/module/index.vue new file mode 100644 index 0000000..59c9a38 --- /dev/null +++ b/src/views/module/index.vue @@ -0,0 +1,175 @@ + + + + \ No newline at end of file