# iview-base-element **Repository Path**: zeeus/iview-base-element ## Basic Information - **Project Name**: iview-base-element - **Description**: iview-base-element,拓展的小组件 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-04-14 - **Last Updated**: 2022-05-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # iView-project This project is build for Vue.js 2 + vue-router + webpack2 + iView 2, just install and run. ## Install ```bush // install dependencies npm install ``` ## Run ### Development ```bush // For the first time, run init to create index.html npm run init npm run dev ``` ### Production(Build) ```bush npm run build ``` public void index(){ String condtion = getPara("condtion", null); String sqlExceptSelect = "FROM zhidao_item "; if (condtion != null) { sqlExceptSelect += " where " + condtion; } renderJson(ZhidaoItem.dao.paginate(getParaToInt("page", 1),10,"SELECT *", sqlExceptSelect)); }