/** * 流域 */ import { PIPELINE_WFS } from '../Constants' const WFS_URL = PIPELINE_WFS export const LayerBasin = { code: 'sewersBasin', name: '区域图层', checked: true, isShow: true, type: 2, layers: [ { code: 'basinCj', name: '长江流域', sname: '长江流域', // 表名 checked: true, // 默认选中状态 type: 2, url: WFS_URL + '?TYPENAME=公司' }, { code: 'basinHh', name: '黄河流域', sname: '黄河流域', checked: true, // 默认选中状态 type: 2, wfs: WFS_URL + '?TYPENAME=码头' }, { code: 'basinBh', name: '渤海流域', sname: '渤海流域', checked: true, // 默认选中状态 type: 2, wfs: WFS_URL + '?TYPENAME=装置区' }, { code: 'basinQt', name: '其他', sname: '其他', checked: true, // 默认选中状态 type: 2, wfs: WFS_URL + '?TYPENAME=装置区' } ] }