├── .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 | index3 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 123 | 140 | 141 | 142 | 143 |
144 |
145 |
146 |
147 | 148 |
149 |
圆圈动画
150 |
151 |
152 |
153 |
154 |
155 | 156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 | 168 |
169 | 170 |
171 | 172 | 173 | 174 | -------------------------------------------------------------------------------- /common/round.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/common/round.jpg -------------------------------------------------------------------------------- /common/round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/common/round.png -------------------------------------------------------------------------------- /css/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 47 4 | /svn/EID/!svn/ver/2267/01.Projects/BUI/demo/css 5 | END 6 | bui.css.map 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 59 10 | /svn/EID/!svn/ver/2267/01.Projects/BUI/demo/css/bui.css.map 11 | END 12 | bui.css 13 | K 25 14 | svn:wc:ra_dav:version-url 15 | V 55 16 | /svn/EID/!svn/ver/2267/01.Projects/BUI/demo/css/bui.css 17 | END 18 | bui_weixin.css 19 | K 25 20 | svn:wc:ra_dav:version-url 21 | V 62 22 | /svn/EID/!svn/ver/2236/01.Projects/BUI/demo/css/bui_weixin.css 23 | END 24 | -------------------------------------------------------------------------------- /css/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 2323 5 | http://wangwsh@eid.bingosoft.net:81/svn/EID/01.Projects/BUI/demo/css 6 | http://wangwsh@eid.bingosoft.net:81/svn/EID 7 | 8 | 9 | 10 | 2017-04-23T15:40:53.153926Z 11 | 2267 12 | wangwsh 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | eee847a2-21fd-0d49-b3e5-7d3b911f45d9 28 | 29 | bui.css.map 30 | file 31 | 32 | 33 | 34 | 35 | 2017-04-22T08:06:37.000000Z 36 | 8754ac8cbc8400d1aff3f43422dadd16 37 | 2017-04-23T15:40:53.153926Z 38 | 2267 39 | wangwsh 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 56938 62 | 63 | bui.css 64 | file 65 | 66 | 67 | 68 | 69 | 2017-04-22T08:06:34.000000Z 70 | a58077b7bfde79a753bcb45e299e74fa 71 | 2017-04-23T15:40:53.153926Z 72 | 2267 73 | wangwsh 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 65227 96 | 97 | bui_weixin.css 98 | file 99 | 100 | 101 | 102 | 103 | 2017-03-21T08:00:19.000000Z 104 | 4cec0e42587371d937f9324a899ccf73 105 | 2017-03-21T09:47:43.864863Z 106 | 2236 107 | wangwsh 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 3213 130 | 131 | -------------------------------------------------------------------------------- /css/.svn/text-base/bui_weixin.css.svn-base: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | 3 | /*bui重置*/ 4 | .bui-nav>[class*=bui-btn].active { 5 | color: #45c018; 6 | } 7 | .bui-tab .bui-nav .active { 8 | border-bottom: 1px solid #45c018; 9 | } 10 | header.bui-bar { 11 | background: #fff; 12 | } 13 | header.bui-bar i:before { 14 | color: #ccc; 15 | } 16 | header.bui-bar .bui-bar-main { 17 | color: #666; 18 | } 19 | .success { 20 | background: #04BE02; 21 | } 22 | .danger { 23 | background: #EF4F4F; 24 | } 25 | 26 | input[type="radio"].bui-choose:checked:before , 27 | input[type="checkbox"].bui-choose:checked:before { 28 | color: #09BB07; 29 | } 30 | 31 | body, 32 | .bui-page, 33 | .bui-page > main { 34 | background: #fbf9fe; 35 | } 36 | 37 | 38 | .main-nav { 39 | border-top: 1px solid #eee; 40 | } 41 | .main-nav i { 42 | display: block; 43 | font-size: 0.5rem; 44 | } 45 | .main-nav .bui-btn { 46 | border-left: 0; 47 | border-top: 0; 48 | padding-top: 0.3rem; 49 | padding-bottom: 0.3rem; 50 | background: none; 51 | color: #333; 52 | } 53 | .main-nav .bui-btn:nth-child(3n+0) { 54 | border-right: 0; 55 | } 56 | .main-nav .bui-btn:active { 57 | background: #ddd; 58 | } 59 | 60 | .space .bui-btn{ 61 | margin-bottom: .3rem; 62 | } 63 | 64 | 65 | .bui-searchbar { 66 | background: #EFEFF4; 67 | } 68 | .bui-searchbar .bui-input { 69 | border-radius: 0.08rem; 70 | } 71 | 72 | .msg { 73 | text-align: center; 74 | padding:.5rem .2rem 0 .2rem; 75 | } 76 | .msg i{ 77 | font-size: 1.4rem; 78 | } 79 | .msg .msg-title { 80 | padding-top: .5rem; 81 | margin-bottom: .2rem; 82 | font-size: .3rem; 83 | } 84 | .msg .msg-content { 85 | font-size: .2rem; 86 | color: #999; 87 | margin-bottom: .2rem; 88 | line-height:1.5; 89 | } 90 | 91 | .article { 92 | background: #fff; 93 | } 94 | .article h1, 95 | .article h2, 96 | .article h3, 97 | .article h4, 98 | .article h5, 99 | .article h6{ 100 | color: #666; 101 | } 102 | .article h1 { 103 | padding-top: .2rem; 104 | padding-bottom: .2rem; 105 | line-height: 1.5; 106 | font-size: .3rem; 107 | color: #333; 108 | } 109 | .article .author { 110 | color: #999; 111 | font-size: .2rem; 112 | } 113 | .article .author { 114 | color: #666; 115 | font-size: .2rem; 116 | } 117 | .article .category { 118 | color: #82a4c3; 119 | font-size: .2rem; 120 | } 121 | .article .time { 122 | color: #999; 123 | font-size: .2rem; 124 | } 125 | .article .article-info { 126 | margin-bottom: .2rem; 127 | } 128 | .article .article-content { 129 | padding-top: .2rem; 130 | } 131 | .article img { 132 | max-width: 100%; 133 | } 134 | .article p { 135 | margin-bottom: .2rem; 136 | } 137 | .article blockquote, 138 | .article code { 139 | border-left: 3px solid #ccc; 140 | background: #f1f1f1; 141 | display: block; 142 | width: 100%; 143 | margin: 0; 144 | padding: .2rem; 145 | font-size: .2rem; 146 | margin-bottom: .2rem; 147 | 148 | } 149 | 150 | 151 | .comment { 152 | background: #f1f1f1; 153 | padding-top: .3rem; 154 | } 155 | .comment-title { 156 | padding-bottom: .3rem; 157 | color: #666; 158 | border-bottom: 1px solid #ddd; 159 | 160 | } 161 | .comment .item-name { 162 | margin-bottom: .1rem; 163 | font-size: .2rem; 164 | } 165 | .comment .bui-list > div { 166 | padding-top: .2rem; 167 | padding-bottom: .2rem; 168 | border-bottom: 1px solid #ddd; 169 | } 170 | 171 | .comment .item-content { 172 | clear: both; 173 | color: #666; 174 | margin-bottom: .1rem; 175 | font-size: .2rem; 176 | line-height: 1.5; 177 | } 178 | 179 | .bui-list .vcode { 180 | padding-top: 0; 181 | padding-bottom: 0; 182 | padding-right: 0; 183 | } 184 | .bui-list .vcode img { 185 | height: .62rem; 186 | } 187 | 188 | .upload-image { 189 | position: relative; 190 | width: 1rem; 191 | height: 1rem; 192 | line-height: 1rem; 193 | margin: 0 auto; 194 | overflow: hidden; 195 | background-size: cover; 196 | background-position: center; 197 | background-image: url(../images/face.png); 198 | } 199 | .upload-image img{ 200 | width: 100%; 201 | } 202 | .upload-add { 203 | width: 1rem; 204 | height: 1rem; 205 | line-height: 1rem; 206 | margin: 0 auto; 207 | border: 1px solid #ddd; 208 | text-align: center; 209 | } 210 | .upload-add i{ 211 | font-size: .6rem; 212 | color: #999; 213 | } 214 | .panel-upload .bui-panel-main { 215 | padding-top: .2rem; 216 | } 217 | .panel-upload .upload-image { 218 | margin-bottom: .2rem; 219 | } -------------------------------------------------------------------------------- /css/bui_weixin.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | 3 | /*bui重置*/ 4 | .bui-nav>[class*=bui-btn].active { 5 | color: #45c018; 6 | } 7 | .bui-tab .bui-nav .active { 8 | border-bottom: 1px solid #45c018; 9 | } 10 | header.bui-bar { 11 | background: #fff; 12 | } 13 | header.bui-bar i:before { 14 | color: #ccc; 15 | } 16 | header.bui-bar .bui-bar-main { 17 | color: #666; 18 | } 19 | .success { 20 | background: #04BE02; 21 | } 22 | .danger { 23 | background: #EF4F4F; 24 | } 25 | 26 | input[type="radio"].bui-choose:checked:before , 27 | input[type="checkbox"].bui-choose:checked:before { 28 | color: #09BB07; 29 | } 30 | 31 | body, 32 | .bui-page, 33 | .bui-page > main { 34 | background: #fbf9fe; 35 | } 36 | 37 | 38 | .main-nav { 39 | border-top: 1px solid #eee; 40 | } 41 | .main-nav i { 42 | display: block; 43 | font-size: 0.5rem; 44 | } 45 | .main-nav .bui-btn { 46 | border-left: 0; 47 | border-top: 0; 48 | padding-top: 0.3rem; 49 | padding-bottom: 0.3rem; 50 | background: none; 51 | color: #333; 52 | } 53 | .main-nav .bui-btn:nth-child(3n+0) { 54 | border-right: 0; 55 | } 56 | .main-nav .bui-btn:active { 57 | background: #ddd; 58 | } 59 | 60 | .space .bui-btn{ 61 | margin-bottom: .3rem; 62 | } 63 | 64 | 65 | .bui-searchbar { 66 | background: #EFEFF4; 67 | } 68 | .bui-searchbar .bui-input { 69 | border-radius: 0.08rem; 70 | } 71 | 72 | .msg { 73 | text-align: center; 74 | padding:.5rem .2rem 0 .2rem; 75 | } 76 | .msg i{ 77 | font-size: 1.4rem; 78 | } 79 | .msg .msg-title { 80 | padding-top: .5rem; 81 | margin-bottom: .2rem; 82 | font-size: .3rem; 83 | } 84 | .msg .msg-content { 85 | font-size: .2rem; 86 | color: #999; 87 | margin-bottom: .2rem; 88 | line-height:1.5; 89 | } 90 | 91 | .article { 92 | background: #fff; 93 | } 94 | .article h1, 95 | .article h2, 96 | .article h3, 97 | .article h4, 98 | .article h5, 99 | .article h6{ 100 | color: #666; 101 | } 102 | .article h1 { 103 | padding-top: .2rem; 104 | padding-bottom: .2rem; 105 | line-height: 1.5; 106 | font-size: .3rem; 107 | color: #333; 108 | } 109 | .article .author { 110 | color: #999; 111 | font-size: .2rem; 112 | } 113 | .article .author { 114 | color: #666; 115 | font-size: .2rem; 116 | } 117 | .article .category { 118 | color: #82a4c3; 119 | font-size: .2rem; 120 | } 121 | .article .time { 122 | color: #999; 123 | font-size: .2rem; 124 | } 125 | .article .article-info { 126 | margin-bottom: .2rem; 127 | } 128 | .article .article-content { 129 | padding-top: .2rem; 130 | } 131 | .article img { 132 | max-width: 100%; 133 | } 134 | .article p { 135 | margin-bottom: .2rem; 136 | } 137 | .article blockquote, 138 | .article code { 139 | border-left: 3px solid #ccc; 140 | background: #f1f1f1; 141 | display: block; 142 | width: 100%; 143 | margin: 0; 144 | padding: .2rem; 145 | font-size: .2rem; 146 | margin-bottom: .2rem; 147 | 148 | } 149 | 150 | 151 | .comment { 152 | background: #f1f1f1; 153 | padding-top: .3rem; 154 | } 155 | .comment-title { 156 | padding-bottom: .3rem; 157 | color: #666; 158 | border-bottom: 1px solid #ddd; 159 | 160 | } 161 | .comment .item-name { 162 | margin-bottom: .1rem; 163 | font-size: .2rem; 164 | } 165 | .comment .bui-list > div { 166 | padding-top: .2rem; 167 | padding-bottom: .2rem; 168 | border-bottom: 1px solid #ddd; 169 | } 170 | 171 | .comment .item-content { 172 | clear: both; 173 | color: #666; 174 | margin-bottom: .1rem; 175 | font-size: .2rem; 176 | line-height: 1.5; 177 | } 178 | 179 | .bui-list .vcode { 180 | padding-top: 0; 181 | padding-bottom: 0; 182 | padding-right: 0; 183 | } 184 | .bui-list .vcode img { 185 | height: .62rem; 186 | } 187 | 188 | .upload-image { 189 | position: relative; 190 | width: 1rem; 191 | height: 1rem; 192 | line-height: 1rem; 193 | margin: 0 auto; 194 | overflow: hidden; 195 | background-size: cover; 196 | background-position: center; 197 | background-image: url(../images/face.png); 198 | } 199 | .upload-image img{ 200 | width: 100%; 201 | } 202 | .upload-add { 203 | width: 1rem; 204 | height: 1rem; 205 | line-height: 1rem; 206 | margin: 0 auto; 207 | border: 1px solid #ddd; 208 | text-align: center; 209 | } 210 | .upload-add i{ 211 | font-size: .6rem; 212 | color: #999; 213 | } 214 | .panel-upload .bui-panel-main { 215 | padding-top: .2rem; 216 | } 217 | .panel-upload .upload-image { 218 | margin-bottom: .2rem; 219 | } -------------------------------------------------------------------------------- /detail/answer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/detail/answer.jpg -------------------------------------------------------------------------------- /detail/answer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/detail/answer.png -------------------------------------------------------------------------------- /detail/chat.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 聊天详情 8 | 9 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 203 | 204 | 205 |
206 |
207 |
208 | 209 |
210 |
211 | 聊天详情 212 |
213 |
214 | 215 | 216 |
217 |
218 |
219 |
220 |
221 |
5月11日 08:30
222 |
223 |
224 |
225 |
226 |
发货到外省要收长途费用; 227 | 280公里以外,按0.35元/吨/公里计算。1500公里以外,载货20吨,12.5米长途货车,按350元/吨计算。其他的价格请和货运中介服务部商议 228 |
229 |
230 |
231 |
232 |
233 |
234 |
知道了,谢谢! 235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
好的,您稍等~~ 244 |
245 |
246 |
247 |
248 |
249 | 256 |
257 | 258 | 259 | -------------------------------------------------------------------------------- /detail/chat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/detail/chat.jpg -------------------------------------------------------------------------------- /detail/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/detail/chat.png -------------------------------------------------------------------------------- /font/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 48 4 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/font 5 | END 6 | iconfont.woff 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 62 10 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/font/iconfont.woff 11 | END 12 | iconfont.eot 13 | K 25 14 | svn:wc:ra_dav:version-url 15 | V 61 16 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/font/iconfont.eot 17 | END 18 | iconfont.css 19 | K 25 20 | svn:wc:ra_dav:version-url 21 | V 61 22 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/font/iconfont.css 23 | END 24 | demo.html 25 | K 25 26 | svn:wc:ra_dav:version-url 27 | V 58 28 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/font/demo.html 29 | END 30 | demo.css 31 | K 25 32 | svn:wc:ra_dav:version-url 33 | V 57 34 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/font/demo.css 35 | END 36 | iconfont.ttf 37 | K 25 38 | svn:wc:ra_dav:version-url 39 | V 61 40 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/font/iconfont.ttf 41 | END 42 | iconfont.svg 43 | K 25 44 | svn:wc:ra_dav:version-url 45 | V 61 46 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/font/iconfont.svg 47 | END 48 | -------------------------------------------------------------------------------- /font/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 2323 5 | http://wangwsh@eid.bingosoft.net:81/svn/EID/01.Projects/BUI/demo/font 6 | http://wangwsh@eid.bingosoft.net:81/svn/EID 7 | 8 | 9 | 10 | 2016-11-11T03:28:05.688476Z 11 | 1719 12 | wangwsh 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | eee847a2-21fd-0d49-b3e5-7d3b911f45d9 28 | 29 | iconfont.woff 30 | file 31 | 32 | 33 | 34 | 35 | 2016-12-27T08:09:56.000000Z 36 | 361ff97787a36620dd5c896c5870f09d 37 | 2016-05-11T13:51:00.540403Z 38 | 1598 39 | wangwsh 40 | has-props 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 20256 62 | 63 | iconfont.eot 64 | file 65 | 66 | 67 | 68 | 69 | 2016-12-27T08:09:56.000000Z 70 | c1f21b501f9d28df80a208f0e52699c5 71 | 2016-05-11T13:51:00.540403Z 72 | 1598 73 | wangwsh 74 | has-props 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 37528 96 | 97 | iconfont.css 98 | file 99 | 100 | 101 | 102 | 103 | 2016-12-27T08:09:56.000000Z 104 | 98cb8083a00e137bc7e49028fda5845a 105 | 2016-05-11T13:51:00.540403Z 106 | 1598 107 | wangwsh 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 5656 130 | 131 | demo.html 132 | file 133 | 134 | 135 | 136 | 137 | 2016-12-27T08:09:56.000000Z 138 | d280da366e4cc4e245c336768915d1ea 139 | 2016-05-11T13:51:00.540403Z 140 | 1598 141 | wangwsh 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 32834 164 | 165 | demo.css 166 | file 167 | 168 | 169 | 170 | 171 | 2016-12-27T08:09:56.000000Z 172 | 43fc64a4933c89bdf465ded521fc3649 173 | 2016-05-11T13:51:00.540403Z 174 | 1598 175 | wangwsh 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 2741 198 | 199 | iconfont.ttf 200 | file 201 | 202 | 203 | 204 | 205 | 2016-12-27T08:09:56.000000Z 206 | 3d76ecde6c15cde24191f3a341e78bef 207 | 2016-05-11T13:51:00.540403Z 208 | 1598 209 | wangwsh 210 | has-props 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 37244 232 | 233 | iconfont.svg 234 | file 235 | 236 | 237 | 238 | 239 | 2016-12-27T08:09:56.000000Z 240 | 58854cad2041742500cc5c5a71db542a 241 | 2016-05-11T13:51:00.540403Z 242 | 1598 243 | wangwsh 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 65303 266 | 267 | -------------------------------------------------------------------------------- /font/.svn/prop-base/iconfont.eot.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /font/.svn/prop-base/iconfont.ttf.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /font/.svn/prop-base/iconfont.woff.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /font/.svn/text-base/demo.css.svn-base: -------------------------------------------------------------------------------- 1 | *{margin: 0;padding: 0;list-style: none;} 2 | /* 3 | KISSY CSS Reset 4 | 理念:1. reset 的目的不是清除浏览器的默认样式,这仅是部分工作。清除和重置是紧密不可分的。 5 | 2. reset 的目的不是让默认样式在所有浏览器下一致,而是减少默认样式有可能带来的问题。 6 | 3. reset 期望提供一套普适通用的基础样式。但没有银弹,推荐根据具体需求,裁剪和修改后再使用。 7 | 特色:1. 适应中文;2. 基于最新主流浏览器。 8 | 维护:玉伯, 正淳 9 | */ 10 | 11 | /** 清除内外边距 **/ 12 | body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */ 13 | dl, dt, dd, ul, ol, li, /* list elements 列表元素 */ 14 | pre, /* text formatting elements 文本格式元素 */ 15 | form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */ 16 | th, td /* table elements 表格元素 */ { 17 | margin: 0; 18 | padding: 0; 19 | } 20 | 21 | /** 设置默认字体 **/ 22 | body, 23 | button, input, select, textarea /* for ie */ { 24 | font: 12px/1.5 tahoma, arial, \5b8b\4f53, sans-serif; 25 | } 26 | h1, h2, h3, h4, h5, h6 { font-size: 100%; } 27 | address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */ 28 | code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */ 29 | small { font-size: 12px; } /* 小于 12px 的中文很难阅读,让 small 正常化 */ 30 | 31 | /** 重置列表元素 **/ 32 | ul, ol { list-style: none; } 33 | 34 | /** 重置文本格式元素 **/ 35 | a { text-decoration: none; } 36 | a:hover { text-decoration: underline; } 37 | 38 | 39 | /** 重置表单元素 **/ 40 | legend { color: #000; } /* for ie6 */ 41 | fieldset, img { border: 0; } /* img 搭车:让链接里的 img 无边框 */ 42 | button, input, select, textarea { font-size: 100%; } /* 使得表单元素在 ie 下能继承字体大小 */ 43 | /* 注:optgroup 无法扶正 */ 44 | 45 | /** 重置表格元素 **/ 46 | table { border-collapse: collapse; border-spacing: 0; } 47 | 48 | /* 清除浮动 */ 49 | .ks-clear:after, .clear:after { 50 | content: '\20'; 51 | display: block; 52 | height: 0; 53 | clear: both; 54 | } 55 | .ks-clear, .clear { 56 | *zoom: 1; 57 | } 58 | 59 | .main {padding: 30px 100px;} 60 | .main h1{font-size:36px; color:#333; text-align:left;margin-bottom:30px; border-bottom: 1px solid #eee;} 61 | 62 | .helps{margin-top:40px;} 63 | .helps pre{ 64 | padding:20px; 65 | margin:10px 0; 66 | border:solid 1px #e7e1cd; 67 | background-color: #fffdef; 68 | overflow: auto; 69 | } 70 | 71 | .icon_lists li{ 72 | float:left; 73 | width: 100px; 74 | height:180px; 75 | text-align: center; 76 | } 77 | .icon_lists .icon{ 78 | font-size: 42px; 79 | line-height: 100px; 80 | margin: 10px 0; 81 | color:#333; 82 | -webkit-transition: font-size 0.25s ease-out 0s; 83 | -moz-transition: font-size 0.25s ease-out 0s; 84 | transition: font-size 0.25s ease-out 0s; 85 | 86 | } 87 | .icon_lists .icon:hover{ 88 | font-size: 100px; 89 | } 90 | -------------------------------------------------------------------------------- /font/.svn/text-base/iconfont.css.svn-base: -------------------------------------------------------------------------------- 1 | 2 | @font-face {font-family: "iconfont"; 3 | src: url('iconfont.eot?t=1461655152'); /* IE9*/ 4 | src: url('iconfont.eot?t=1461655152#iefix') format('embedded-opentype'), /* IE6-IE8 */ 5 | url('iconfont.woff?t=1461655152') format('woff'), /* chrome, firefox */ 6 | url('iconfont.ttf?t=1461655152') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ 7 | url('iconfont.svg?t=1461655152#iconfont') format('svg'); /* iOS 4.1- */ 8 | } 9 | 10 | .iconfont { 11 | font-family:"iconfont" !important; 12 | font-size:16px; 13 | font-style:normal; 14 | -webkit-font-smoothing: antialiased; 15 | -webkit-text-stroke-width: 0.2px; 16 | -moz-osx-font-smoothing: grayscale; 17 | } 18 | .icon-favorfill:before { content: "\e600"; } 19 | .icon-loading:before { content: "\e602"; } 20 | .icon-phone:before { content: "\e603"; } 21 | .icon-roundrightfill:before { content: "\e604"; } 22 | .icon-search:before { content: "\e606"; } 23 | .icon-warnfill:before { content: "\e60a"; } 24 | .icon-warn:before { content: "\e60b"; } 25 | .icon-camerafill:before { content: "\e60d"; } 26 | .icon-camera:before { content: "\e60e"; } 27 | .icon-myfill:before { content: "\e60f"; } 28 | .icon-my:before { content: "\e610"; } 29 | .icon-scan:before { content: "\e611"; } 30 | .icon-settings:before { content: "\e612"; } 31 | .icon-filter:before { content: "\e613"; } 32 | .icon-top:before { content: "\e652"; } 33 | .icon-pullup:before { content: "\e654"; } 34 | .icon-refresh:before { content: "\e655"; } 35 | .icon-moreandroid:before { content: "\e656"; } 36 | .icon-qrcode:before { content: "\e657"; } 37 | .icon-remind:before { content: "\e658"; } 38 | .icon-home:before { content: "\e659"; } 39 | .icon-homefill:before { content: "\e65a"; } 40 | .icon-addressbook:before { content: "\e65b"; } 41 | .icon-link:before { content: "\e65c"; } 42 | .icon-lock:before { content: "\e65d"; } 43 | .icon-unlock:before { content: "\e65e"; } 44 | .icon-friendaddfill:before { content: "\e65f"; } 45 | .icon-friendadd:before { content: "\e660"; } 46 | .icon-friendfamous:before { content: "\e661"; } 47 | .icon-friend:before { content: "\e662"; } 48 | .icon-friendfavor:before { content: "\e664"; } 49 | .icon-sort:before { content: "\e665"; } 50 | .icon-down:before { content: "\e666"; } 51 | .icon-female:before { content: "\e66b"; } 52 | .icon-keyboard:before { content: "\e66c"; } 53 | .icon-male:before { content: "\e66d"; } 54 | .icon-newfill:before { content: "\e66e"; } 55 | .icon-new:before { content: "\e66f"; } 56 | .icon-pullleft:before { content: "\e670"; } 57 | .icon-pullright:before { content: "\e671"; } 58 | .icon-cameraadd:before { content: "\e674"; } 59 | .icon-friendfill:before { content: "\e675"; } 60 | .icon-picfill:before { content: "\e676"; } 61 | .icon-alignjustify:before { content: "\e60c"; } 62 | .icon-markfill:before { content: "\e677"; } 63 | .icon-mark:before { content: "\e678"; } 64 | .icon-album:before { content: "\e679"; } 65 | .icon-peoplefill:before { content: "\e67a"; } 66 | .icon-people:before { content: "\e67b"; } 67 | .icon-attentionfill:before { content: "\e67f"; } 68 | .icon-attention:before { content: "\e680"; } 69 | .icon-rounddown:before { content: "\e688"; } 70 | .icon-upload:before { content: "\e689"; } 71 | .icon-safe:before { content: "\e68c"; } 72 | .icon-shezhi:before { content: "\e614"; } 73 | .icon-danxuanfill:before { content: "\e615"; } 74 | .icon-danxuan:before { content: "\e616"; } 75 | .icon-fangxingweixuanzhong:before { content: "\e617"; } 76 | .icon-fangxingxuanzhongfill:before { content: "\e618"; } 77 | .icon-fangxingxuanzhong:before { content: "\e619"; } 78 | .icon-guanbi1:before { content: "\e61a"; } 79 | .icon-guanbi2fill:before { content: "\e61b"; } 80 | .icon-guanbi2:before { content: "\e61c"; } 81 | .icon-jiahao:before { content: "\e61d"; } 82 | .icon-jiahao1:before { content: "\e61e"; } 83 | .icon-jiahao2fill:before { content: "\e61f"; } 84 | .icon-jianhao:before { content: "\e620"; } 85 | .icon-tishifill:before { content: "\e621"; } 86 | .icon-tishi:before { content: "\e622"; } 87 | .icon-wenhaofill:before { content: "\e623"; } 88 | .icon-wenhao:before { content: "\e624"; } 89 | .icon-xuanze:before { content: "\e625"; } 90 | .icon-yuanxingweixuanzhong:before { content: "\e626"; } 91 | .icon-yuanxingxuanzhongfill:before { content: "\e627"; } 92 | .icon-yuanxingxuanzhong:before { content: "\e628"; } 93 | .icon-biaoxingfill:before { content: "\e629"; } 94 | .icon-biaoxing:before { content: "\e62a"; } 95 | .icon-chexiao:before { content: "\e62b"; } 96 | .icon-fankui:before { content: "\e62d"; } 97 | .icon-fenxiang:before { content: "\e62e"; } 98 | .icon-gengduo:before { content: "\e62f"; } 99 | .icon-gouwuchefill:before { content: "\e630"; } 100 | .icon-gouwuche:before { content: "\e631"; } 101 | .icon-liuyanfill:before { content: "\e632"; } 102 | .icon-liuyan:before { content: "\e633"; } 103 | .icon-pengyou:before { content: "\e635"; } 104 | .icon-saoma:before { content: "\e637"; } 105 | .icon-shaixuan:before { content: "\e638"; } 106 | .icon-shanchu:before { content: "\e639"; } 107 | .icon-shenfen:before { content: "\e63a"; } 108 | .icon-shizhongfill:before { content: "\e63b"; } 109 | .icon-shizhong:before { content: "\e63c"; } 110 | .icon-tongzhifill:before { content: "\e63e"; } 111 | .icon-tongzhi:before { content: "\e63f"; } 112 | .icon-xihuanfill:before { content: "\e640"; } 113 | .icon-xihuan:before { content: "\e641"; } 114 | .icon-xinxifill:before { content: "\e642"; } 115 | .icon-xinxi:before { content: "\e643"; } 116 | .icon-dingbu:before { content: "\e644"; } 117 | .icon-xiangshang1:before { content: "\e645"; } 118 | .icon-xiangshang2:before { content: "\e646"; } 119 | .icon-xiangshang3:before { content: "\e647"; } 120 | .icon-xiangxia1:before { content: "\e648"; } 121 | .icon-xiangxia2:before { content: "\e649"; } 122 | .icon-xiangxia3:before { content: "\e64a"; } 123 | .icon-xiangxia5:before { content: "\e64b"; } 124 | .icon-xiangyou1:before { content: "\e64c"; } 125 | .icon-xiangyou2:before { content: "\e64d"; } 126 | .icon-xiangyou3fill:before { content: "\e64e"; } 127 | .icon-xiangyou3:before { content: "\e64f"; } 128 | .icon-xiangzuo1:before { content: "\e650"; } 129 | .icon-xiangzuo2:before { content: "\e651"; } 130 | .icon-biaoxing1:before { content: "\e601"; } 131 | -------------------------------------------------------------------------------- /font/.svn/text-base/iconfont.eot.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/font/.svn/text-base/iconfont.eot.svn-base -------------------------------------------------------------------------------- /font/.svn/text-base/iconfont.ttf.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/font/.svn/text-base/iconfont.ttf.svn-base -------------------------------------------------------------------------------- /font/.svn/text-base/iconfont.woff.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/font/.svn/text-base/iconfont.woff.svn-base -------------------------------------------------------------------------------- /font/demo.css: -------------------------------------------------------------------------------- 1 | *{margin: 0;padding: 0;list-style: none;} 2 | /* 3 | KISSY CSS Reset 4 | 理念:1. reset 的目的不是清除浏览器的默认样式,这仅是部分工作。清除和重置是紧密不可分的。 5 | 2. reset 的目的不是让默认样式在所有浏览器下一致,而是减少默认样式有可能带来的问题。 6 | 3. reset 期望提供一套普适通用的基础样式。但没有银弹,推荐根据具体需求,裁剪和修改后再使用。 7 | 特色:1. 适应中文;2. 基于最新主流浏览器。 8 | 维护:玉伯, 正淳 9 | */ 10 | 11 | /** 清除内外边距 **/ 12 | body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */ 13 | dl, dt, dd, ul, ol, li, /* list elements 列表元素 */ 14 | pre, /* text formatting elements 文本格式元素 */ 15 | form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */ 16 | th, td /* table elements 表格元素 */ { 17 | margin: 0; 18 | padding: 0; 19 | } 20 | 21 | /** 设置默认字体 **/ 22 | body, 23 | button, input, select, textarea /* for ie */ { 24 | font: 12px/1.5 tahoma, arial, \5b8b\4f53, sans-serif; 25 | } 26 | h1, h2, h3, h4, h5, h6 { font-size: 100%; } 27 | address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */ 28 | code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */ 29 | small { font-size: 12px; } /* 小于 12px 的中文很难阅读,让 small 正常化 */ 30 | 31 | /** 重置列表元素 **/ 32 | ul, ol { list-style: none; } 33 | 34 | /** 重置文本格式元素 **/ 35 | a { text-decoration: none; } 36 | a:hover { text-decoration: underline; } 37 | 38 | 39 | /** 重置表单元素 **/ 40 | legend { color: #000; } /* for ie6 */ 41 | fieldset, img { border: 0; } /* img 搭车:让链接里的 img 无边框 */ 42 | button, input, select, textarea { font-size: 100%; } /* 使得表单元素在 ie 下能继承字体大小 */ 43 | /* 注:optgroup 无法扶正 */ 44 | 45 | /** 重置表格元素 **/ 46 | table { border-collapse: collapse; border-spacing: 0; } 47 | 48 | /* 清除浮动 */ 49 | .ks-clear:after, .clear:after { 50 | content: '\20'; 51 | display: block; 52 | height: 0; 53 | clear: both; 54 | } 55 | .ks-clear, .clear { 56 | *zoom: 1; 57 | } 58 | 59 | .main {padding: 30px 100px;} 60 | .main h1{font-size:36px; color:#333; text-align:left;margin-bottom:30px; border-bottom: 1px solid #eee;} 61 | 62 | .helps{margin-top:40px;} 63 | .helps pre{ 64 | padding:20px; 65 | margin:10px 0; 66 | border:solid 1px #e7e1cd; 67 | background-color: #fffdef; 68 | overflow: auto; 69 | } 70 | 71 | .icon_lists li{ 72 | float:left; 73 | width: 100px; 74 | height:180px; 75 | text-align: center; 76 | } 77 | .icon_lists .icon{ 78 | font-size: 42px; 79 | line-height: 100px; 80 | margin: 10px 0; 81 | color:#333; 82 | -webkit-transition: font-size 0.25s ease-out 0s; 83 | -moz-transition: font-size 0.25s ease-out 0s; 84 | transition: font-size 0.25s ease-out 0s; 85 | 86 | } 87 | .icon_lists .icon:hover{ 88 | font-size: 100px; 89 | } 90 | -------------------------------------------------------------------------------- /font/iconfont.css: -------------------------------------------------------------------------------- 1 | 2 | @font-face {font-family: "iconfont"; 3 | src: url('iconfont.eot?t=1461655152'); /* IE9*/ 4 | src: url('iconfont.eot?t=1461655152#iefix') format('embedded-opentype'), /* IE6-IE8 */ 5 | url('iconfont.woff?t=1461655152') format('woff'), /* chrome, firefox */ 6 | url('iconfont.ttf?t=1461655152') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ 7 | url('iconfont.svg?t=1461655152#iconfont') format('svg'); /* iOS 4.1- */ 8 | } 9 | 10 | .iconfont { 11 | font-family:"iconfont" !important; 12 | font-size:16px; 13 | font-style:normal; 14 | -webkit-font-smoothing: antialiased; 15 | -webkit-text-stroke-width: 0.2px; 16 | -moz-osx-font-smoothing: grayscale; 17 | } 18 | .icon-favorfill:before { content: "\e600"; } 19 | .icon-loading:before { content: "\e602"; } 20 | .icon-phone:before { content: "\e603"; } 21 | .icon-roundrightfill:before { content: "\e604"; } 22 | .icon-search:before { content: "\e606"; } 23 | .icon-warnfill:before { content: "\e60a"; } 24 | .icon-warn:before { content: "\e60b"; } 25 | .icon-camerafill:before { content: "\e60d"; } 26 | .icon-camera:before { content: "\e60e"; } 27 | .icon-myfill:before { content: "\e60f"; } 28 | .icon-my:before { content: "\e610"; } 29 | .icon-scan:before { content: "\e611"; } 30 | .icon-settings:before { content: "\e612"; } 31 | .icon-filter:before { content: "\e613"; } 32 | .icon-top:before { content: "\e652"; } 33 | .icon-pullup:before { content: "\e654"; } 34 | .icon-refresh:before { content: "\e655"; } 35 | .icon-moreandroid:before { content: "\e656"; } 36 | .icon-qrcode:before { content: "\e657"; } 37 | .icon-remind:before { content: "\e658"; } 38 | .icon-home:before { content: "\e659"; } 39 | .icon-homefill:before { content: "\e65a"; } 40 | .icon-addressbook:before { content: "\e65b"; } 41 | .icon-link:before { content: "\e65c"; } 42 | .icon-lock:before { content: "\e65d"; } 43 | .icon-unlock:before { content: "\e65e"; } 44 | .icon-friendaddfill:before { content: "\e65f"; } 45 | .icon-friendadd:before { content: "\e660"; } 46 | .icon-friendfamous:before { content: "\e661"; } 47 | .icon-friend:before { content: "\e662"; } 48 | .icon-friendfavor:before { content: "\e664"; } 49 | .icon-sort:before { content: "\e665"; } 50 | .icon-down:before { content: "\e666"; } 51 | .icon-female:before { content: "\e66b"; } 52 | .icon-keyboard:before { content: "\e66c"; } 53 | .icon-male:before { content: "\e66d"; } 54 | .icon-newfill:before { content: "\e66e"; } 55 | .icon-new:before { content: "\e66f"; } 56 | .icon-pullleft:before { content: "\e670"; } 57 | .icon-pullright:before { content: "\e671"; } 58 | .icon-cameraadd:before { content: "\e674"; } 59 | .icon-friendfill:before { content: "\e675"; } 60 | .icon-picfill:before { content: "\e676"; } 61 | .icon-alignjustify:before { content: "\e60c"; } 62 | .icon-markfill:before { content: "\e677"; } 63 | .icon-mark:before { content: "\e678"; } 64 | .icon-album:before { content: "\e679"; } 65 | .icon-peoplefill:before { content: "\e67a"; } 66 | .icon-people:before { content: "\e67b"; } 67 | .icon-attentionfill:before { content: "\e67f"; } 68 | .icon-attention:before { content: "\e680"; } 69 | .icon-rounddown:before { content: "\e688"; } 70 | .icon-upload:before { content: "\e689"; } 71 | .icon-safe:before { content: "\e68c"; } 72 | .icon-shezhi:before { content: "\e614"; } 73 | .icon-danxuanfill:before { content: "\e615"; } 74 | .icon-danxuan:before { content: "\e616"; } 75 | .icon-fangxingweixuanzhong:before { content: "\e617"; } 76 | .icon-fangxingxuanzhongfill:before { content: "\e618"; } 77 | .icon-fangxingxuanzhong:before { content: "\e619"; } 78 | .icon-guanbi1:before { content: "\e61a"; } 79 | .icon-guanbi2fill:before { content: "\e61b"; } 80 | .icon-guanbi2:before { content: "\e61c"; } 81 | .icon-jiahao:before { content: "\e61d"; } 82 | .icon-jiahao1:before { content: "\e61e"; } 83 | .icon-jiahao2fill:before { content: "\e61f"; } 84 | .icon-jianhao:before { content: "\e620"; } 85 | .icon-tishifill:before { content: "\e621"; } 86 | .icon-tishi:before { content: "\e622"; } 87 | .icon-wenhaofill:before { content: "\e623"; } 88 | .icon-wenhao:before { content: "\e624"; } 89 | .icon-xuanze:before { content: "\e625"; } 90 | .icon-yuanxingweixuanzhong:before { content: "\e626"; } 91 | .icon-yuanxingxuanzhongfill:before { content: "\e627"; } 92 | .icon-yuanxingxuanzhong:before { content: "\e628"; } 93 | .icon-biaoxingfill:before { content: "\e629"; } 94 | .icon-biaoxing:before { content: "\e62a"; } 95 | .icon-chexiao:before { content: "\e62b"; } 96 | .icon-fankui:before { content: "\e62d"; } 97 | .icon-fenxiang:before { content: "\e62e"; } 98 | .icon-gengduo:before { content: "\e62f"; } 99 | .icon-gouwuchefill:before { content: "\e630"; } 100 | .icon-gouwuche:before { content: "\e631"; } 101 | .icon-liuyanfill:before { content: "\e632"; } 102 | .icon-liuyan:before { content: "\e633"; } 103 | .icon-pengyou:before { content: "\e635"; } 104 | .icon-saoma:before { content: "\e637"; } 105 | .icon-shaixuan:before { content: "\e638"; } 106 | .icon-shanchu:before { content: "\e639"; } 107 | .icon-shenfen:before { content: "\e63a"; } 108 | .icon-shizhongfill:before { content: "\e63b"; } 109 | .icon-shizhong:before { content: "\e63c"; } 110 | .icon-tongzhifill:before { content: "\e63e"; } 111 | .icon-tongzhi:before { content: "\e63f"; } 112 | .icon-xihuanfill:before { content: "\e640"; } 113 | .icon-xihuan:before { content: "\e641"; } 114 | .icon-xinxifill:before { content: "\e642"; } 115 | .icon-xinxi:before { content: "\e643"; } 116 | .icon-dingbu:before { content: "\e644"; } 117 | .icon-xiangshang1:before { content: "\e645"; } 118 | .icon-xiangshang2:before { content: "\e646"; } 119 | .icon-xiangshang3:before { content: "\e647"; } 120 | .icon-xiangxia1:before { content: "\e648"; } 121 | .icon-xiangxia2:before { content: "\e649"; } 122 | .icon-xiangxia3:before { content: "\e64a"; } 123 | .icon-xiangxia5:before { content: "\e64b"; } 124 | .icon-xiangyou1:before { content: "\e64c"; } 125 | .icon-xiangyou2:before { content: "\e64d"; } 126 | .icon-xiangyou3fill:before { content: "\e64e"; } 127 | .icon-xiangyou3:before { content: "\e64f"; } 128 | .icon-xiangzuo1:before { content: "\e650"; } 129 | .icon-xiangzuo2:before { content: "\e651"; } 130 | .icon-biaoxing1:before { content: "\e601"; } 131 | -------------------------------------------------------------------------------- /font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/font/iconfont.eot -------------------------------------------------------------------------------- /font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/font/iconfont.ttf -------------------------------------------------------------------------------- /font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/font/iconfont.woff -------------------------------------------------------------------------------- /form/search.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 搜索 9 | 10 | 11 | 12 | 13 | 14 | 15 | 36 | 148 | 149 | 150 |
151 | 173 |
174 |
175 |
176 |
177 |
搜索历史
178 |
179 |
    180 |
  • 181 | 182 | OA在线办公系统 183 | 184 |
  • 185 |
  • 186 | 融合通信 187 |
  • 188 |
189 |
190 |
191 |
192 | 删除历史记录 193 |
194 |
195 |
196 |
197 | 198 |
199 |
200 |
201 | 搜索热词 202 |
203 |
204 |
205 |
206 | OA办公 207 |
208 |
209 | 医疗医生 210 |
211 |
212 | 融合通信 213 |
214 |
215 | 通信办公系统 216 |
217 |
218 | 移动办公 219 |
220 |
221 | 优惠 222 |
223 |
224 | OA办公 225 |
226 |
227 | 医疗医生 228 |
229 |
230 | 融合通信 231 |
232 |
233 | 通信办公系统 234 |
235 |
236 | 移动办公 237 |
238 |
239 | 优惠 240 |
241 |
242 | OA办公 243 |
244 |
245 | 医疗医生 246 |
247 |
248 | 融合通信 249 |
250 |
251 |
252 |
253 |
254 |
255 |
    256 |
  • 257 | 258 |
    259 | 消息 260 |
    261 |
  • 262 |
  • 263 | 264 |
    265 | 通信录 266 |
    267 |
  • 268 |
  • 269 | 270 |
    271 | 发现 272 |
    273 |
  • 274 |
  • 275 | 276 |
    277 | 我的 278 |
    279 |
  • 280 |
281 |
282 |
283 | 284 | -------------------------------------------------------------------------------- /form/search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/form/search.jpg -------------------------------------------------------------------------------- /form/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/form/search.png -------------------------------------------------------------------------------- /images/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 50 4 | /svn/EID/!svn/ver/2246/01.Projects/BUI/demo/images 5 | END 6 | vcode.jpg 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 60 10 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/images/vcode.jpg 11 | END 12 | date.png 13 | K 25 14 | svn:wc:ra_dav:version-url 15 | V 59 16 | /svn/EID/!svn/ver/2246/01.Projects/BUI/demo/images/date.png 17 | END 18 | face.png 19 | K 25 20 | svn:wc:ra_dav:version-url 21 | V 59 22 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/images/face.png 23 | END 24 | loading.gif 25 | K 25 26 | svn:wc:ra_dav:version-url 27 | V 62 28 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/images/loading.gif 29 | END 30 | applogo.png 31 | K 25 32 | svn:wc:ra_dav:version-url 33 | V 62 34 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/images/applogo.png 35 | END 36 | slideshow.png 37 | K 25 38 | svn:wc:ra_dav:version-url 39 | V 64 40 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/images/slideshow.png 41 | END 42 | pic.jpg 43 | K 25 44 | svn:wc:ra_dav:version-url 45 | V 58 46 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/images/pic.jpg 47 | END 48 | -------------------------------------------------------------------------------- /images/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 2323 5 | http://wangwsh@eid.bingosoft.net:81/svn/EID/01.Projects/BUI/demo/images 6 | http://wangwsh@eid.bingosoft.net:81/svn/EID 7 | 8 | 9 | 10 | 2017-03-31T06:34:24.357670Z 11 | 2246 12 | wangwsh 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | eee847a2-21fd-0d49-b3e5-7d3b911f45d9 28 | 29 | vcode.jpg 30 | file 31 | 32 | 33 | 34 | 35 | 2016-12-27T08:09:56.000000Z 36 | 785e6badfde02d6b7c565e18cf56cca1 37 | 2016-06-30T09:03:39.537305Z 38 | 1641 39 | wangwsh 40 | has-props 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 2775 62 | 63 | date.png 64 | file 65 | 66 | 67 | 68 | 69 | 2017-03-28T09:18:03.000000Z 70 | ea9884effc134485234e1b160e599708 71 | 2017-03-31T06:34:24.357670Z 72 | 2246 73 | wangwsh 74 | has-props 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 155143 96 | 97 | face.png 98 | file 99 | 100 | 101 | 102 | 103 | 2016-12-27T08:09:56.000000Z 104 | 82e1ab3f3435b00d65ea15a16b6ebc2f 105 | 2016-06-30T09:03:39.537305Z 106 | 1641 107 | wangwsh 108 | has-props 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 43168 130 | 131 | loading.gif 132 | file 133 | 134 | 135 | 136 | 137 | 2016-12-27T08:09:56.000000Z 138 | eb0d4350399324d3351b6f8d2bcfa26b 139 | 2016-05-11T13:51:00.540403Z 140 | 1598 141 | wangwsh 142 | has-props 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 22260 164 | 165 | applogo.png 166 | file 167 | 168 | 169 | 170 | 171 | 2016-12-27T08:09:56.000000Z 172 | b79525e1fe769e3044fe11faaf2cadde 173 | 2016-05-23T14:54:52.219101Z 174 | 1611 175 | wangwsh 176 | has-props 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 10458 198 | 199 | slideshow.png 200 | file 201 | 202 | 203 | 204 | 205 | 2017-03-20T10:33:59.000000Z 206 | ddf04b488e9b1559c78a9fbe7c95da22 207 | 2016-05-11T13:51:00.540403Z 208 | 1598 209 | wangwsh 210 | has-props 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 223614 232 | 233 | pic.jpg 234 | file 235 | 236 | 237 | 238 | 239 | 2017-01-18T06:40:40.000000Z 240 | 7ae13662dd1775bf140f5fe98a20960d 241 | 2016-05-11T13:51:00.540403Z 242 | 1598 243 | wangwsh 244 | has-props 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 23428 266 | 267 | -------------------------------------------------------------------------------- /images/.svn/prop-base/applogo.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /images/.svn/prop-base/date.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /images/.svn/prop-base/face.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /images/.svn/prop-base/loading.gif.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | K 13 6 | svn:mime-type 7 | V 24 8 | application/octet-stream 9 | END 10 | -------------------------------------------------------------------------------- /images/.svn/prop-base/pic.jpg.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /images/.svn/prop-base/slideshow.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /images/.svn/prop-base/vcode.jpg.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /images/.svn/text-base/applogo.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/images/.svn/text-base/applogo.png.svn-base -------------------------------------------------------------------------------- /images/.svn/text-base/date.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/images/.svn/text-base/date.png.svn-base -------------------------------------------------------------------------------- /images/.svn/text-base/face.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/images/.svn/text-base/face.png.svn-base -------------------------------------------------------------------------------- /images/.svn/text-base/loading.gif.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/images/.svn/text-base/loading.gif.svn-base -------------------------------------------------------------------------------- /images/.svn/text-base/pic.jpg.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/images/.svn/text-base/pic.jpg.svn-base -------------------------------------------------------------------------------- /images/.svn/text-base/slideshow.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/images/.svn/text-base/slideshow.png.svn-base -------------------------------------------------------------------------------- /images/.svn/text-base/vcode.jpg.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/images/.svn/text-base/vcode.jpg.svn-base -------------------------------------------------------------------------------- /images/applogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/images/applogo.png -------------------------------------------------------------------------------- /index/images/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 60 4 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/ui_scence/images 5 | END 6 | Personal1-bg-personal1.png 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 87 10 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/ui_scence/images/Personal1-bg-personal1.png 11 | END 12 | index2-img.png 13 | K 25 14 | svn:wc:ra_dav:version-url 15 | V 75 16 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/ui_scence/images/index2-img.png 17 | END 18 | index3-img.png 19 | K 25 20 | svn:wc:ra_dav:version-url 21 | V 75 22 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/ui_scence/images/index3-img.png 23 | END 24 | index4-img.png 25 | K 25 26 | svn:wc:ra_dav:version-url 27 | V 75 28 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/ui_scence/images/index4-img.png 29 | END 30 | Personal3-img-contact.png 31 | K 25 32 | svn:wc:ra_dav:version-url 33 | V 86 34 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/ui_scence/images/Personal3-img-contact.png 35 | END 36 | Personal1-img-face.png 37 | K 25 38 | svn:wc:ra_dav:version-url 39 | V 83 40 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/ui_scence/images/Personal1-img-face.png 41 | END 42 | -------------------------------------------------------------------------------- /index/images/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 2323 5 | http://wangwsh@eid.bingosoft.net:81/svn/EID/01.Projects/BUI/demo/ui_scence/images 6 | http://wangwsh@eid.bingosoft.net:81/svn/EID 7 | 8 | 9 | 10 | 2016-05-11T13:51:00.540403Z 11 | 1598 12 | wangwsh 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | eee847a2-21fd-0d49-b3e5-7d3b911f45d9 28 | 29 | Personal1-bg-personal1.png 30 | file 31 | 32 | 33 | 34 | 35 | 2016-12-29T05:40:57.000000Z 36 | 5fd3fa6be377ff36f4c90388f9794b78 37 | 2016-05-11T13:51:00.540403Z 38 | 1598 39 | wangwsh 40 | has-props 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 93660 62 | 63 | index2-img.png 64 | file 65 | 66 | 67 | 68 | 69 | 2016-12-29T05:40:57.000000Z 70 | 856312bee2ef9f35521988c3ea2a5e8c 71 | 2016-05-11T13:51:00.540403Z 72 | 1598 73 | wangwsh 74 | has-props 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 82755 96 | 97 | index3-img.png 98 | file 99 | 100 | 101 | 102 | 103 | 2016-12-29T05:40:57.000000Z 104 | dc66692cd65445377a75ef5834b12b92 105 | 2016-05-11T13:51:00.540403Z 106 | 1598 107 | wangwsh 108 | has-props 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 109097 130 | 131 | index4-img.png 132 | file 133 | 134 | 135 | 136 | 137 | 2016-12-29T05:40:57.000000Z 138 | 8a2cab073096bafe79b5ac36bb98296f 139 | 2016-05-11T13:51:00.540403Z 140 | 1598 141 | wangwsh 142 | has-props 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 8223 164 | 165 | Personal3-img-contact.png 166 | file 167 | 168 | 169 | 170 | 171 | 2016-12-29T05:40:57.000000Z 172 | eab4e01d927585dcad32d9d8ff96fca4 173 | 2016-05-11T13:51:00.540403Z 174 | 1598 175 | wangwsh 176 | has-props 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 20741 198 | 199 | Personal1-img-face.png 200 | file 201 | 202 | 203 | 204 | 205 | 2016-12-29T05:40:57.000000Z 206 | 709877f2fb5c3d85274085aaafbef034 207 | 2016-05-11T13:51:00.540403Z 208 | 1598 209 | wangwsh 210 | has-props 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 28047 232 | 233 | -------------------------------------------------------------------------------- /index/images/.svn/prop-base/Personal1-bg-personal1.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /index/images/.svn/prop-base/Personal1-img-face.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /index/images/.svn/prop-base/Personal3-img-contact.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /index/images/.svn/prop-base/index2-img.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /index/images/.svn/prop-base/index3-img.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /index/images/.svn/prop-base/index4-img.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /index/images/.svn/text-base/Personal1-bg-personal1.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/.svn/text-base/Personal1-bg-personal1.png.svn-base -------------------------------------------------------------------------------- /index/images/.svn/text-base/Personal1-img-face.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/.svn/text-base/Personal1-img-face.png.svn-base -------------------------------------------------------------------------------- /index/images/.svn/text-base/Personal3-img-contact.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/.svn/text-base/Personal3-img-contact.png.svn-base -------------------------------------------------------------------------------- /index/images/.svn/text-base/index2-img.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/.svn/text-base/index2-img.png.svn-base -------------------------------------------------------------------------------- /index/images/.svn/text-base/index3-img.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/.svn/text-base/index3-img.png.svn-base -------------------------------------------------------------------------------- /index/images/.svn/text-base/index4-img.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/.svn/text-base/index4-img.png.svn-base -------------------------------------------------------------------------------- /index/images/Personal3-img-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/Personal3-img-contact.png -------------------------------------------------------------------------------- /index/images/index2-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/index2-img.png -------------------------------------------------------------------------------- /index/images/index3-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/index3-img.png -------------------------------------------------------------------------------- /index/images/index4-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/index4-img.png -------------------------------------------------------------------------------- /index/images/round/round-inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/round/round-inner.png -------------------------------------------------------------------------------- /index/images/round/round-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/round/round-light.png -------------------------------------------------------------------------------- /index/images/round/round-light2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/round/round-light2.png -------------------------------------------------------------------------------- /index/images/round/round-outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/round/round-outer.png -------------------------------------------------------------------------------- /index/images/round/round-scan-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/round/round-scan-light.png -------------------------------------------------------------------------------- /index/images/round/round-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/round/round-scan.png -------------------------------------------------------------------------------- /index/images/round/round.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/images/round/round.psd -------------------------------------------------------------------------------- /index/index1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 首页导航 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 103 | 185 | 186 | 187 | 188 |
189 |
190 |
191 | 192 |
193 |
首页
194 |
195 | 196 |
197 |
198 |
199 | 200 |
201 |
202 |
203 | 204 |
205 |
206 |
    207 |
  • 208 |
    209 |
  • 210 |
  • 211 |
    212 |
  • 213 |
  • 214 |
    215 |
  • 216 |
