Commit df6e1b18 authored by mayongxin's avatar mayongxin
parents 37504d29 6b9f14d6
Pipeline #26458 skipped with stages
.container{
width: 100%;
height: 100vh;
height: calc(100vh - 100px) ;
background-color: #ffffff;
display: flex;
padding: 0.8rem;
......@@ -8,6 +8,7 @@
font-weight: 600;
color: rgba(0, 0, 0, 0.85);
}
overflow-y: scroll;
}
.imgList{
display: flex;
......@@ -77,3 +78,17 @@
color: rgba(0, 0, 0, 0.25);
z-index: 99;
}
.divider{
display: flex;
align-items: center;
line-height: 100%;
padding: 0.5rem;
.dividerIcon{
margin-left: 0.8rem;
color: #4699f4;
cursor: pointer;
}
}
.ant-table {
min-height: 15rem !important;
}
......@@ -3,7 +3,7 @@ import React, { useState, useEffect, Modal } from 'react';
import styles from '../SchemeConfig.less'
import {
GetAllConfig,
DeleteConfig
deleteConfig
} from '@/services/webConfig/api';
import AddModal from './AddModal'
const TileData = props => {
......@@ -85,7 +85,7 @@ const TileData = props => {
const delConfirm = (record) => {
const { servicename = '' } = record;
setTreeLoading(true);
DeleteConfig({
deleteConfig({
servicename: servicename,
terminalType: 'base',
isBaseMap: true
......
......@@ -169,9 +169,6 @@ export const SetServiceConfig = query =>
export const GetVectorService = () =>
get(`${CITY_SERVICE}/OMS.svc/D_GetVectorService`, { _version: 9999 });
//删除底图配置
export const DeleteConfig = query =>
get(`${CITY_SERVICE}/OMS.svc/DeleteConfig`, query);
//获取元数据的工作空间列表
export const GetGISServerMapList = query =>
......@@ -207,4 +204,10 @@ get(`${CITY_SERVICE}/OMS.svc/BindSchemeBaseMap`, query );
export const unbindSchemeBaseMap = (query) =>
get(`${CITY_SERVICE}/OMS.svc/UnbindSchemeBaseMap`, query );
//设置web状态
export const setServiceType = (query) =>
get(`${CITY_SERVICE}/OMS.svc/SetServiceType`, query );
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment