├── .babelrc ├── .eslintrc ├── .gitignore ├── README.md ├── api-server.js ├── module.js ├── package.json ├── src ├── assets │ └── img │ │ ├── common │ │ ├── blog_icon.png │ │ ├── bokeyuan.png │ │ ├── favicon.ico │ │ ├── git_code.png │ │ └── loading.gif │ │ └── javascriptErrorDetail │ │ ├── browser.png │ │ ├── click.png │ │ ├── iPhone.png │ │ ├── pc.png │ │ ├── pcDevice.png │ │ ├── url-bg-active.jpg │ │ ├── url-bg.jpg │ │ └── windows.png ├── bundle_load.js ├── chartConfig │ └── jsChartOption.js ├── common │ ├── env_config.js │ ├── extension.js │ ├── http-api.js │ ├── http-util.js │ └── utils.js ├── components │ ├── header │ │ ├── index.js │ │ └── index.scss │ └── loading │ │ ├── index.js │ │ └── index.scss ├── containers │ ├── home.js │ ├── javascriptError.js │ ├── javascriptErrorDetail.js │ ├── login.js │ ├── projectList.js │ └── register.js ├── index.html ├── index.js ├── lib │ ├── bundle.js │ ├── entry.js │ ├── page │ │ ├── index.js │ │ └── index.scss │ ├── router.js │ └── store.js ├── modules │ ├── home │ │ ├── action.js │ │ ├── index.js │ │ ├── index.scss │ │ └── reducer.js │ ├── javascriptError │ │ ├── action.js │ │ ├── index.js │ │ ├── index.scss │ │ └── reducer.js │ ├── javascriptErrorDetail │ │ ├── action.js │ │ ├── index.js │ │ ├── index.scss │ │ └── reducer.js │ ├── login │ │ ├── action.js │ │ ├── index.js │ │ ├── index.scss │ │ └── reducer.js │ ├── projectList │ │ ├── action.js │ │ ├── index.js │ │ ├── index.scss │ │ └── reducer.js │ └── register │ │ ├── action.js │ │ ├── index.js │ │ ├── index.scss │ │ └── reducer.js ├── reducers.js ├── router.js ├── styles │ ├── app.scss │ ├── entry.scss │ └── form_item.scss └── templates │ ├── action.js.template │ ├── bundleLoad.js.template │ ├── component.js.template │ ├── container.js.template │ ├── index.scss.template │ ├── reducer.js.template │ └── router.js.template ├── webpack.base.js ├── webpack.dev.js └── webpack.pub.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/README.md -------------------------------------------------------------------------------- /api-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/api-server.js -------------------------------------------------------------------------------- /module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/module.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/img/common/blog_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/assets/img/common/blog_icon.png -------------------------------------------------------------------------------- /src/assets/img/common/bokeyuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/assets/img/common/bokeyuan.png -------------------------------------------------------------------------------- /src/assets/img/common/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/assets/img/common/favicon.ico -------------------------------------------------------------------------------- /src/assets/img/common/git_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/assets/img/common/git_code.png -------------------------------------------------------------------------------- /src/assets/img/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/assets/img/common/loading.gif -------------------------------------------------------------------------------- /src/assets/img/javascriptErrorDetail/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/assets/img/javascriptErrorDetail/browser.png -------------------------------------------------------------------------------- /src/assets/img/javascriptErrorDetail/click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/assets/img/javascriptErrorDetail/click.png -------------------------------------------------------------------------------- /src/assets/img/javascriptErrorDetail/iPhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/assets/img/javascriptErrorDetail/iPhone.png -------------------------------------------------------------------------------- /src/assets/img/javascriptErrorDetail/pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/assets/img/javascriptErrorDetail/pc.png -------------------------------------------------------------------------------- /src/assets/img/javascriptErrorDetail/pcDevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/assets/img/javascriptErrorDetail/pcDevice.png -------------------------------------------------------------------------------- /src/assets/img/javascriptErrorDetail/url-bg-active.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/assets/img/javascriptErrorDetail/url-bg-active.jpg -------------------------------------------------------------------------------- /src/assets/img/javascriptErrorDetail/url-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/assets/img/javascriptErrorDetail/url-bg.jpg -------------------------------------------------------------------------------- /src/assets/img/javascriptErrorDetail/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/assets/img/javascriptErrorDetail/windows.png -------------------------------------------------------------------------------- /src/bundle_load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/bundle_load.js -------------------------------------------------------------------------------- /src/chartConfig/jsChartOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/chartConfig/jsChartOption.js -------------------------------------------------------------------------------- /src/common/env_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/common/env_config.js -------------------------------------------------------------------------------- /src/common/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/common/extension.js -------------------------------------------------------------------------------- /src/common/http-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/common/http-api.js -------------------------------------------------------------------------------- /src/common/http-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/common/http-util.js -------------------------------------------------------------------------------- /src/common/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/common/utils.js -------------------------------------------------------------------------------- /src/components/header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/components/header/index.js -------------------------------------------------------------------------------- /src/components/header/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/components/header/index.scss -------------------------------------------------------------------------------- /src/components/loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/components/loading/index.js -------------------------------------------------------------------------------- /src/components/loading/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/components/loading/index.scss -------------------------------------------------------------------------------- /src/containers/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/containers/home.js -------------------------------------------------------------------------------- /src/containers/javascriptError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/containers/javascriptError.js -------------------------------------------------------------------------------- /src/containers/javascriptErrorDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/containers/javascriptErrorDetail.js -------------------------------------------------------------------------------- /src/containers/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/containers/login.js -------------------------------------------------------------------------------- /src/containers/projectList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/containers/projectList.js -------------------------------------------------------------------------------- /src/containers/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/containers/register.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lib/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/lib/bundle.js -------------------------------------------------------------------------------- /src/lib/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/lib/entry.js -------------------------------------------------------------------------------- /src/lib/page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/lib/page/index.js -------------------------------------------------------------------------------- /src/lib/page/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/lib/page/index.scss -------------------------------------------------------------------------------- /src/lib/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/lib/router.js -------------------------------------------------------------------------------- /src/lib/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/lib/store.js -------------------------------------------------------------------------------- /src/modules/home/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/home/action.js -------------------------------------------------------------------------------- /src/modules/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/home/index.js -------------------------------------------------------------------------------- /src/modules/home/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/home/index.scss -------------------------------------------------------------------------------- /src/modules/home/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/home/reducer.js -------------------------------------------------------------------------------- /src/modules/javascriptError/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/javascriptError/action.js -------------------------------------------------------------------------------- /src/modules/javascriptError/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/javascriptError/index.js -------------------------------------------------------------------------------- /src/modules/javascriptError/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/javascriptError/index.scss -------------------------------------------------------------------------------- /src/modules/javascriptError/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/javascriptError/reducer.js -------------------------------------------------------------------------------- /src/modules/javascriptErrorDetail/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/javascriptErrorDetail/action.js -------------------------------------------------------------------------------- /src/modules/javascriptErrorDetail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/javascriptErrorDetail/index.js -------------------------------------------------------------------------------- /src/modules/javascriptErrorDetail/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/javascriptErrorDetail/index.scss -------------------------------------------------------------------------------- /src/modules/javascriptErrorDetail/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/javascriptErrorDetail/reducer.js -------------------------------------------------------------------------------- /src/modules/login/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/login/action.js -------------------------------------------------------------------------------- /src/modules/login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/login/index.js -------------------------------------------------------------------------------- /src/modules/login/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/login/index.scss -------------------------------------------------------------------------------- /src/modules/login/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/login/reducer.js -------------------------------------------------------------------------------- /src/modules/projectList/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/projectList/action.js -------------------------------------------------------------------------------- /src/modules/projectList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/projectList/index.js -------------------------------------------------------------------------------- /src/modules/projectList/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/projectList/index.scss -------------------------------------------------------------------------------- /src/modules/projectList/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/projectList/reducer.js -------------------------------------------------------------------------------- /src/modules/register/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/register/action.js -------------------------------------------------------------------------------- /src/modules/register/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/register/index.js -------------------------------------------------------------------------------- /src/modules/register/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/register/index.scss -------------------------------------------------------------------------------- /src/modules/register/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/modules/register/reducer.js -------------------------------------------------------------------------------- /src/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/reducers.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/router.js -------------------------------------------------------------------------------- /src/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/styles/app.scss -------------------------------------------------------------------------------- /src/styles/entry.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/styles/entry.scss -------------------------------------------------------------------------------- /src/styles/form_item.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/templates/action.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/templates/action.js.template -------------------------------------------------------------------------------- /src/templates/bundleLoad.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/templates/bundleLoad.js.template -------------------------------------------------------------------------------- /src/templates/component.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/templates/component.js.template -------------------------------------------------------------------------------- /src/templates/container.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/templates/container.js.template -------------------------------------------------------------------------------- /src/templates/index.scss.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/templates/index.scss.template -------------------------------------------------------------------------------- /src/templates/reducer.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/templates/reducer.js.template -------------------------------------------------------------------------------- /src/templates/router.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/src/templates/router.js.template -------------------------------------------------------------------------------- /webpack.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/webpack.base.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.pub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringcrazy/webfunny_admin/HEAD/webpack.pub.js --------------------------------------------------------------------------------