217 |
218 |
219 | 220 | 221 |
    222 |
  • 快捷入口
  • 223 |
  • 快捷入口
  • 224 |
  • 快捷入口
  • 225 |
  • 快捷入口
  • 226 |
227 | 228 |
    229 | 241 |
242 |
243 |
244 |
245 |
246 |
247 | 248 | 254 |
255 | 256 |
257 | 258 | 259 | 260 | -------------------------------------------------------------------------------- /index/index1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/index1.jpg -------------------------------------------------------------------------------- /index/index1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/index1.png -------------------------------------------------------------------------------- /index/index2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/index2.jpg -------------------------------------------------------------------------------- /index/index2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/index2.png -------------------------------------------------------------------------------- /index/index3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 首页导航 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 165 | 184 | 185 | 186 | 187 |
188 |
189 |
190 |
191 | 192 |
193 |
客服在线支持平台
194 |
195 |
196 |
197 |
198 | 199 |
200 | 201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 | 213 | 214 |
    215 |
  • 快捷入口
  • 216 |
  • 快捷入口
  • 217 |
  • 快捷入口
  • 218 |
  • 快捷入口
  • 219 |
  • 快捷入口
  • 220 |
  • 快捷入口
  • 221 |
222 | 223 |
224 | 225 |
226 | 227 | 233 |
234 | 235 |
236 | 237 | 238 | 239 | -------------------------------------------------------------------------------- /index/index3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/index3.jpg -------------------------------------------------------------------------------- /index/index3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/index3.png -------------------------------------------------------------------------------- /index/index4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 首页导航 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 212 | 213 | 236 | 237 | 238 | 239 |
240 |
241 |
242 |
243 | 244 |
245 |
消息
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 | 255 |
256 |

