青浦区教育局学区查询系统

DESKTOP-6LTVLN7\Liumouren c108ebf764 init hace 6 meses
public c108ebf764 init hace 6 meses
src c108ebf764 init hace 6 meses
.env c108ebf764 init hace 6 meses
.gitignore c108ebf764 init hace 6 meses
README.md c108ebf764 init hace 6 meses
babel.config.js c108ebf764 init hace 6 meses
jsconfig.json c108ebf764 init hace 6 meses
package-lock.json c108ebf764 init hace 6 meses
package.json c108ebf764 init hace 6 meses
vue.config.js c108ebf764 init hace 6 meses

README.md

系统运行说明

安装依赖

npm install

本地运行

npm run serve

系统编译

npm run build

系统开发说明

深拷贝使用说明

import deepClone from "deep-clone";

const foo = { bar: "baz" };
const fooClone = deepClone(foo);

地图操作示例

//地图相关全局变量在 public/static/config/config.js 中定义
map2DViewer.map.setView([31.074472887639914, 121.72521988031804], 16);

地图公共方法

//地图相关全局变量在 src/utils/publicFunction.js 中定义
//调用示例如下
import publicFun from "@/utils/publicFunction.js";
var guid = publicFun.buildGuid("baseLayer");

数据对接

·DMS 地址:http://121.43.55.7:2101/ ·接口:略 ·等值查询:1 ·模糊查询:2

地名地址接口

·http://121.43.55.7:10011/proxy/searchByName?address=xxxx

业务表说明

// qp_db_schools:学区列表(columnId:1440;modelId:1321)
let qpDbSchoolsDb = {
  c_school_code: "学区,小区标识",
  c_enrollment: "招生人数(school)",
  // [type:学区级别:school_lv]
  c_school_lv: "级别(school)",
  // [type:学区类别:shcoolType]
  c_type: "学区,小区类别",
  c_charge: "收费标准(元/月)(school)",
  c_name: "学区,小区名称",
  c_year: "数据更新年份",
  c_address: "学区,小区地址",
  c_street_town: "街镇",
  c_enrollment_scope: "招生范围(school)",
  c_es_codes: "招生范围(school:小区 codes)",
  c_phone: "招生-咨询电话(school)",
  c_tags: "tags",
  c_school_image: "学校,小区预览图"
};

// qp_db_geojson:geojson 对应表(columnId:1441;modelId:1322)
let qpDbGeojsonDb = {
  c_geojson: "空间信息",
  c_code: "学区、小区 code"
};

// <!-- 新表(columnId:1477;modelId:1358) -->
let qpDbSchoolsDb = {
  c_school_code: "学区,小区标识",
  c_enrollment: "招生人数(school)",
  // [type:学区级别:school_lv]
  c_school_lv: "级别(school)",
  // [type:学区类别:shcoolType]
  c_type: "学区,小区类别",
  c_charge: "收费标准(元/月)(school)",
  c_name: "学区,小区名称",
  c_year: "数据更新年份",
  c_address: "学区,小区地址",
  c_street_town: "街镇",
  c_enrollment_scope: "招生范围(school)",
  c_es_codes: "招生范围(school:小区 codes)",
  c_phone: "招生-咨询电话(school)",
  c_tags: "tags",
  c_geojson: "空间信息",
  c_school_image: "学校,小区预览图"
};