├── .babelrc ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ └── HelloWorld.vue ├── lib │ ├── components │ │ ├── baseCmpts │ │ │ ├── baseMethos.vue │ │ │ └── baseTable.vue │ │ ├── calculation │ │ │ ├── calcul.vue │ │ │ ├── checkCalc.vue │ │ │ ├── index.js │ │ │ ├── indicator.vue │ │ │ ├── valculations.vue │ │ │ └── validitor.vue │ │ ├── design │ │ │ ├── attrSet.vue │ │ │ ├── bindIndicator │ │ │ │ ├── index.vue │ │ │ │ └── indicator.vue │ │ │ ├── excelBorders.vue │ │ │ ├── excelCellEditr.vue │ │ │ ├── excelReport.vue │ │ │ ├── excelResizer.vue │ │ │ ├── excelToolBar.vue │ │ │ ├── index.js │ │ │ ├── inputContentType │ │ │ │ └── index.vue │ │ │ ├── inputType │ │ │ │ ├── index.vue │ │ │ │ ├── selectionConf.vue │ │ │ │ └── treeConf.vue │ │ │ ├── joinIndrs │ │ │ │ └── index.vue │ │ │ ├── renderCell.vue │ │ │ ├── rightMenu.vue │ │ │ └── setCalculation │ │ │ │ ├── cellcalc.vue │ │ │ │ └── index.vue │ │ ├── edit │ │ │ ├── editTable.vue │ │ │ └── index.js │ │ ├── icon │ │ │ ├── demo.css │ │ │ ├── demo_index.html │ │ │ ├── iconfont.css │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.js │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ ├── show │ │ │ ├── index.js │ │ │ ├── json.js │ │ │ └── showTable.vue │ │ ├── test.js │ │ └── utils │ │ │ ├── event.js │ │ │ ├── excel.js │ │ │ └── toobarEvent.js │ ├── index.js │ └── test.json └── main.js └── static ├── .gitkeep └── images ├── calc.png ├── design.png ├── fill.png └── show.png /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/lib/components/baseCmpts/baseMethos.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/baseCmpts/baseMethos.vue -------------------------------------------------------------------------------- /src/lib/components/baseCmpts/baseTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/baseCmpts/baseTable.vue -------------------------------------------------------------------------------- /src/lib/components/calculation/calcul.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/calculation/calcul.vue -------------------------------------------------------------------------------- /src/lib/components/calculation/checkCalc.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/calculation/checkCalc.vue -------------------------------------------------------------------------------- /src/lib/components/calculation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/calculation/index.js -------------------------------------------------------------------------------- /src/lib/components/calculation/indicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/calculation/indicator.vue -------------------------------------------------------------------------------- /src/lib/components/calculation/valculations.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/calculation/valculations.vue -------------------------------------------------------------------------------- /src/lib/components/calculation/validitor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/calculation/validitor.vue -------------------------------------------------------------------------------- /src/lib/components/design/attrSet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/attrSet.vue -------------------------------------------------------------------------------- /src/lib/components/design/bindIndicator/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/bindIndicator/index.vue -------------------------------------------------------------------------------- /src/lib/components/design/bindIndicator/indicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/bindIndicator/indicator.vue -------------------------------------------------------------------------------- /src/lib/components/design/excelBorders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/excelBorders.vue -------------------------------------------------------------------------------- /src/lib/components/design/excelCellEditr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/excelCellEditr.vue -------------------------------------------------------------------------------- /src/lib/components/design/excelReport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/excelReport.vue -------------------------------------------------------------------------------- /src/lib/components/design/excelResizer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/excelResizer.vue -------------------------------------------------------------------------------- /src/lib/components/design/excelToolBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/excelToolBar.vue -------------------------------------------------------------------------------- /src/lib/components/design/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/index.js -------------------------------------------------------------------------------- /src/lib/components/design/inputContentType/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/inputContentType/index.vue -------------------------------------------------------------------------------- /src/lib/components/design/inputType/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/inputType/index.vue -------------------------------------------------------------------------------- /src/lib/components/design/inputType/selectionConf.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/inputType/selectionConf.vue -------------------------------------------------------------------------------- /src/lib/components/design/inputType/treeConf.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/inputType/treeConf.vue -------------------------------------------------------------------------------- /src/lib/components/design/joinIndrs/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/joinIndrs/index.vue -------------------------------------------------------------------------------- /src/lib/components/design/renderCell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/renderCell.vue -------------------------------------------------------------------------------- /src/lib/components/design/rightMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/rightMenu.vue -------------------------------------------------------------------------------- /src/lib/components/design/setCalculation/cellcalc.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/setCalculation/cellcalc.vue -------------------------------------------------------------------------------- /src/lib/components/design/setCalculation/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/design/setCalculation/index.vue -------------------------------------------------------------------------------- /src/lib/components/edit/editTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/edit/editTable.vue -------------------------------------------------------------------------------- /src/lib/components/edit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/edit/index.js -------------------------------------------------------------------------------- /src/lib/components/icon/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/icon/demo.css -------------------------------------------------------------------------------- /src/lib/components/icon/demo_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/icon/demo_index.html -------------------------------------------------------------------------------- /src/lib/components/icon/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/icon/iconfont.css -------------------------------------------------------------------------------- /src/lib/components/icon/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/icon/iconfont.eot -------------------------------------------------------------------------------- /src/lib/components/icon/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/icon/iconfont.js -------------------------------------------------------------------------------- /src/lib/components/icon/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/icon/iconfont.svg -------------------------------------------------------------------------------- /src/lib/components/icon/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/icon/iconfont.ttf -------------------------------------------------------------------------------- /src/lib/components/icon/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/icon/iconfont.woff -------------------------------------------------------------------------------- /src/lib/components/icon/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/icon/iconfont.woff2 -------------------------------------------------------------------------------- /src/lib/components/show/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/show/index.js -------------------------------------------------------------------------------- /src/lib/components/show/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/show/json.js -------------------------------------------------------------------------------- /src/lib/components/show/showTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/show/showTable.vue -------------------------------------------------------------------------------- /src/lib/components/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/test.js -------------------------------------------------------------------------------- /src/lib/components/utils/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/utils/event.js -------------------------------------------------------------------------------- /src/lib/components/utils/excel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/utils/excel.js -------------------------------------------------------------------------------- /src/lib/components/utils/toobarEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/components/utils/toobarEvent.js -------------------------------------------------------------------------------- /src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/index.js -------------------------------------------------------------------------------- /src/lib/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/lib/test.json -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/src/main.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/images/calc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/static/images/calc.png -------------------------------------------------------------------------------- /static/images/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/static/images/design.png -------------------------------------------------------------------------------- /static/images/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/static/images/fill.png -------------------------------------------------------------------------------- /static/images/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelloWoed/vue-report/HEAD/static/images/show.png --------------------------------------------------------------------------------