昨日完成82%

257 |
258 |

今天完成

259 |

85%

260 |
261 |
262 | 263 |
    264 |
  • 265 |
    266 |

    完成数

    267 |

    今日/昨日

    268 |
    269 |
    270 | 689 271 | / 272 | 632 273 |
    274 |
  • 275 |
  • 276 |
    277 |

    完成数

    278 |

    今日/昨日

    279 |
    280 |
    281 | 689 282 | / 283 | 632 284 |
    285 |
  • 286 |
287 |
288 | 289 | 290 |
    291 |
  • 292 |
    293 |
    294 |

    8

    295 |

    待审批

    296 |
    297 |
  • 298 |
  • 299 |
    300 |
    301 |

    1

    302 |

    待响应

    303 |
    304 |
  • 305 |
  • 306 |
    307 |
    308 |

    20

    309 |

    到期

    310 |
    311 |
  • 312 |
313 | 314 | 315 | 316 | 317 |
    318 |
  • 319 |
    320 |
    321 |

    大家来报名周四约跑活动吧。

    322 |

    323 | 何健彬 324 | 325 | 326 |

    327 |
    328 | 329 |
  • 330 |
  • 331 |
    332 |
    333 |

    关于2015年第一季度工作问卷调查!

    334 |

    335 | 何健彬 336 | 337 | 338 |

    339 |
    340 | 341 |
  • 342 |
  • 343 |
    344 |
    345 |

    在线报名需求采集!

    346 |

    347 | 何健彬 348 | 349 | 350 |

    351 |
    352 | 353 |
  • 354 |
  • 355 |
    356 |
    357 |

    大家来报名周四约跑活动吧。

    358 |

    359 | 何健彬 360 | 361 | 362 |

    363 |
    364 | 365 |
  • 366 |
  • 367 |
    368 |
    369 |

    关于2015年第一季度工作问卷调查!

    370 |

    371 | 何健彬 372 | 373 | 374 |

    375 |
    376 | 377 |
  • 378 |
  • 379 |
    380 |
    381 |

    在线报名需求采集!

    382 |

    383 | 何健彬 384 | 385 | 386 |

    387 |
    388 | 389 |
  • 390 |
391 |
392 | 393 |
394 | 395 | 401 |
402 |
403 | 404 | 405 | 406 | -------------------------------------------------------------------------------- /index/index4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/index4.jpg -------------------------------------------------------------------------------- /index/index4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/index/index4.png -------------------------------------------------------------------------------- /js/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 46 4 | /svn/EID/!svn/ver/2306/01.Projects/BUI/demo/js 5 | END 6 | cordova.js 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 57 10 | /svn/EID/!svn/ver/1776/01.Projects/BUI/demo/js/cordova.js 11 | END 12 | bui.js 13 | K 25 14 | svn:wc:ra_dav:version-url 15 | V 53 16 | /svn/EID/!svn/ver/2306/01.Projects/BUI/demo/js/bui.js 17 | END 18 | bingotouch.js 19 | K 25 20 | svn:wc:ra_dav:version-url 21 | V 60 22 | /svn/EID/!svn/ver/2306/01.Projects/BUI/demo/js/bingotouch.js 23 | END 24 | zepto.js 25 | K 25 26 | svn:wc:ra_dav:version-url 27 | V 55 28 | /svn/EID/!svn/ver/2234/01.Projects/BUI/demo/js/zepto.js 29 | END 30 | -------------------------------------------------------------------------------- /js/.svn/dir-prop-base: -------------------------------------------------------------------------------- 1 | K 10 2 | svn:ignore 3 | V 5 4 | task 5 | 6 | END 7 | -------------------------------------------------------------------------------- /js/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 2323 5 | http://wangwsh@eid.bingosoft.net:81/svn/EID/01.Projects/BUI/demo/js 6 | http://wangwsh@eid.bingosoft.net:81/svn/EID 7 | 8 | 9 | 10 | 2017-04-27T02:45:07.593439Z 11 | 2306 12 | wangwsh 13 | has-props 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | eee847a2-21fd-0d49-b3e5-7d3b911f45d9 28 | 29 | app 30 | dir 31 | 32 | plugins 33 | dir 34 | 35 | cordova.js 36 | file 37 | 38 | 39 | 40 | 41 | 2016-12-27T08:09:50.000000Z 42 | 334e8b833b4343dd42ab41a925e91772 43 | 2016-12-29T06:29:25.407121Z 44 | 1776 45 | wangwsh 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 199343 68 | 69 | bui.js 70 | file 71 | 72 | 73 | 74 | 75 | 2017-04-27T02:50:49.000000Z 76 | 1e24ae9ec067b9953150c048addec960 77 | 2017-04-27T02:45:07.593439Z 78 | 2306 79 | wangwsh 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 125968 102 | 103 | bingotouch.js 104 | file 105 | 106 | 107 | 108 | 109 | 2017-04-24T02:20:04.000000Z 110 | 9785cb6aef9126a9c69277871ad58030 111 | 2017-04-27T02:45:07.593439Z 112 | 2306 113 | wangwsh 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 48731 136 | 137 | zepto.js 138 | file 139 | 140 | 141 | 142 | 143 | 2017-01-23T07:58:56.000000Z 144 | aedc3f8eacc1297b9caf3e53a382bb5d 145 | 2017-03-20T10:43:05.959352Z 146 | 2234 147 | wangwsh 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 85340 170 | 171 | -------------------------------------------------------------------------------- /js/app/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 50 4 | /svn/EID/!svn/ver/2234/01.Projects/BUI/demo/js/app 5 | END 6 | _config.js 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 61 10 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/js/app/_config.js 11 | END 12 | -------------------------------------------------------------------------------- /js/app/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 2323 5 | http://wangwsh@eid.bingosoft.net:81/svn/EID/01.Projects/BUI/demo/js/app 6 | http://wangwsh@eid.bingosoft.net:81/svn/EID 7 | 8 | 9 | 10 | 2017-03-20T10:43:05.959352Z 11 | 2234 12 | wangwsh 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | eee847a2-21fd-0d49-b3e5-7d3b911f45d9 28 | 29 | _config.js 30 | file 31 | 32 | 33 | 34 | 35 | 2017-01-05T14:03:37.000000Z 36 | bc995cdf26375da9e4654f35255ef27b 37 | 2016-11-05T11:21:20.289062Z 38 | 1708 39 | wangwsh 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 334 62 | 63 | -------------------------------------------------------------------------------- /js/app/.svn/text-base/_config.js.svn-base: -------------------------------------------------------------------------------- 1 | 2 | // bui.debug 为true时, 如果拿不到数据,请确认是否已经开启跨域的谷歌; 3 | // bui.debug 为false, 会使用原生方法请求,请检查页面有没有引入 Cordova.js 及 bingotouch.js; 4 | bui.debug = true; 5 | 6 | // 网站配置 7 | var sitePath = "http://eid.bingosoft.net:82", 8 | siteDir = sitePath + "/bui/demo/json/"; 9 | -------------------------------------------------------------------------------- /js/app/_config.js: -------------------------------------------------------------------------------- 1 | 2 | // bui.isWebapp 为true时, 如果拿不到数据,请确认是否已经开启跨域的谷歌; 3 | // bui.isWebapp 为false, 会使用原生方法请求,请检查页面有没有引入 Cordova.js 及 bingotouch.js; 4 | bui.isWebapp = true; 5 | 6 | // 网站配置 7 | var sitePath = "http://www.easybui.com", 8 | siteDir = sitePath + "/demo/json/"; 9 | -------------------------------------------------------------------------------- /js/plugins/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 54 4 | /svn/EID/!svn/ver/1791/01.Projects/BUI/demo/js/plugins 5 | END 6 | vue.min.js 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 65 10 | /svn/EID/!svn/ver/1791/01.Projects/BUI/demo/js/plugins/vue.min.js 11 | END 12 | fastclick.js 13 | K 25 14 | svn:wc:ra_dav:version-url 15 | V 67 16 | /svn/EID/!svn/ver/1776/01.Projects/BUI/demo/js/plugins/fastclick.js 17 | END 18 | -------------------------------------------------------------------------------- /js/plugins/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 2323 5 | http://wangwsh@eid.bingosoft.net:81/svn/EID/01.Projects/BUI/demo/js/plugins 6 | http://wangwsh@eid.bingosoft.net:81/svn/EID 7 | 8 | 9 | 10 | 2017-01-05T14:32:03.909405Z 11 | 1791 12 | wangwsh 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | eee847a2-21fd-0d49-b3e5-7d3b911f45d9 28 | 29 | vue.min.js 30 | file 31 | 32 | 33 | 34 | 35 | 2016-12-25T18:29:31.000000Z 36 | 7a1e2a9fcf8639f0c545fed6621a484c 37 | 2017-01-05T14:32:03.909405Z 38 | 1791 39 | wangwsh 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 71722 62 | 63 | fastclick.js 64 | file 65 | 66 | 67 | 68 | 69 | 2016-12-27T08:09:50.000000Z 70 | 6e9d3b0da74f2a4a7042b494cdaa7c2e 71 | 2016-12-29T06:29:25.407121Z 72 | 1776 73 | wangwsh 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 25965 96 | 97 | -------------------------------------------------------------------------------- /list/schedule.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 日程 9 | 10 | 11 | 151 | 152 | 153 | 154 | 155 | 195 | 196 | 197 |
198 |
199 | 204 |
205 | 选择日期 206 |
207 |
208 | 209 | 210 | 211 |
212 |
213 |
214 |
215 |
216 | 2015.3.22 217 | 二月初四 218 | 219 |
220 |
221 | 222 | 223 | 224 |
225 |
226 |
227 |
228 | 229 | 230 | 22 231 | 232 |
233 |
234 | 235 | 236 | 23 237 | 238 |
239 |
240 | 241 | 242 | 24 243 | 244 |
245 |
246 | 247 | 248 | 25 249 | 250 |
251 |
252 | 253 | 254 | 26 255 | 256 |
257 |
258 | 259 | 260 | 27 261 | 262 |
263 |
264 | 265 | 266 | 28 267 | 268 |
269 |
270 |
    271 |
  • 272 |
    273 | 9:00 274 |
    275 |
    276 |

    277 | @work开发动员大会 278 |

    279 |

    280 | 13:30 - 16:30 281 |

    282 |
    283 |
    284 | 会 285 |
    286 |
  • 287 |
  • 288 |
    289 | 10:00 290 |
    291 |
    292 |

    293 | @work开发动员大会 294 |

    295 |

    296 | 13:30 - 16:30 297 |

    298 |
    299 |
    300 | 任 301 |
    302 |
  • 303 |
  • 304 |
    305 | 11:00 306 |
    307 |
    308 |

    309 | @work开发动员大会 310 |

    311 |

    312 | 13:30 - 16:30 313 |

    314 |
    315 |
    316 | 会 317 |
    318 |
  • 319 |
  • 320 |
    321 | 12:00 322 |
    323 |
    324 | 325 |
    326 |
  • 327 |
  • 328 |
    329 | 13:00 330 |
    331 |
    332 | 333 |
    334 |
  • 335 |
  • 336 |
    337 | 14:00 338 |
    339 |
    340 | 341 |
    342 |
  • 343 |
  • 344 |
    345 | 15:00 346 |
    347 |
    348 | 349 |
    350 |
  • 351 |
  • 352 |
    353 | 16:00 354 |
    355 |
    356 | 357 |
    358 |
  • 359 |
