# 后台数据可视化 **Repository Path**: pick9968/background-data-visualization ## Basic Information - **Project Name**: 后台数据可视化 - **Description**: 基于Baidu Map,echarts进行数据可视化展示 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-04 - **Last Updated**: 2021-01-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # test > 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 # run unit tests npm run unit # run e2e tests npm run e2e # run all tests npm test ``` //获取所有用户信息 http://lcoalhost:3000/users //获取id为1的用户 http://lcoalhost:3000/users/1 //获取公司所有信息 http://lcoalhost:3000/companies //获取单个公司的信息 htto://localhost:3000/companies/1 //获取所有公司id为3的用户 http://localhost:3000/companies/3/users //根据公司名字获取信息 http://lcoalhost:3000/companies?name=Microsoft //根据多个名字获取公司信息 http://lcoalhost:3000/companies?name=Microsoft&name=Apple //获取一页中的只有两条数据 http://lcoalhost:3000/companies?_page=1&_limit=2 //升序排列 asc升序 desc降序 http://localhost:3000/companies?_sort=name&_order=asc //获取年龄30及以上的 http://lcoalhost:3000/users?age_get=30 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).