├── .gitignore ├── LICENSE ├── README.md ├── answer ├── index.html ├── screen │ ├── screen01.png │ └── screen02.png └── thumbnail.png ├── common ├── images │ └── round │ │ ├── round-inner.png │ │ ├── round-light.png │ │ ├── round-light2.png │ │ ├── round-outer.png │ │ ├── round-scan-light.png │ │ ├── round-scan.png │ │ └── round.psd ├── round.html ├── round.jpg └── round.png ├── css ├── .svn │ ├── all-wcprops │ ├── entries │ └── text-base │ │ ├── bui.css.map.svn-base │ │ ├── bui.css.svn-base │ │ └── bui_weixin.css.svn-base ├── bui.css └── bui_weixin.css ├── detail ├── answer.html ├── answer.jpg ├── answer.png ├── chat.html ├── chat.jpg └── chat.png ├── font ├── .svn │ ├── all-wcprops │ ├── entries │ ├── prop-base │ │ ├── iconfont.eot.svn-base │ │ ├── iconfont.ttf.svn-base │ │ └── iconfont.woff.svn-base │ └── text-base │ │ ├── demo.css.svn-base │ │ ├── demo.html.svn-base │ │ ├── iconfont.css.svn-base │ │ ├── iconfont.eot.svn-base │ │ ├── iconfont.svg.svn-base │ │ ├── iconfont.ttf.svn-base │ │ └── iconfont.woff.svn-base ├── demo.css ├── demo.html ├── iconfont.css ├── iconfont.eot ├── iconfont.svg ├── iconfont.ttf └── iconfont.woff ├── form ├── search.html ├── search.jpg └── search.png ├── images ├── .svn │ ├── all-wcprops │ ├── entries │ ├── prop-base │ │ ├── applogo.png.svn-base │ │ ├── date.png.svn-base │ │ ├── face.png.svn-base │ │ ├── loading.gif.svn-base │ │ ├── pic.jpg.svn-base │ │ ├── slideshow.png.svn-base │ │ └── vcode.jpg.svn-base │ └── text-base │ │ ├── applogo.png.svn-base │ │ ├── date.png.svn-base │ │ ├── face.png.svn-base │ │ ├── loading.gif.svn-base │ │ ├── pic.jpg.svn-base │ │ ├── slideshow.png.svn-base │ │ └── vcode.jpg.svn-base └── applogo.png ├── index ├── images │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ ├── prop-base │ │ │ ├── Personal1-bg-personal1.png.svn-base │ │ │ ├── Personal1-img-face.png.svn-base │ │ │ ├── Personal3-img-contact.png.svn-base │ │ │ ├── index2-img.png.svn-base │ │ │ ├── index3-img.png.svn-base │ │ │ └── index4-img.png.svn-base │ │ └── text-base │ │ │ ├── Personal1-bg-personal1.png.svn-base │ │ │ ├── Personal1-img-face.png.svn-base │ │ │ ├── Personal3-img-contact.png.svn-base │ │ │ ├── index2-img.png.svn-base │ │ │ ├── index3-img.png.svn-base │ │ │ └── index4-img.png.svn-base │ ├── Personal3-img-contact.png │ ├── index2-img.png │ ├── index3-img.png │ ├── index4-img.png │ └── round │ │ ├── round-inner.png │ │ ├── round-light.png │ │ ├── round-light2.png │ │ ├── round-outer.png │ │ ├── round-scan-light.png │ │ ├── round-scan.png │ │ └── round.psd ├── index1.html ├── index1.jpg ├── index1.png ├── index2.html ├── index2.jpg ├── index2.png ├── index3.html ├── index3.jpg ├── index3.png ├── index4.html ├── index4.jpg └── index4.png ├── js ├── .svn │ ├── all-wcprops │ ├── dir-prop-base │ ├── entries │ ├── text-base │ │ ├── bingotouch.js.svn-base │ │ ├── bui.js.svn-base │ │ ├── cordova.js.svn-base │ │ └── zepto.js.svn-base │ └── tmp │ │ ├── bui.js.2.tmp │ │ └── bui.js.tmp ├── app │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ └── text-base │ │ │ └── _config.js.svn-base │ └── _config.js ├── bingotouch.js ├── bui.js ├── cordova.js ├── jquery.min.js ├── plugins │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ └── text-base │ │ │ ├── fastclick.js.svn-base │ │ │ └── vue.min.js.svn-base │ ├── fastclick.js │ └── vue.min.js └── zepto.js ├── list ├── schedule.html ├── schedule.jpg ├── schedule.png ├── status.html ├── status.jpg └── status.png ├── login ├── login1.html ├── login1.jpg ├── login1.png ├── register.html ├── register.jpg └── register.png ├── matual ├── alipay.html ├── alipay.jpg └── alipay.png └── personal ├── images ├── .svn │ ├── all-wcprops │ ├── entries │ ├── prop-base │ │ ├── Personal1-bg-personal1.png.svn-base │ │ ├── Personal1-img-face.png.svn-base │ │ ├── Personal3-img-contact.png.svn-base │ │ ├── index2-img.png.svn-base │ │ ├── index3-img.png.svn-base │ │ └── index4-img.png.svn-base │ └── text-base │ │ ├── Personal1-bg-personal1.png.svn-base │ │ ├── Personal1-img-face.png.svn-base │ │ ├── Personal3-img-contact.png.svn-base │ │ ├── index2-img.png.svn-base │ │ ├── index3-img.png.svn-base │ │ └── index4-img.png.svn-base ├── Personal1-bg-personal1.png ├── Personal1-img-face.png └── Personal3-img-contact.png ├── personal1.html ├── personal1.jpg ├── personal1.png ├── personal2.html ├── personal2.jpg ├── personal2.png ├── personal3.html ├── personal3.jpg ├── personal3.png ├── personal4.html ├── personal4.jpg └── personal4.png /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | prepros-6.config 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 imouou 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BUI-Scenes 2 | 移动终端常用的场景页 3 | -------------------------------------------------------------------------------- /answer/screen/screen01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/answer/screen/screen01.png -------------------------------------------------------------------------------- /answer/screen/screen02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/answer/screen/screen02.png -------------------------------------------------------------------------------- /answer/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/answer/thumbnail.png -------------------------------------------------------------------------------- /common/images/round/round-inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/common/images/round/round-inner.png -------------------------------------------------------------------------------- /common/images/round/round-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/common/images/round/round-light.png -------------------------------------------------------------------------------- /common/images/round/round-light2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/common/images/round/round-light2.png -------------------------------------------------------------------------------- /common/images/round/round-outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/common/images/round/round-outer.png -------------------------------------------------------------------------------- /common/images/round/round-scan-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/common/images/round/round-scan-light.png -------------------------------------------------------------------------------- /common/images/round/round-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/common/images/round/round-scan.png -------------------------------------------------------------------------------- /common/images/round/round.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/common/images/round/round.psd -------------------------------------------------------------------------------- /common/round.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |昨日完成82%
257 |今天完成
259 |85%
260 |完成数
267 |今日/昨日
268 |完成数
278 |今日/昨日
279 |待审批
296 |待响应
303 |到期
310 |323 | 何健彬 324 | 325 | 326 |
327 |335 | 何健彬 336 | 337 | 338 |
339 |347 | 何健彬 348 | 349 | 350 |
351 |359 | 何健彬 360 | 361 | 362 |
363 |371 | 何健彬 372 | 373 | 374 |
375 |383 | 何健彬 384 | 385 | 386 |
387 |280 | 13:30 - 16:30 281 |
282 |296 | 13:30 - 16:30 297 |
298 |312 | 13:30 - 16:30 313 |
314 |分享投票结果:不对外开放
237 |又阴天阴天
268 |分享投票结果:不对外开放
329 |张三李四
118 |积分:2988
119 |计算机与信息工程学院
79 |钻石用户
200 |