360 |
361 | 362 |
363 |
364 |
365 | 366 | 367 | -------------------------------------------------------------------------------- /list/schedule.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/list/schedule.jpg -------------------------------------------------------------------------------- /list/schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/list/schedule.png -------------------------------------------------------------------------------- /list/status.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 动态 9 | 10 | 11 | 157 | 158 | 159 | 160 | 161 | 201 | 202 | 203 |
204 |
205 |
206 | 207 |
208 |
209 | 210 |
211 |
212 | 动态 213 | 214 |
215 |
    216 |
  • 217 | 动态 218 |
  • 219 |
  • 220 | 新闻 221 |
  • 222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
    230 |
  • 231 |
    232 | 233 |
    234 |
    235 |

    风之神

    236 |

    分享投票结果:不对外开放

    237 |
    238 | 239 |
    240 |
    241 | 242 |
    243 |
    244 | 分享投票结果:不对外开放 245 | 分享投票结果:不对外开放 246 | 分享投票结果:不对 247 |
    248 |
    249 |
    250 | 251 |
    252 |
    253 | 2015-12-12 15:10 删除 254 |
    255 | 256 | 257 | 258 |
    259 |
    260 |
  • 261 |
  • 262 |
    263 | 264 |
    265 |
    266 |

    张珊珊

    267 |

    又阴天阴天

    268 |
    269 |
      270 |
    • 271 |
      272 | 273 |
      274 |
    • 275 |
    • 276 |
      277 | 278 |
      279 |
    • 280 |
    • 281 |
      282 | 283 |
      284 |
    • 285 |
    286 |
    287 |
    288 |
    289 | 2015-12-12 15:10 删除 290 |
    291 | 292 | 293 | 294 |
    295 |
    296 | 297 |
    298 | 299 |
    300 | 百芳芳 301 |
    302 |
    303 |
    304 |
      305 |
    • 306 | 王芳芳: 307 |
      308 | good good good goodgood good good goodgood good good good 309 |
      310 |
    • 311 |
    • 312 | 王芳芳: 313 |
      314 | good good good goodgood good good goodgood good good good 315 |
      316 |
    • 317 |
    318 |
    319 |
    320 |
    321 |
  • 322 |
  • 323 |
    324 | 325 |
    326 |
    327 |

    李师师

    328 |

    分享投票结果:不对外开放

    329 |
    330 |
  • 331 |
332 |
333 | 334 |
335 |
336 |
337 |
    338 |
  • 339 | 340 |
    341 | 消息 342 |
    343 |
  • 344 |
  • 345 | 346 |
    347 | 群组 348 |
    349 |
  • 350 |
  • 351 | 352 |
    353 | 联系人 354 |
    355 |
  • 356 |
  • 357 | 358 |
    359 | 动态 360 |
    361 |
  • 362 |
363 |
364 |
365 | 366 | -------------------------------------------------------------------------------- /list/status.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/list/status.jpg -------------------------------------------------------------------------------- /list/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/list/status.png -------------------------------------------------------------------------------- /login/login1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 通用的登录页面结构 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 80 | 208 | 209 | 210 | 211 | 255 | 256 | 257 | 258 | -------------------------------------------------------------------------------- /login/login1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/login/login1.jpg -------------------------------------------------------------------------------- /login/login1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/login/login1.png -------------------------------------------------------------------------------- /login/register.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Register 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 33 | 176 | 177 | 178 |
179 |
180 |
181 |
182 | 183 |
184 |
注册
185 |
186 |
187 |
188 |
189 |
190 |
请填写信息
191 |
    192 |
  • 193 | 194 |
    195 |
    196 | 197 |
    198 |
    199 |
  • 200 |
  • 201 | 202 |
    203 |
    204 |
    205 |
    206 | 207 |
    208 |
    209 |
    发送验证码
    210 |
    211 |
    212 |
  • 213 |
214 |
215 |
注册
216 |
217 |
218 | 219 |
220 | 221 | 222 | 223 | -------------------------------------------------------------------------------- /login/register.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/login/register.jpg -------------------------------------------------------------------------------- /login/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/login/register.png -------------------------------------------------------------------------------- /matual/alipay.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BUI 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 142 | 143 | 206 | 207 | 208 | 209 |
210 |
    211 |
  • 212 | 213 |
    扫一扫
    214 |
  • 215 |
  • 216 | 217 |
    付款
    218 |
  • 219 |
  • 220 | 221 |
    卡券
    222 |
  • 223 |
  • 224 | 225 |
    到位
    226 |
  • 227 |
228 |
229 |
230 | 231 | 232 |
233 |
234 | 244 |
245 | 263 |
264 |
265 |
266 |
    267 |
  • 268 | 269 |
    违法查询
    270 |
  • 271 |
  • 272 | 273 |
    审批查询
    274 |
  • 275 |
  • 276 | 277 |
    办证查询
    278 |
  • 279 |
  • 280 | 281 |
    身份核查
    282 |
  • 283 |
  • 284 | 285 |
    社区警务
    286 |
  • 287 |
  • 288 | 289 |
    网上返赃
    290 |
  • 291 |
  • 292 | 293 |
    公安要闻
    294 |
  • 295 |
  • 296 | 297 |
    全部
    298 |
  • 299 |
300 |
301 |
302 |
303 | 304 | 305 |
    306 | 307 |
  • fdsafda
  • 308 |
  • fdsafda
  • 309 |
  • fdsafda
  • 310 |
  • fdsafda
  • 311 |
  • fdsafda
  • 312 | 313 |
  • fdsafda
  • 314 |
  • fdsafda
  • 315 |
  • fdsafda
  • 316 |
  • fdsafda
  • 317 |
  • fdsafda
  • 318 | 319 |
  • fdsafda
  • 320 |
  • fdsafda
  • 321 |
  • fdsafda
  • 322 |
  • fdsafda
  • 323 |
  • fdsafda
  • 324 | 325 |
  • fdsafda
  • 326 |
  • fdsafda
  • 327 |
  • fdsafda
  • 328 |
  • fdsafda
  • 329 |
  • fdsafda
  • 330 | 331 |
  • fdsafda
  • 332 |
  • fdsafda
  • 333 |
  • fdsafda
  • 334 |
  • fdsafda
  • 335 |
  • fdsafda
  • 336 | 337 |
  • fdsafda
  • 338 |
  • fdsafda
  • 339 |
  • fdsafda
  • 340 |
  • fdsafda
  • 341 |
  • fdsafda
  • 342 | 343 |
  • fdsafda
  • 344 |
  • fdsafda
  • 345 |
  • fdsafda
  • 346 |
  • fdsafda
  • 347 |
  • fdsafda
  • 348 | 349 |
  • fdsafda
  • 350 |
  • fdsafda
  • 351 |
  • fdsafda
  • 352 |
  • fdsafda
  • 353 |
  • fdsafda
  • 354 | 355 |
  • fdsafda
  • 356 |
  • fdsafda
  • 357 |
  • fdsafda
  • 358 |
  • fdsafda
  • 359 |
  • fdsafda
  • 360 | 361 |
  • fdsafda
  • 362 |
  • fdsafda
  • 363 |
  • fdsafda
  • 364 |
  • fdsafda
  • 365 |
  • fdsafda
  • 366 | 367 |
  • fdsafda
  • 368 |
  • fdsafda
  • 369 |
  • fdsafda
  • 370 |
  • fdsafda
  • 371 |
  • fdsafda
  • 372 | 373 |
  • fdsafda
  • 374 |
  • fdsafda
  • 375 |
  • fdsafda
  • 376 |
  • fdsafda
  • 377 |
  • fdsafda
  • 378 | 379 |
  • fdsafda
  • 380 |
  • fdsafda
  • 381 |
  • fdsafda
  • 382 |
  • fdsafda
  • 383 |
  • fdsafda
  • 384 | 385 |
  • fdsafda
  • 386 |
  • fdsafda
  • 387 |
  • fdsafda
  • 388 |
  • fdsafda
  • 389 |
  • fdsafda
  • 390 | 391 |
  • fdsafda
  • 392 |
  • fdsafda
  • 393 |
  • fdsafda
  • 394 |
  • fdsafda
  • 395 |
  • fdsafda
  • 396 | 397 |
  • fdsafda
  • 398 |
  • fdsafda
  • 399 |
  • fdsafda
  • 400 |
  • fdsafda
  • 401 |
  • fdsafda
  • 402 | 403 |
  • fdsafda
  • 404 |
  • fdsafda
  • 405 |
  • fdsafda
  • 406 |
  • fdsafda
  • 407 |
  • fdsafda
  • 408 |
409 |
410 |
411 |
412 | 413 |
414 |
415 | 416 | -------------------------------------------------------------------------------- /matual/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/matual/alipay.jpg -------------------------------------------------------------------------------- /matual/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/matual/alipay.png -------------------------------------------------------------------------------- /personal/images/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 60 4 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/ui_scence/images 5 | END 6 | Personal1-bg-personal1.png 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 87 10 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/ui_scence/images/Personal1-bg-personal1.png 11 | END 12 | index2-img.png 13 | K 25 14 | svn:wc:ra_dav:version-url 15 | V 75 16 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/ui_scence/images/index2-img.png 17 | END 18 | index3-img.png 19 | K 25 20 | svn:wc:ra_dav:version-url 21 | V 75 22 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/ui_scence/images/index3-img.png 23 | END 24 | index4-img.png 25 | K 25 26 | svn:wc:ra_dav:version-url 27 | V 75 28 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/ui_scence/images/index4-img.png 29 | END 30 | Personal3-img-contact.png 31 | K 25 32 | svn:wc:ra_dav:version-url 33 | V 86 34 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/ui_scence/images/Personal3-img-contact.png 35 | END 36 | Personal1-img-face.png 37 | K 25 38 | svn:wc:ra_dav:version-url 39 | V 83 40 | /svn/EID/!svn/ver/1719/01.Projects/BUI/demo/ui_scence/images/Personal1-img-face.png 41 | END 42 | -------------------------------------------------------------------------------- /personal/images/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 2323 5 | http://wangwsh@eid.bingosoft.net:81/svn/EID/01.Projects/BUI/demo/ui_scence/images 6 | http://wangwsh@eid.bingosoft.net:81/svn/EID 7 | 8 | 9 | 10 | 2016-05-11T13:51:00.540403Z 11 | 1598 12 | wangwsh 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | eee847a2-21fd-0d49-b3e5-7d3b911f45d9 28 | 29 | Personal1-bg-personal1.png 30 | file 31 | 32 | 33 | 34 | 35 | 2016-12-29T05:40:57.000000Z 36 | 5fd3fa6be377ff36f4c90388f9794b78 37 | 2016-05-11T13:51:00.540403Z 38 | 1598 39 | wangwsh 40 | has-props 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 93660 62 | 63 | index2-img.png 64 | file 65 | 66 | 67 | 68 | 69 | 2016-12-29T05:40:57.000000Z 70 | 856312bee2ef9f35521988c3ea2a5e8c 71 | 2016-05-11T13:51:00.540403Z 72 | 1598 73 | wangwsh 74 | has-props 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 82755 96 | 97 | index3-img.png 98 | file 99 | 100 | 101 | 102 | 103 | 2016-12-29T05:40:57.000000Z 104 | dc66692cd65445377a75ef5834b12b92 105 | 2016-05-11T13:51:00.540403Z 106 | 1598 107 | wangwsh 108 | has-props 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 109097 130 | 131 | index4-img.png 132 | file 133 | 134 | 135 | 136 | 137 | 2016-12-29T05:40:57.000000Z 138 | 8a2cab073096bafe79b5ac36bb98296f 139 | 2016-05-11T13:51:00.540403Z 140 | 1598 141 | wangwsh 142 | has-props 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 8223 164 | 165 | Personal3-img-contact.png 166 | file 167 | 168 | 169 | 170 | 171 | 2016-12-29T05:40:57.000000Z 172 | eab4e01d927585dcad32d9d8ff96fca4 173 | 2016-05-11T13:51:00.540403Z 174 | 1598 175 | wangwsh 176 | has-props 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 20741 198 | 199 | Personal1-img-face.png 200 | file 201 | 202 | 203 | 204 | 205 | 2016-12-29T05:40:57.000000Z 206 | 709877f2fb5c3d85274085aaafbef034 207 | 2016-05-11T13:51:00.540403Z 208 | 1598 209 | wangwsh 210 | has-props 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 28047 232 | 233 | -------------------------------------------------------------------------------- /personal/images/.svn/prop-base/Personal1-bg-personal1.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /personal/images/.svn/prop-base/Personal1-img-face.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /personal/images/.svn/prop-base/Personal3-img-contact.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /personal/images/.svn/prop-base/index2-img.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /personal/images/.svn/prop-base/index3-img.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /personal/images/.svn/prop-base/index4-img.png.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /personal/images/.svn/text-base/Personal1-bg-personal1.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/images/.svn/text-base/Personal1-bg-personal1.png.svn-base -------------------------------------------------------------------------------- /personal/images/.svn/text-base/Personal1-img-face.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/images/.svn/text-base/Personal1-img-face.png.svn-base -------------------------------------------------------------------------------- /personal/images/.svn/text-base/Personal3-img-contact.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/images/.svn/text-base/Personal3-img-contact.png.svn-base -------------------------------------------------------------------------------- /personal/images/.svn/text-base/index2-img.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/images/.svn/text-base/index2-img.png.svn-base -------------------------------------------------------------------------------- /personal/images/.svn/text-base/index3-img.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/images/.svn/text-base/index3-img.png.svn-base -------------------------------------------------------------------------------- /personal/images/.svn/text-base/index4-img.png.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/images/.svn/text-base/index4-img.png.svn-base -------------------------------------------------------------------------------- /personal/images/Personal1-bg-personal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/images/Personal1-bg-personal1.png -------------------------------------------------------------------------------- /personal/images/Personal1-img-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/images/Personal1-img-face.png -------------------------------------------------------------------------------- /personal/images/Personal3-img-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/images/Personal3-img-contact.png -------------------------------------------------------------------------------- /personal/personal1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Personal1 6 | 7 | 8 | 9 | 10 | 11 | 12 | 79 | 98 | 99 | 100 | 101 |
102 |
103 |
104 |
105 | 106 |
107 |
我的
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 | 116 |
117 |

张三李四

118 |

积分:2988

119 |
120 | 142 |
143 |
144 | 145 | 150 |
151 | 152 | 153 |
154 | 155 | 156 | 157 | -------------------------------------------------------------------------------- /personal/personal1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/personal1.jpg -------------------------------------------------------------------------------- /personal/personal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/personal1.png -------------------------------------------------------------------------------- /personal/personal2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Personal2 6 | 7 | 8 | 9 | 10 | 11 | 12 | 55 | 74 | 75 | 76 | 77 |
78 |
79 |
80 |
81 | 82 |
83 |
我的
84 |
85 |
86 |
87 |
88 |
89 | 97 | 119 |
120 |
121 | 122 | 127 |
128 |
129 | 130 | 131 | 132 | -------------------------------------------------------------------------------- /personal/personal2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/personal2.jpg -------------------------------------------------------------------------------- /personal/personal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/personal2.png -------------------------------------------------------------------------------- /personal/personal3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Personal3 6 | 7 | 8 | 9 | 10 | 11 | 12 | 40 | 59 | 60 | 61 |
62 |
63 |
64 |
65 | 66 |
67 |
通讯录
68 |
69 |
70 |
71 |
72 |
73 |
    74 |
  • 75 |
    76 |
    77 |

    区柏荣

    78 |

    计算机与信息工程学院

    79 |
    80 | 81 |
  • 82 |
83 |
    84 |
  • 85 | 86 |
    87 |
    郭亮
    88 |
    89 |
  • 90 |
  • 91 | 92 |
    93 |
    guol@bingosoft.net
    94 |
    95 |
  • 96 |
  • 97 | 98 |
    99 |
    13800138000
    100 |
    101 |
  • 102 |
103 |
104 |
去聊天
105 |
106 |
107 | 108 | 109 |
110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /personal/personal3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/personal3.jpg -------------------------------------------------------------------------------- /personal/personal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/personal3.png -------------------------------------------------------------------------------- /personal/personal4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 个人中心 9 | 10 | 11 | 12 | 13 | 169 | 170 | 189 | 190 | 191 |
192 |
193 |
194 |
    195 |
  • 196 |
    197 |
    198 |

    王某某

    199 |

    钻石用户

    200 | 203 |
    204 |
  • 205 |
206 |
    207 |
  • 208 | 39 209 |
    关注的商品
    210 |
  • 211 |
  • 212 | 7 213 |
    关注的店铺
    214 |
  • 215 |
  • 216 | 185 217 |
    浏览记录
    218 |
  • 219 |
220 |
221 |
222 |
223 |
224 |
225 | 226 |
我的订单
227 |
查看全部订单
228 |
229 |
230 | 254 |
255 |
256 |
257 |
258 | 259 |
我的钱包
260 |
京东福卡,小金库
261 |
262 |
263 | 285 |
286 |
287 | 288 | 302 | 309 |
310 | 336 |
337 | 338 | -------------------------------------------------------------------------------- /personal/personal4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/personal4.jpg -------------------------------------------------------------------------------- /personal/personal4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imouou/BUI-Scenes/3bb0ff7f1ab4bf3a9f9672db3d217b09a9f19b66/personal/personal4.png --------------------------------------------------------------------------------