├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── dist ├── index.html └── static │ ├── css │ ├── app.f9843cb29a1117bf6797b74de1efa856.css │ └── app.f9843cb29a1117bf6797b74de1efa856.css.map │ ├── img │ ├── coach.0833aac.png │ ├── coachBg1.png │ ├── coachBg10.png │ ├── coachBg11.png │ ├── coachBg12.png │ ├── coachBg13.png │ ├── coachBg14.png │ ├── coachBg15.png │ ├── coachBg16.png │ ├── coachBg17.png │ ├── coachBg18.png │ ├── coachBg2.png │ ├── coachBg3.png │ ├── coachBg4.png │ ├── coachBg5.png │ ├── coachBg6.png │ ├── coachBg7.png │ ├── coachBg8.png │ ├── coachBg9.png │ ├── coachBgGrid1.png │ ├── coachBgGrid10.png │ ├── coachBgGrid11.png │ ├── coachBgGrid12.png │ ├── coachBgGrid13.png │ ├── coachBgGrid14.png │ ├── coachBgGrid15.png │ ├── coachBgGrid16.png │ ├── coachBgGrid17.png │ ├── coachBgGrid18.png │ ├── coachBgGrid2.png │ ├── coachBgGrid3.png │ ├── coachBgGrid4.png │ ├── coachBgGrid5.png │ ├── coachBgGrid6.png │ ├── coachBgGrid7.png │ ├── coachBgGrid8.png │ ├── coachBgGrid9.png │ ├── header.4524655.png │ ├── pitchBg1.png │ ├── pitchBg2.png │ ├── standard.854353e.png │ ├── standardBg1.png │ ├── standardBg10.png │ ├── standardBg11.png │ ├── standardBg12.png │ ├── standardBg13.png │ ├── standardBg14.png │ ├── standardBg15.png │ ├── standardBg16.png │ ├── standardBg17.png │ ├── standardBg18.png │ ├── standardBg2.png │ ├── standardBg3.png │ ├── standardBg4.png │ ├── standardBg5.png │ ├── standardBg6.png │ ├── standardBg7.png │ ├── standardBg8.png │ ├── standardBg9.png │ ├── standardBgGrid1.png │ ├── standardBgGrid10.png │ ├── standardBgGrid11.png │ ├── standardBgGrid12.png │ ├── standardBgGrid13.png │ ├── standardBgGrid14.png │ ├── standardBgGrid15.png │ ├── standardBgGrid16.png │ ├── standardBgGrid17.png │ ├── standardBgGrid18.png │ ├── standardBgGrid2.png │ ├── standardBgGrid3.png │ ├── standardBgGrid4.png │ ├── standardBgGrid5.png │ ├── standardBgGrid6.png │ ├── standardBgGrid7.png │ ├── standardBgGrid8.png │ └── standardBgGrid9.png │ └── js │ ├── app.b74652a13cb5211e8d02.js │ ├── app.b74652a13cb5211e8d02.js.map │ ├── manifest.3ad1d5771e9b13dbdad2.js │ ├── manifest.3ad1d5771e9b13dbdad2.js.map │ ├── vendor.c421dda17f544a910615.js │ └── vendor.c421dda17f544a910615.js.map ├── index.html ├── package.json ├── src ├── App.vue ├── assets │ ├── bg.png │ ├── coach.png │ ├── coachBg.png │ ├── header.png │ ├── standard.png │ └── standardBg.png ├── components │ ├── diagram.vue │ ├── ground.vue │ ├── index.vue │ ├── operation.vue │ ├── pitch.vue │ └── tools.vue ├── main.js ├── router │ └── index.js ├── store │ └── store.js └── tool │ ├── graph.js │ ├── icon.js │ ├── line.js │ ├── polygon.js │ ├── selection.js │ └── text.js └── static ├── .gitkeep └── img ├── coachBg1.png ├── coachBg10.png ├── coachBg11.png ├── coachBg12.png ├── coachBg13.png ├── coachBg14.png ├── coachBg15.png ├── coachBg16.png ├── coachBg17.png ├── coachBg18.png ├── coachBg2.png ├── coachBg3.png ├── coachBg4.png ├── coachBg5.png ├── coachBg6.png ├── coachBg7.png ├── coachBg8.png ├── coachBg9.png ├── coachBgGrid1.png ├── coachBgGrid10.png ├── coachBgGrid11.png ├── coachBgGrid12.png ├── coachBgGrid13.png ├── coachBgGrid14.png ├── coachBgGrid15.png ├── coachBgGrid16.png ├── coachBgGrid17.png ├── coachBgGrid18.png ├── coachBgGrid2.png ├── coachBgGrid3.png ├── coachBgGrid4.png ├── coachBgGrid5.png ├── coachBgGrid6.png ├── coachBgGrid7.png ├── coachBgGrid8.png ├── coachBgGrid9.png ├── pitchBg1.png ├── pitchBg2.png ├── standardBg1.png ├── standardBg10.png ├── standardBg11.png ├── standardBg12.png ├── standardBg13.png ├── standardBg14.png ├── standardBg15.png ├── standardBg16.png ├── standardBg17.png ├── standardBg18.png ├── standardBg2.png ├── standardBg3.png ├── standardBg4.png ├── standardBg5.png ├── standardBg6.png ├── standardBg7.png ├── standardBg8.png ├── standardBg9.png ├── standardBgGrid1.png ├── standardBgGrid10.png ├── standardBgGrid11.png ├── standardBgGrid12.png ├── standardBgGrid13.png ├── standardBgGrid14.png ├── standardBgGrid15.png ├── standardBgGrid16.png ├── standardBgGrid17.png ├── standardBgGrid18.png ├── standardBgGrid2.png ├── standardBgGrid3.png ├── standardBgGrid4.png ├── standardBgGrid5.png ├── standardBgGrid6.png ├── standardBgGrid7.png ├── standardBgGrid8.png └── standardBgGrid9.png /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/static/css/app.f9843cb29a1117bf6797b74de1efa856.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/css/app.f9843cb29a1117bf6797b74de1efa856.css -------------------------------------------------------------------------------- /dist/static/css/app.f9843cb29a1117bf6797b74de1efa856.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/css/app.f9843cb29a1117bf6797b74de1efa856.css.map -------------------------------------------------------------------------------- /dist/static/img/coach.0833aac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coach.0833aac.png -------------------------------------------------------------------------------- /dist/static/img/coachBg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg1.png -------------------------------------------------------------------------------- /dist/static/img/coachBg10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg10.png -------------------------------------------------------------------------------- /dist/static/img/coachBg11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg11.png -------------------------------------------------------------------------------- /dist/static/img/coachBg12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg12.png -------------------------------------------------------------------------------- /dist/static/img/coachBg13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg13.png -------------------------------------------------------------------------------- /dist/static/img/coachBg14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg14.png -------------------------------------------------------------------------------- /dist/static/img/coachBg15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg15.png -------------------------------------------------------------------------------- /dist/static/img/coachBg16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg16.png -------------------------------------------------------------------------------- /dist/static/img/coachBg17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg17.png -------------------------------------------------------------------------------- /dist/static/img/coachBg18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg18.png -------------------------------------------------------------------------------- /dist/static/img/coachBg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg2.png -------------------------------------------------------------------------------- /dist/static/img/coachBg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg3.png -------------------------------------------------------------------------------- /dist/static/img/coachBg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg4.png -------------------------------------------------------------------------------- /dist/static/img/coachBg5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg5.png -------------------------------------------------------------------------------- /dist/static/img/coachBg6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg6.png -------------------------------------------------------------------------------- /dist/static/img/coachBg7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg7.png -------------------------------------------------------------------------------- /dist/static/img/coachBg8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg8.png -------------------------------------------------------------------------------- /dist/static/img/coachBg9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBg9.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid1.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid10.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid11.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid12.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid13.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid14.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid15.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid16.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid17.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid18.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid2.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid3.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid4.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid5.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid6.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid7.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid8.png -------------------------------------------------------------------------------- /dist/static/img/coachBgGrid9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/coachBgGrid9.png -------------------------------------------------------------------------------- /dist/static/img/header.4524655.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/header.4524655.png -------------------------------------------------------------------------------- /dist/static/img/pitchBg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/pitchBg1.png -------------------------------------------------------------------------------- /dist/static/img/pitchBg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/pitchBg2.png -------------------------------------------------------------------------------- /dist/static/img/standard.854353e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standard.854353e.png -------------------------------------------------------------------------------- /dist/static/img/standardBg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg1.png -------------------------------------------------------------------------------- /dist/static/img/standardBg10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg10.png -------------------------------------------------------------------------------- /dist/static/img/standardBg11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg11.png -------------------------------------------------------------------------------- /dist/static/img/standardBg12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg12.png -------------------------------------------------------------------------------- /dist/static/img/standardBg13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg13.png -------------------------------------------------------------------------------- /dist/static/img/standardBg14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg14.png -------------------------------------------------------------------------------- /dist/static/img/standardBg15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg15.png -------------------------------------------------------------------------------- /dist/static/img/standardBg16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg16.png -------------------------------------------------------------------------------- /dist/static/img/standardBg17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg17.png -------------------------------------------------------------------------------- /dist/static/img/standardBg18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg18.png -------------------------------------------------------------------------------- /dist/static/img/standardBg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg2.png -------------------------------------------------------------------------------- /dist/static/img/standardBg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg3.png -------------------------------------------------------------------------------- /dist/static/img/standardBg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg4.png -------------------------------------------------------------------------------- /dist/static/img/standardBg5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg5.png -------------------------------------------------------------------------------- /dist/static/img/standardBg6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg6.png -------------------------------------------------------------------------------- /dist/static/img/standardBg7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg7.png -------------------------------------------------------------------------------- /dist/static/img/standardBg8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg8.png -------------------------------------------------------------------------------- /dist/static/img/standardBg9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBg9.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid1.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid10.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid11.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid12.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid13.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid14.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid15.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid16.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid17.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid18.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid2.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid3.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid4.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid5.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid6.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid7.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid8.png -------------------------------------------------------------------------------- /dist/static/img/standardBgGrid9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/img/standardBgGrid9.png -------------------------------------------------------------------------------- /dist/static/js/app.b74652a13cb5211e8d02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/js/app.b74652a13cb5211e8d02.js -------------------------------------------------------------------------------- /dist/static/js/app.b74652a13cb5211e8d02.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/js/app.b74652a13cb5211e8d02.js.map -------------------------------------------------------------------------------- /dist/static/js/manifest.3ad1d5771e9b13dbdad2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/js/manifest.3ad1d5771e9b13dbdad2.js -------------------------------------------------------------------------------- /dist/static/js/manifest.3ad1d5771e9b13dbdad2.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/js/manifest.3ad1d5771e9b13dbdad2.js.map -------------------------------------------------------------------------------- /dist/static/js/vendor.c421dda17f544a910615.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/js/vendor.c421dda17f544a910615.js -------------------------------------------------------------------------------- /dist/static/js/vendor.c421dda17f544a910615.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/dist/static/js/vendor.c421dda17f544a910615.js.map -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/assets/bg.png -------------------------------------------------------------------------------- /src/assets/coach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/assets/coach.png -------------------------------------------------------------------------------- /src/assets/coachBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/assets/coachBg.png -------------------------------------------------------------------------------- /src/assets/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/assets/header.png -------------------------------------------------------------------------------- /src/assets/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/assets/standard.png -------------------------------------------------------------------------------- /src/assets/standardBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/assets/standardBg.png -------------------------------------------------------------------------------- /src/components/diagram.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/components/diagram.vue -------------------------------------------------------------------------------- /src/components/ground.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/components/ground.vue -------------------------------------------------------------------------------- /src/components/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/components/index.vue -------------------------------------------------------------------------------- /src/components/operation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/components/operation.vue -------------------------------------------------------------------------------- /src/components/pitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/components/pitch.vue -------------------------------------------------------------------------------- /src/components/tools.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/components/tools.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/store/store.js -------------------------------------------------------------------------------- /src/tool/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/tool/graph.js -------------------------------------------------------------------------------- /src/tool/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/tool/icon.js -------------------------------------------------------------------------------- /src/tool/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/tool/line.js -------------------------------------------------------------------------------- /src/tool/polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/tool/polygon.js -------------------------------------------------------------------------------- /src/tool/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/tool/selection.js -------------------------------------------------------------------------------- /src/tool/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/src/tool/text.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/coachBg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg1.png -------------------------------------------------------------------------------- /static/img/coachBg10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg10.png -------------------------------------------------------------------------------- /static/img/coachBg11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg11.png -------------------------------------------------------------------------------- /static/img/coachBg12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg12.png -------------------------------------------------------------------------------- /static/img/coachBg13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg13.png -------------------------------------------------------------------------------- /static/img/coachBg14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg14.png -------------------------------------------------------------------------------- /static/img/coachBg15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg15.png -------------------------------------------------------------------------------- /static/img/coachBg16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg16.png -------------------------------------------------------------------------------- /static/img/coachBg17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg17.png -------------------------------------------------------------------------------- /static/img/coachBg18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg18.png -------------------------------------------------------------------------------- /static/img/coachBg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg2.png -------------------------------------------------------------------------------- /static/img/coachBg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg3.png -------------------------------------------------------------------------------- /static/img/coachBg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg4.png -------------------------------------------------------------------------------- /static/img/coachBg5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg5.png -------------------------------------------------------------------------------- /static/img/coachBg6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg6.png -------------------------------------------------------------------------------- /static/img/coachBg7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg7.png -------------------------------------------------------------------------------- /static/img/coachBg8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg8.png -------------------------------------------------------------------------------- /static/img/coachBg9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBg9.png -------------------------------------------------------------------------------- /static/img/coachBgGrid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid1.png -------------------------------------------------------------------------------- /static/img/coachBgGrid10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid10.png -------------------------------------------------------------------------------- /static/img/coachBgGrid11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid11.png -------------------------------------------------------------------------------- /static/img/coachBgGrid12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid12.png -------------------------------------------------------------------------------- /static/img/coachBgGrid13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid13.png -------------------------------------------------------------------------------- /static/img/coachBgGrid14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid14.png -------------------------------------------------------------------------------- /static/img/coachBgGrid15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid15.png -------------------------------------------------------------------------------- /static/img/coachBgGrid16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid16.png -------------------------------------------------------------------------------- /static/img/coachBgGrid17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid17.png -------------------------------------------------------------------------------- /static/img/coachBgGrid18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid18.png -------------------------------------------------------------------------------- /static/img/coachBgGrid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid2.png -------------------------------------------------------------------------------- /static/img/coachBgGrid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid3.png -------------------------------------------------------------------------------- /static/img/coachBgGrid4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid4.png -------------------------------------------------------------------------------- /static/img/coachBgGrid5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid5.png -------------------------------------------------------------------------------- /static/img/coachBgGrid6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid6.png -------------------------------------------------------------------------------- /static/img/coachBgGrid7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid7.png -------------------------------------------------------------------------------- /static/img/coachBgGrid8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid8.png -------------------------------------------------------------------------------- /static/img/coachBgGrid9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/coachBgGrid9.png -------------------------------------------------------------------------------- /static/img/pitchBg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/pitchBg1.png -------------------------------------------------------------------------------- /static/img/pitchBg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/pitchBg2.png -------------------------------------------------------------------------------- /static/img/standardBg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg1.png -------------------------------------------------------------------------------- /static/img/standardBg10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg10.png -------------------------------------------------------------------------------- /static/img/standardBg11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg11.png -------------------------------------------------------------------------------- /static/img/standardBg12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg12.png -------------------------------------------------------------------------------- /static/img/standardBg13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg13.png -------------------------------------------------------------------------------- /static/img/standardBg14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg14.png -------------------------------------------------------------------------------- /static/img/standardBg15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg15.png -------------------------------------------------------------------------------- /static/img/standardBg16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg16.png -------------------------------------------------------------------------------- /static/img/standardBg17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg17.png -------------------------------------------------------------------------------- /static/img/standardBg18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg18.png -------------------------------------------------------------------------------- /static/img/standardBg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg2.png -------------------------------------------------------------------------------- /static/img/standardBg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg3.png -------------------------------------------------------------------------------- /static/img/standardBg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg4.png -------------------------------------------------------------------------------- /static/img/standardBg5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg5.png -------------------------------------------------------------------------------- /static/img/standardBg6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg6.png -------------------------------------------------------------------------------- /static/img/standardBg7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg7.png -------------------------------------------------------------------------------- /static/img/standardBg8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg8.png -------------------------------------------------------------------------------- /static/img/standardBg9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBg9.png -------------------------------------------------------------------------------- /static/img/standardBgGrid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid1.png -------------------------------------------------------------------------------- /static/img/standardBgGrid10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid10.png -------------------------------------------------------------------------------- /static/img/standardBgGrid11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid11.png -------------------------------------------------------------------------------- /static/img/standardBgGrid12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid12.png -------------------------------------------------------------------------------- /static/img/standardBgGrid13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid13.png -------------------------------------------------------------------------------- /static/img/standardBgGrid14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid14.png -------------------------------------------------------------------------------- /static/img/standardBgGrid15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid15.png -------------------------------------------------------------------------------- /static/img/standardBgGrid16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid16.png -------------------------------------------------------------------------------- /static/img/standardBgGrid17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid17.png -------------------------------------------------------------------------------- /static/img/standardBgGrid18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid18.png -------------------------------------------------------------------------------- /static/img/standardBgGrid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid2.png -------------------------------------------------------------------------------- /static/img/standardBgGrid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid3.png -------------------------------------------------------------------------------- /static/img/standardBgGrid4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid4.png -------------------------------------------------------------------------------- /static/img/standardBgGrid5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid5.png -------------------------------------------------------------------------------- /static/img/standardBgGrid6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid6.png -------------------------------------------------------------------------------- /static/img/standardBgGrid7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid7.png -------------------------------------------------------------------------------- /static/img/standardBgGrid8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid8.png -------------------------------------------------------------------------------- /static/img/standardBgGrid9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiFengONE/football-dragram/HEAD/static/img/standardBgGrid9.png --------------------------------------------------------------------------------