# es **Repository Path**: amtech/es ## Basic Information - **Project Name**: es - **Description**: Ext JS快速原型 - **Primary Language**: JavaScript - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2018-05-04 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 目录及文件说明 - `"app.json"` - The application descriptor which controls how the application is built and loaded. - `"app.js"` - The file that launches the application. This is primarily used to launch an instance of the `MyApp.Application` class. - `"index.html"` - The default web page for this application. This can be customized in `"app.json"`. - `"build.xml"` - The entry point for Sencha Cmd to access the generated build script. This file is a place where you can hook into these processes and tune them. See the comments in that file for more information. - `".sencha"` - This (typically hidden) folder contains the generated build scripts and configuration files for the application. This folder is required in order to build the application but its content should not need to be edited in most cases. The content of this folder is updated by "sencha app upgrade". These files can be ignored from source control as they are regenerated by the build process. - `"build"` - This folder contain the output of the build. The generated CSS file, consolidated resources and concatenated JavaScript file are all stored in this folder. - `"bootstrap.*"` - These files are generated by the build and watch commands to enable the application to load in "development mode". ## /app This folder contains the JavaScript files for the application. ## /resources This folder contains static resources (typically an `"images"` folder as well). ## /overrides This folder contains override classes. All overrides in this folder will be automatically included in application builds if the target class of the override is loaded. ## /sass This folder contains the styling for the application's views. See DCApp/sass/Readme.md for details. # 如何运行 - 下载[Ext JS6.2](https://www.sencha.com/legal/gpl/)并解压到/web/ext6.2下 - 安装[Sencha Cmd6](https://www.sencha.com/products/extjs/cmd-download/) - git clone本项目到本地 - 在`/web`目录下执行 `sencha app watch` - 在eclipse 下配置并运行`se`项目 - 浏览器访问`http://localhost:8080/es/web` # 版本更新说明 ## 8.27升级到extjs6.2gpl - 解决了tab定位问题(flex与tab定位的scrollIntoView存在冲突) - ContentPanel采用layout:card,全面复用view, prev和next不会闪烁 -