默认值修改
This commit is contained in:
@@ -18,6 +18,7 @@ import useI18n from '@/hooks/useI18n';
|
||||
import { parseDateToStr } from '@/utils/date-utils';
|
||||
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
|
||||
import { upfFlowData, upfFlowParse } from '../../hooks/useUPFTotalFlow';
|
||||
import { upfWhoId } from '../../hooks/useWS';
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
@@ -206,10 +207,10 @@ function fnGetInitData() {
|
||||
// 查询10分钟前的
|
||||
const nowDate: Date = new Date();
|
||||
const tenMinutesAgo = new Date(nowDate.getTime() - 5 * 60 * 1000);
|
||||
|
||||
console.log(upfWhoId.value)
|
||||
listKPIData({
|
||||
neType: 'UPF',
|
||||
neId: '001',
|
||||
neId: upfWhoId.value,
|
||||
startTime: parseDateToStr(tenMinutesAgo),
|
||||
endTime: parseDateToStr(nowDate),
|
||||
// startTime: '2024-03-20 19:50:00',
|
||||
|
||||
@@ -231,7 +231,7 @@ onMounted(() => {
|
||||
|
||||
if (arr.length > 0) {
|
||||
queryParams.neRealId = arr[0].value;
|
||||
|
||||
upfWhoId.value = arr[0].value;
|
||||
reSendUPF(arr[0].rmUid);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -298,7 +298,7 @@ onMounted(() => {
|
||||
:options="[
|
||||
{ label: '4G', value: '4g' },
|
||||
{ label: '5G', value: '5g' },
|
||||
{ label: '45G', value: '45g' },
|
||||
{ label: '4/5G', value: '45g' },
|
||||
]"
|
||||
:allow-clear="false"
|
||||
:placeholder="t('common.selectPlease')"
|
||||
|
||||
Reference in New Issue
Block a user