├── README.md └── vue-order-calendar ├── img ├── 基本功能效果.png ├── 管理界面效果图.png └── 预定功能效果图.png ├── index.html ├── js └── vue.js ├── manager.html └── simpleindex.html /README.md: -------------------------------------------------------------------------------- 1 | # vue-order-calendar 2 | # Vue日历组件 3 | 4 | A calendar component with a predetermined function
5 | 一个有预定功能的日历组件 6 | 7 | - **基本日历** :基本日历显示,代码简洁; 8 | 9 | 10 | ![](https://github.com/herozhou/vue-order-calendar/blob/master/vue-order-calendar/img/%E5%9F%BA%E6%9C%AC%E5%8A%9F%E8%83%BD%E6%95%88%E6%9E%9C.png)   11 | 12 | - **预定功能** :适用于电影院、车票、演唱会等; 13 | 14 | ![](https://github.com/herozhou/vue-order-calendar/blob/master/vue-order-calendar/img/%E9%A2%84%E5%AE%9A%E5%8A%9F%E8%83%BD%E6%95%88%E6%9E%9C%E5%9B%BE.png) 15 | 16 | - **管理功能** :管理员在后台批量修改; 17 | 18 | ![](https://github.com/herozhou/vue-order-calendar/blob/master/vue-order-calendar/img/%E7%AE%A1%E7%90%86%E7%95%8C%E9%9D%A2%E6%95%88%E6%9E%9C%E5%9B%BE.png)   19 | -------------------------------------------------------------------------------- /vue-order-calendar/img/基本功能效果.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herozhou/vue-order-calendar/6957fd8fe3a8706ba834ef31e34e036439fff0c7/vue-order-calendar/img/基本功能效果.png -------------------------------------------------------------------------------- /vue-order-calendar/img/管理界面效果图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herozhou/vue-order-calendar/6957fd8fe3a8706ba834ef31e34e036439fff0c7/vue-order-calendar/img/管理界面效果图.png -------------------------------------------------------------------------------- /vue-order-calendar/img/预定功能效果图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herozhou/vue-order-calendar/6957fd8fe3a8706ba834ef31e34e036439fff0c7/vue-order-calendar/img/预定功能效果图.png -------------------------------------------------------------------------------- /vue-order-calendar/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 | 126 | 127 | 128 |
129 | 130 |
131 | 140 |
141 | 142 | 151 | 152 | 172 |
173 | 174 | 175 | 176 | 303 | 304 | -------------------------------------------------------------------------------- /vue-order-calendar/manager.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 | 136 | 137 | 138 |
139 | 140 | 141 |
142 | 要修改的日期 143 | 144 |
  • {{ d }}
  • 145 | 146 |
    147 | 148 | 149 | 150 | 151 | 152 |
    153 |
    154 | 155 | 222 |
    223 | 224 | 225 | 226 | 372 | 373 | -------------------------------------------------------------------------------- /vue-order-calendar/simpleindex.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Title 6 | 7 | 8 | 127 | 128 | 129 |
    130 | 131 |
    132 | 141 |
    142 | 143 | 152 | 153 | 170 |
    171 | 172 | 173 | 174 | 265 | 266 | 267 | --------------------------------------------------------------------------------