1.2.0 • Published 6 years ago

pc-manage-init v1.2.0

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

pc-manage-init

  • 一个后台管理框架生成脚本

相关

  • node@8.*
  • vue-cli
  • vue-router
  • iview
  • babel-polyfill
  • vuex
  • less
  • highcharts
  • mockjs

before all

$ vue-init webpack demo
$ cd demo
$ cnpm i
$ cnpm i -S iview babel-polyfill vuex highcharts vue-auto-register jsonp mockjs
$ cnpm i -D less less-loader

install

$ npm i -D pc-manage-init

cli

$ vi package.json

{
  "scripts": {
    "init": "pc-manage-init",
    "api": "generate-api",
  }
}

start

# 生成init目录
$ npm run init

# 配置init目录
$ cp index.php init/apidoc.js
$ vi init/project.yml
$ vi init/tables.yml

# 生成项目
$ npm run init

# 启动项目
$ npm start

# 非必须的命令, npm run init 已自动包含
# 根据文档生成且仅改变 @/ajax/api.js @/ajax/mock.js
$ npm run api

参考

  • 涉及到权限
  • addRouter Api
  • 动态render侧边栏:
Vue.component('SiderItem', {
  props: ['data'],
  render (h) {
    return h('div',
      this.data.map(item => {
        if (item.children) {
          return h('Submenu', {
            props: {name: item.name}
          }, [
            h('template', {slot: 'title'}, [
              h('Icon', {props: {type: 'ios-home'}}),
              h('span', {'class': 'title'}, item.title)
            ]),
            ...item.children.map(child => h('MenuItem', {props: {name: child.path}}, child.name))
          ])
        } else {
          return h('MenuItem', {
            props: {name: '/member'}
          }, [
            h('Icon', {props: {type: 'ios-home'}}),
            h('span', {'class': 'title'}, item.title)
          ])
        }
      })
    )
  }
})
  • 登录退出时由于滚动条而抖动
  • scroll-hide 样式类在 @/style/scrollbar.less
<body class="scroll-hide">
1.2.0

6 years ago

1.1.15

6 years ago

1.1.14

6 years ago

1.1.12

6 years ago

1.1.11

6 years ago

1.1.10

6 years ago

1.1.9

6 years ago

1.1.8

6 years ago

1.1.7

6 years ago

1.1.6

6 years ago

1.1.5

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.29

6 years ago

1.0.28

6 years ago

1.0.27

6 years ago

1.0.25

6 years ago

1.0.24

6 years ago

1.0.23

6 years ago

1.0.22

6 years ago

1.0.21

6 years ago

1.0.20

6 years ago

1.0.19

6 years ago

1.0.18

6 years ago

1.0.17

6 years ago

1.0.16

6 years ago

1.0.15

6 years ago

1.0.14

6 years ago

1.0.13

6 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago