├── 1.png ├── b1.jpeg ├── b2.jpeg ├── qrcode.jpg ├── data.txt ├── data.json └── qrcode.html /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wscats/sweet/HEAD/1.png -------------------------------------------------------------------------------- /b1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wscats/sweet/HEAD/b1.jpeg -------------------------------------------------------------------------------- /b2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wscats/sweet/HEAD/b2.jpeg -------------------------------------------------------------------------------- /qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wscats/sweet/HEAD/qrcode.jpg -------------------------------------------------------------------------------- /data.txt: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "tag": "全国", 5 | "desc": "王者荣耀新手群", 6 | "title": "王者荣耀", 7 | "imageURL": "http://139.155.47.41:3000/images/1.png", 8 | "qrcode": "http://139.155.47.41:3000/images/1.png" 9 | }, 10 | { 11 | "tag": "全国", 12 | "desc": "王者荣耀王者群", 13 | "title": "王者荣耀", 14 | "imageURL": "http://139.155.47.41:3000/images/1.png", 15 | "qrcode": "http://139.155.47.41:3000/images/1.png" 16 | }, 17 | { 18 | "tag": "华南", 19 | "desc": "王者荣耀华南群", 20 | "title": "王者荣耀", 21 | "imageURL": "http://139.155.47.41:3000/images/1.png", 22 | "qrcode": "http://139.155.47.41:3000/images/1.png" 23 | }, 24 | { 25 | "tag": "华中", 26 | "desc": "王者荣耀华中群", 27 | "title": "王者荣耀", 28 | "imageURL": "http://139.155.47.41:3000/images/1.png", 29 | "qrcode": "http://139.155.47.41:3000/images/1.png" 30 | }, 31 | { 32 | "tag": "华北", 33 | "desc": "王者荣耀华北群", 34 | "title": "王者荣耀", 35 | "imageURL": "http://139.155.47.41:3000/images/1.png", 36 | "qrcode": "http://139.155.47.41:3000/images/1.png" 37 | }, 38 | { 39 | "tag": "全国", 40 | "desc": "和平精英福利群", 41 | "title": "和平精英", 42 | "imageURL": "http://139.155.47.41:3000/images/1.png", 43 | "qrcode": "http://139.155.47.41:3000/images/1.png" 44 | } 45 | ], 46 | "background": [ 47 | { 48 | "imageURL": "http://139.155.47.41:3000/images/b1.jpeg" 49 | }, 50 | { 51 | "imageURL": "http://139.155.47.41:3000/images/b2.jpeg" 52 | } 53 | ] 54 | } -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "tag": "全国", 5 | "desc": "王者荣耀新手群", 6 | "title": "王者荣耀", 7 | "imageURL": "http://139.155.47.41:3000/images/1.png", 8 | "qrcode": "http://139.155.47.41:3000/images/1.png" 9 | }, 10 | { 11 | "tag": "全国", 12 | "desc": "王者荣耀王者群", 13 | "title": "王者荣耀", 14 | "imageURL": "http://139.155.47.41:3000/images/1.png", 15 | "qrcode": "http://139.155.47.41:3000/images/1.png" 16 | }, 17 | { 18 | "tag": "华南", 19 | "desc": "王者荣耀华南群", 20 | "title": "王者荣耀", 21 | "imageURL": "http://139.155.47.41:3000/images/1.png", 22 | "qrcode": "http://139.155.47.41:3000/images/1.png" 23 | }, 24 | { 25 | "tag": "华中", 26 | "desc": "王者荣耀华中群", 27 | "title": "王者荣耀", 28 | "imageURL": "http://139.155.47.41:3000/images/1.png", 29 | "qrcode": "http://139.155.47.41:3000/images/1.png" 30 | }, 31 | { 32 | "tag": "华北", 33 | "desc": "王者荣耀华北群", 34 | "title": "王者荣耀", 35 | "imageURL": "http://139.155.47.41:3000/images/1.png", 36 | "qrcode": "http://139.155.47.41:3000/images/1.png" 37 | }, 38 | { 39 | "tag": "全国", 40 | "desc": "和平精英福利群", 41 | "title": "和平精英", 42 | "imageURL": "http://139.155.47.41:3000/images/1.png", 43 | "qrcode": "http://139.155.47.41:3000/images/1.png" 44 | } 45 | ], 46 | "background": [ 47 | { 48 | "imageURL": "http://139.155.47.41:3000/images/b1.jpeg" 49 | }, 50 | { 51 | "imageURL": "http://139.155.47.41:3000/images/b2.jpeg" 52 | } 53 | ] 54 | } -------------------------------------------------------------------------------- /qrcode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Document 9 | 10 | 11 | 12 | 13 | 14 | 134 | 135 | 136 | --------------------------------------------------------------------------------