|
@@ -1,6 +1,6 @@
|
|
<script setup>
|
|
<script setup>
|
|
-import { ref, computed, onMounted, unref, onUnmounted } from 'vue';
|
|
|
|
-import { NTabs, NTab, NSelect, NDatePicker } from "naive-ui";
|
|
|
|
|
|
+import { ref, computed, onMounted, nextTick, onUnmounted } from 'vue';
|
|
|
|
+import { NSpin, NSelect, NDatePicker } from "naive-ui";
|
|
import * as echarts from 'echarts';
|
|
import * as echarts from 'echarts';
|
|
import { startOfDay } from "date-fns/esm"
|
|
import { startOfDay } from "date-fns/esm"
|
|
import { controlApi } from "@/api/control"
|
|
import { controlApi } from "@/api/control"
|
|
@@ -11,20 +11,33 @@ let tempTabItemOneKey = 0;
|
|
let tempTabItemTwoKey = 'jzxsOne';
|
|
let tempTabItemTwoKey = 'jzxsOne';
|
|
const datePickerValue = ref(null);
|
|
const datePickerValue = ref(null);
|
|
const dateRangeRef = ref(null);
|
|
const dateRangeRef = ref(null);
|
|
-const tabs = ref([]);
|
|
|
|
-const tabActive = ref(null);
|
|
|
|
-const selectValue = ref(0);
|
|
|
|
|
|
+const selectValue = ref(['0']);
|
|
const coefficientDataSource = ref([]);
|
|
const coefficientDataSource = ref([]);
|
|
const echartDataSource = ref({});
|
|
const echartDataSource = ref({});
|
|
const echartRef = ref(null);
|
|
const echartRef = ref(null);
|
|
-const isEmpty = ref(false);
|
|
|
|
const activeIndex = ref(0);
|
|
const activeIndex = ref(0);
|
|
|
|
+const show = ref(true);
|
|
|
|
|
|
const tabList = ['水质', '系数'];
|
|
const tabList = ['水质', '系数'];
|
|
|
|
|
|
const selectOptions = ref([]);
|
|
const selectOptions = ref([]);
|
|
|
|
|
|
-const echartOptions = [
|
|
|
|
|
|
+const selectEnum = {
|
|
|
|
+ 0: '进水流量',
|
|
|
|
+ 1: '北池-好氧池硝酸盐',
|
|
|
|
+ 2: '南池-好氧池硝酸盐',
|
|
|
|
+ 3: '北池-缺氧池氨氮',
|
|
|
|
+ 4: '南池-缺氧池氨氮',
|
|
|
|
+ 5: '进水COD-连续检测',
|
|
|
|
+ 6: '进水COD-在线仪表',
|
|
|
|
+ 7: '进水总氮',
|
|
|
|
+ 8: '碳源投加量-北池-计算投药量',
|
|
|
|
+ 9: '碳源投加量-南池-计算投药量',
|
|
|
|
+ 10: '碳源投加量-北池-组态反馈',
|
|
|
|
+ 11: '碳源投加量-南池-组态反馈'
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+let echartOptions = [
|
|
{ label: "进水流量", value: 0, style: "font-size: 12px" },
|
|
{ label: "进水流量", value: 0, style: "font-size: 12px" },
|
|
{ label: "#1好氧池硝酸盐", value: 1, style: "font-size: 12px" },
|
|
{ label: "#1好氧池硝酸盐", value: 1, style: "font-size: 12px" },
|
|
{ label: "#2好氧池硝酸盐", value: 2, style: "font-size: 12px" },
|
|
{ label: "#2好氧池硝酸盐", value: 2, style: "font-size: 12px" },
|
|
@@ -45,6 +58,14 @@ const coefficientOptions = [
|
|
{ label: "密度", value: 'yymdOne', style: "font-size: 12px" },
|
|
{ label: "密度", value: 'yymdOne', style: "font-size: 12px" },
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+const selectThemeOverrides = {
|
|
|
|
+ peers: {
|
|
|
|
+ InternalSelection: {
|
|
|
|
+ borderRadius: '4px'
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+}
|
|
|
|
+
|
|
const seriesName = computed(() => {
|
|
const seriesName = computed(() => {
|
|
let name = '';
|
|
let name = '';
|
|
if ( activeIndex.value === 0) {
|
|
if ( activeIndex.value === 0) {
|
|
@@ -65,7 +86,7 @@ const handleSwitchTab = (index) => {
|
|
selectValue.value = tempTabItemOneKey;
|
|
selectValue.value = tempTabItemOneKey;
|
|
selectOptions.value = echartOptions;
|
|
selectOptions.value = echartOptions;
|
|
datePickerValue.value = null;
|
|
datePickerValue.value = null;
|
|
- initWaterEchartData();
|
|
|
|
|
|
+ initWaterEchart();
|
|
} else {
|
|
} else {
|
|
// 系数
|
|
// 系数
|
|
tempTabItemOneKey = selectValue.value;
|
|
tempTabItemOneKey = selectValue.value;
|
|
@@ -77,15 +98,131 @@ const handleSwitchTab = (index) => {
|
|
}
|
|
}
|
|
|
|
|
|
// select option change
|
|
// select option change
|
|
-const handleSelectOptions = (val) => {
|
|
|
|
- selectValue.value = val;
|
|
|
|
|
|
+const handleSelectOptions = (selectOptionList) => {
|
|
|
|
+
|
|
|
|
+ selectValue.value = selectOptionList;
|
|
|
|
+
|
|
|
|
+ activeIndex.value === 0 ? initWaterEchart() : intiCoefficientEchartData();
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+const initWaterEchart = async () => {
|
|
|
|
+
|
|
|
|
+ const tempArr = [];
|
|
|
|
+
|
|
|
|
+ const tempResult = selectValue.value.map(key => {
|
|
|
|
+ const data = echartDataSource.value[key] || [];
|
|
|
|
+
|
|
|
|
+ tempArr.push(data);
|
|
|
|
+ return ({
|
|
|
|
+ name: selectEnum[key],
|
|
|
|
+ data
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ const xAxis = tempArr.flat(Infinity).reduce((acc, curr) => {
|
|
|
|
+ if (!acc.some(item => item.time === curr.time)) {
|
|
|
|
+ acc.push(curr);
|
|
|
|
+ }
|
|
|
|
+ return acc;
|
|
|
|
+ }, []).filter(Boolean).map(item => item.time.trim()).sort((a, b) => dayjs(a).valueOf() - dayjs(b).valueOf());
|
|
|
|
+
|
|
|
|
+ const options = getWaterEchartOptions({ data: tempResult, xAxis });
|
|
|
|
+
|
|
|
|
+ echart.setOption(options, true);
|
|
|
|
|
|
- activeIndex.value === 0 ? initWaterEchartData() : intiCoefficientEchartData();
|
|
|
|
}
|
|
}
|
|
|
|
|
|
const windowResize = () => echart.resize();
|
|
const windowResize = () => echart.resize();
|
|
|
|
|
|
-const getEchartOptions = (data, type) => {
|
|
|
|
|
|
+const getWaterEchartOptions = ({ data, xAxis = [] }) => {
|
|
|
|
+
|
|
|
|
+ const series = data.map(item => {
|
|
|
|
+ const d1 = item.data.map(item => {
|
|
|
|
+ return [
|
|
|
|
+ item.time.trim(),
|
|
|
|
+ item.val ? item.val.toFixed(2) : 0
|
|
|
|
+ ]
|
|
|
|
+ });
|
|
|
|
+ return {
|
|
|
|
+ name: item.name,
|
|
|
|
+ showSymbol: false,
|
|
|
|
+ smooth: true,
|
|
|
|
+ type: 'line',
|
|
|
|
+ symbolSize: 10,
|
|
|
|
+ data: d1,
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ const option = {
|
|
|
|
+ backgroundColor: '#FFF',
|
|
|
|
+ title: {
|
|
|
|
+ show: !xAxis.length,
|
|
|
|
+ text: '暂无数据',
|
|
|
|
+ x: 'center',
|
|
|
|
+ y: 'center',
|
|
|
|
+ textStyle: {
|
|
|
|
+ fontSize: 14,
|
|
|
|
+ fontWeight: 'normal',
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ grid: {
|
|
|
|
+ top: '40px',
|
|
|
|
+ bottom: '50px',
|
|
|
|
+ left: '5%',
|
|
|
|
+ right: '5%',
|
|
|
|
+ },
|
|
|
|
+ tooltip: {
|
|
|
|
+ trigger: 'axis',
|
|
|
|
+ label: {
|
|
|
|
+ show: true
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ xAxis: {
|
|
|
|
+ type: 'time',
|
|
|
|
+ boundaryGap: false,
|
|
|
|
+ axisLine: {
|
|
|
|
+ show: false
|
|
|
|
+ },
|
|
|
|
+ splitLine: {
|
|
|
|
+ show: false
|
|
|
|
+ },
|
|
|
|
+ axisTick: {
|
|
|
|
+ show: false,
|
|
|
|
+ alignWithLabel: true
|
|
|
|
+ },
|
|
|
|
+ axisLabel: {
|
|
|
|
+ formatter: function (value) {
|
|
|
|
+ return dayjs(value).format('YYYY/MM/DD')
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ // data: xAxis
|
|
|
|
+ },
|
|
|
|
+ yAxis: {
|
|
|
|
+ axisLine: {
|
|
|
|
+ show: false
|
|
|
|
+ },
|
|
|
|
+ splitLine: {
|
|
|
|
+ show: true,
|
|
|
|
+ lineStyle: {
|
|
|
|
+ type: 'dashed',
|
|
|
|
+ color: '#E5E5E5'
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ axisTick: {
|
|
|
|
+ show: false
|
|
|
|
+ },
|
|
|
|
+ splitArea: {
|
|
|
|
+ show: false,
|
|
|
|
+ color: '#fff'
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ series
|
|
|
|
+ };
|
|
|
|
+ return option;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+const getEchartOptions = (data) => {
|
|
const option = {
|
|
const option = {
|
|
backgroundColor: '#FFF',
|
|
backgroundColor: '#FFF',
|
|
title: {
|
|
title: {
|
|
@@ -184,42 +321,24 @@ const getEchartOptions = (data, type) => {
|
|
return option;
|
|
return option;
|
|
}
|
|
}
|
|
|
|
|
|
-const onSwitchEchart = (item) => {
|
|
|
|
- const echartData = echartDataSource.value[item.value];
|
|
|
|
- isEmpty.value = !!echartData.length
|
|
|
|
- echart.setOption(getEchartOptions(echartData));
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
// 水务相关数据格式化
|
|
// 水务相关数据格式化
|
|
const initWaterEchartData = async () => {
|
|
const initWaterEchartData = async () => {
|
|
|
|
+ show.value = true;
|
|
const [tBegin, tEnd] = datePickerValue.value || [];
|
|
const [tBegin, tEnd] = datePickerValue.value || [];
|
|
|
|
|
|
const timeBegin = tBegin ? dayjs(tBegin).format('YYYY-MM-DD') : null;
|
|
const timeBegin = tBegin ? dayjs(tBegin).format('YYYY-MM-DD') : null;
|
|
const timeEnd = tEnd ? dayjs(tEnd).format('YYYY-MM-DD') : null;
|
|
const timeEnd = tEnd ? dayjs(tEnd).format('YYYY-MM-DD') : null;
|
|
- const { data: echartData } = await controlApi.getEchartData(unref(selectValue), { timeBegin, timeEnd });
|
|
|
|
-
|
|
|
|
- const enumSource = {
|
|
|
|
- YB: '在线仪表',
|
|
|
|
- HY: '连续检测',
|
|
|
|
- YC: '预测'
|
|
|
|
- };
|
|
|
|
-
|
|
|
|
- tabs.value = Object.keys(echartData).map((key, index) => {
|
|
|
|
- if (index === 0) {
|
|
|
|
- tabActive.value = key + '-' + selectValue.value + '-' + index;
|
|
|
|
- }
|
|
|
|
- if (echartData[key].length) {
|
|
|
|
- return ({ label: enumSource[key], value: key });
|
|
|
|
- }
|
|
|
|
- }).filter(Boolean);
|
|
|
|
-
|
|
|
|
- echartDataSource.value = echartData;
|
|
|
|
-
|
|
|
|
- onSwitchEchart({ value: tabActive.value.substring(0, tabActive.value.indexOf('-')) });
|
|
|
|
|
|
+ const { data } = await controlApi.getAllEchartData({ timeBegin, timeEnd });
|
|
|
|
+
|
|
|
|
+ show.value = false;
|
|
|
|
+ echartDataSource.value = data;
|
|
|
|
+
|
|
|
|
+ initWaterEchart();
|
|
}
|
|
}
|
|
|
|
|
|
// 系数相关数据
|
|
// 系数相关数据
|
|
const intiCoefficientEchartData = async () => {
|
|
const intiCoefficientEchartData = async () => {
|
|
|
|
+ show.value = true;
|
|
const [timeBegin, timeEnd] = datePickerValue.value || [];
|
|
const [timeBegin, timeEnd] = datePickerValue.value || [];
|
|
const { data } = await controlApi.getBoardEchartList({ timeBegin, timeEnd });
|
|
const { data } = await controlApi.getBoardEchartList({ timeBegin, timeEnd });
|
|
coefficientDataSource.value = data;
|
|
coefficientDataSource.value = data;
|
|
@@ -228,8 +347,8 @@ const intiCoefficientEchartData = async () => {
|
|
time: dayjs(item.createTime).format('YYYY/MM/DD HH'),
|
|
time: dayjs(item.createTime).format('YYYY/MM/DD HH'),
|
|
val: item[selectValue.value]
|
|
val: item[selectValue.value]
|
|
}));
|
|
}));
|
|
-
|
|
|
|
- echart.setOption(getEchartOptions(d));
|
|
|
|
|
|
+ show.value = false;
|
|
|
|
+ echart.setOption(getEchartOptions(d), true);
|
|
}
|
|
}
|
|
|
|
|
|
// 日期范围限制
|
|
// 日期范围限制
|
|
@@ -255,10 +374,13 @@ const onDatePickerClear = () => {
|
|
}
|
|
}
|
|
|
|
|
|
onMounted(async () => {
|
|
onMounted(async () => {
|
|
- selectOptions.value = echartOptions;
|
|
|
|
|
|
+ echartOptions = Object.entries(selectEnum).map(([key, value]) => {
|
|
|
|
+ return { label: value, value: key, style: "font-size: 12px" }
|
|
|
|
+ });
|
|
|
|
|
|
- echart = echarts.init(echartRef.value, 'light');
|
|
|
|
|
|
+ selectOptions.value = echartOptions;
|
|
|
|
|
|
|
|
+ echart = echarts.init(document.querySelector('#echartRef'), 'light');
|
|
await initWaterEchartData();
|
|
await initWaterEchartData();
|
|
|
|
|
|
window.addEventListener("resize", windowResize);
|
|
window.addEventListener("resize", windowResize);
|
|
@@ -287,47 +409,33 @@ onUnmounted(() => {
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="select-wrapper">
|
|
<div class="select-wrapper">
|
|
- <div>
|
|
|
|
- <n-tabs
|
|
|
|
- animated
|
|
|
|
- type="segment"
|
|
|
|
- size="small"
|
|
|
|
- class="tabs"
|
|
|
|
- style="width: 200px;"
|
|
|
|
- v-model:value="tabActive"
|
|
|
|
- v-show="activeIndex === 0"
|
|
|
|
- >
|
|
|
|
- <n-tab
|
|
|
|
- v-for="item, index in tabs"
|
|
|
|
- :key="item.value"
|
|
|
|
- :name="item.value + '-' + selectValue + '-' + index"
|
|
|
|
- @click="onSwitchEchart(item)"
|
|
|
|
- >{{ item.label }}</n-tab>
|
|
|
|
- </n-tabs>
|
|
|
|
- </div>
|
|
|
|
- <div class="flex space-x-[10px]">
|
|
|
|
- <NDatePicker
|
|
|
|
- clearable
|
|
|
|
- class="w-[300px]"
|
|
|
|
- size="small"
|
|
|
|
- type="daterange"
|
|
|
|
- ref="dateRangeRef"
|
|
|
|
- :is-date-disabled="isRangeDateDisabled"
|
|
|
|
- :on-confirm="onDatePickerConfirm"
|
|
|
|
- :on-clear="onDatePickerClear"
|
|
|
|
- v-model:formatted-value="datePickerValue"
|
|
|
|
- ></NDatePicker>
|
|
|
|
- <NSelect
|
|
|
|
- class="w-[150px]"
|
|
|
|
- :options="selectOptions"
|
|
|
|
- :value="selectValue"
|
|
|
|
- :on-update:value="handleSelectOptions"
|
|
|
|
- size="small" />
|
|
|
|
- </div>
|
|
|
|
|
|
+ <NDatePicker
|
|
|
|
+ clearable
|
|
|
|
+ class="w-[300px]"
|
|
|
|
+ size="small"
|
|
|
|
+ type="daterange"
|
|
|
|
+ ref="dateRangeRef"
|
|
|
|
+ :is-date-disabled="isRangeDateDisabled"
|
|
|
|
+ :on-confirm="onDatePickerConfirm"
|
|
|
|
+ :on-clear="onDatePickerClear"
|
|
|
|
+ v-model:formatted-value="datePickerValue"
|
|
|
|
+ ></NDatePicker>
|
|
|
|
+ <NSelect
|
|
|
|
+ :multiple="activeIndex != 1"
|
|
|
|
+ class="w-[200px]"
|
|
|
|
+ :options="selectOptions"
|
|
|
|
+ :value="selectValue"
|
|
|
|
+ :on-update:value="handleSelectOptions"
|
|
|
|
+ :theme-overrides="selectThemeOverrides"
|
|
|
|
+ size="small"
|
|
|
|
+ max-tag-count="responsive"
|
|
|
|
+ />
|
|
</div>
|
|
</div>
|
|
-
|
|
|
|
<div class="echart-wrapper">
|
|
<div class="echart-wrapper">
|
|
- <div class="echart" ref="echartRef"></div>
|
|
|
|
|
|
+ <div class="echart w-full h-full" ref="echartRef" id="echartRef" :style="{ zIndex: show ? 0 : 100 }"></div>
|
|
|
|
+ <n-spin :show="show" class="h-full w-full" :style="{position: 'absolute', top: '0%', left: '0%', zIndex: show ? 100 : 0}">
|
|
|
|
+ <span></span>
|
|
|
|
+ </n-spin>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
@@ -398,8 +506,12 @@ onUnmounted(() => {
|
|
}
|
|
}
|
|
|
|
|
|
.echart-wrapper {
|
|
.echart-wrapper {
|
|
|
|
+ position: relative;
|
|
height: calc(100% - 72px);
|
|
height: calc(100% - 72px);
|
|
-
|
|
|
|
|
|
+ .echart {
|
|
|
|
+ position: relative;
|
|
|
|
+ z-index: 10;
|
|
|
|
+ }
|
|
.echart,
|
|
.echart,
|
|
.empty {
|
|
.empty {
|
|
width: 100%;
|
|
width: 100%;
|
|
@@ -428,69 +540,69 @@ onUnmounted(() => {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- .n-base-selection .n-base-selection-label .n-base-selection-input {
|
|
|
|
- font-size: 12px;
|
|
|
|
- color: #333333 !important;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- .right-inner {
|
|
|
|
- .n-base-selection__border {
|
|
|
|
- border: 0;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- .n-base-selection-label {
|
|
|
|
- border: 0;
|
|
|
|
- border-radius: 0;
|
|
|
|
- background: #F2F3F5 !important;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- .n-base-selection__state-border,
|
|
|
|
- .n-base-selection__border {
|
|
|
|
- border: 0 !important;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- .n-base-selection .n-base-selection__border,
|
|
|
|
- .n-base-selection .n-base-selection__state-border {
|
|
|
|
- box-shadow: none;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- .n-base-suffix__arrow {
|
|
|
|
- color: #4E5969;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ // .n-base-selection .n-base-selection-label .n-base-selection-input {
|
|
|
|
+ // font-size: 12px;
|
|
|
|
+ // color: #333333 !important;
|
|
|
|
+ // }
|
|
|
|
+
|
|
|
|
+ // .right-inner {
|
|
|
|
+ // .n-base-selection__border {
|
|
|
|
+ // border: 0;
|
|
|
|
+ // }
|
|
|
|
+
|
|
|
|
+ // .n-base-selection-label {
|
|
|
|
+ // border: 0;
|
|
|
|
+ // border-radius: 0;
|
|
|
|
+ // background: #F2F3F5 !important;
|
|
|
|
+ // }
|
|
|
|
+
|
|
|
|
+ // .n-base-selection__state-border,
|
|
|
|
+ // .n-base-selection__border {
|
|
|
|
+ // border: 0 !important;
|
|
|
|
+ // }
|
|
|
|
+
|
|
|
|
+ // .n-base-selection .n-base-selection__border,
|
|
|
|
+ // .n-base-selection .n-base-selection__state-border {
|
|
|
|
+ // box-shadow: none;
|
|
|
|
+ // }
|
|
|
|
+
|
|
|
|
+ // .n-base-suffix__arrow {
|
|
|
|
+ // color: #4E5969;
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
|
|
.n-input--pair {
|
|
.n-input--pair {
|
|
background: #f0f1f3 !important;
|
|
background: #f0f1f3 !important;
|
|
}
|
|
}
|
|
|
|
|
|
- .n-base-selection-input__content {
|
|
|
|
- font-size: 12px;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- .n-base-selection {
|
|
|
|
- background: #f0f1f3 !important;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- .n-base-selection-label {
|
|
|
|
- background: #f0f1f3;
|
|
|
|
- border-radius: 3px;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- .n-base-selection__border,
|
|
|
|
- .n-base-selection__state-border {
|
|
|
|
- display: none !important;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- .n-date-picker {
|
|
|
|
- .n-input__input-el,
|
|
|
|
- .n-input__placeholder {
|
|
|
|
- font-size: 12px !important;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- .n-base-selection:not(.n-base-selection--disabled).n-base-selection--active .n-base-selection-label {
|
|
|
|
- background: #f0f1f3 !important;
|
|
|
|
- }
|
|
|
|
|
|
+ // .n-base-selection-input__content {
|
|
|
|
+ // font-size: 12px;
|
|
|
|
+ // }
|
|
|
|
+
|
|
|
|
+ // .n-base-selection {
|
|
|
|
+ // background: #f0f1f3 !important;
|
|
|
|
+ // }
|
|
|
|
+
|
|
|
|
+ // .n-base-selection-label {
|
|
|
|
+ // background: #f0f1f3;
|
|
|
|
+ // border-radius: 3px;
|
|
|
|
+ // }
|
|
|
|
+
|
|
|
|
+ // .n-base-selection__border,
|
|
|
|
+ // .n-base-selection__state-border {
|
|
|
|
+ // display: none !important;
|
|
|
|
+ // }
|
|
|
|
+
|
|
|
|
+ // .n-date-picker {
|
|
|
|
+ // .n-input__input-el,
|
|
|
|
+ // .n-input__placeholder {
|
|
|
|
+ // font-size: 12px !important;
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+
|
|
|
|
+ // .n-base-selection:not(.n-base-selection--disabled).n-base-selection--active .n-base-selection-label {
|
|
|
|
+ // background: #f0f1f3 !important;
|
|
|
|
+ // }
|
|
}
|
|
}
|
|
|
|
|
|
</style>
|
|
</style>
|