# fontCode **Repository Path**: coulis/fontCode ## Basic Information - **Project Name**: fontCode - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-11-28 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # disp > A Vue.js project ## Build Setup ``` bash # install dependencies npm install # serve with hot reload at localhost:8080 npm run dev # build for production with minification npm run build # build for production and view the bundle analyzer report npm run build --report ``` For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). 本工程计划为三人开发 1:引入文件有bootstrap,elementUI,jquery,echarts,已经全部引入,可以直接使用 2:向后端请求接口使用axios,已经引入并配置好,使用实例如下: this.$http.post(this.GLOBAL.host+'/sys/loginByUserId/'+indexLogin) .then((res) => {}) .catch((error) => {}); 由于在此处,后端的开发版本和最终的发布版本可能会差距一个工程名,所以,所有的接口应当有/开头,this.GLOBAL.host为统一前缀, 方便在接口地址发生变动时可以快速修改 3:和后端进行接口对接调试的时候,使用webpack自带的proxyTable工具,已经配置好,按照实际开发需求可以进行修改 4:由于是分模块合作,此处js是不会冲突的,但是css是很有可能冲突的,建议新建三个css文件,不要去修改别人的css文件。