|
@@ -162,7 +162,12 @@ import { pushChannelName } from '../constant';
|
|
|
import type { FormProps } from 'element-plus';
|
|
import type { FormProps } from 'element-plus';
|
|
|
import PushObject from '../components/PushObject.vue';
|
|
import PushObject from '../components/PushObject.vue';
|
|
|
import type { FormInstance } from 'element-plus';
|
|
import type { FormInstance } from 'element-plus';
|
|
|
-import { queryReportConfigListParams, queryReportConfigList, viewSystemMessage } from './api/index';
|
|
|
|
|
|
|
+import {
|
|
|
|
|
+ queryReportConfigListParams,
|
|
|
|
|
+ queryReportConfigList,
|
|
|
|
|
+ confirmReportConfig,
|
|
|
|
|
+ viewSystemMessage,
|
|
|
|
|
+} from './api/index';
|
|
|
import { ObjectFrom } from './type';
|
|
import { ObjectFrom } from './type';
|
|
|
const title = ref<string>('本系统进行了重大升级,请查看详细内容');
|
|
const title = ref<string>('本系统进行了重大升级,请查看详细内容');
|
|
|
const content = ref<string>(
|
|
const content = ref<string>(
|
|
@@ -192,7 +197,8 @@ const ruleForm = reactive<RuleForm>({
|
|
|
const activeName = ref('platform');
|
|
const activeName = ref('platform');
|
|
|
const debounceEmit = debounce((params) => {
|
|
const debounceEmit = debounce((params) => {
|
|
|
queryReportConfigList(params)
|
|
queryReportConfigList(params)
|
|
|
- .then(() => {
|
|
|
|
|
|
|
+ .then((res) => {
|
|
|
|
|
+ confirmReportConfig(res);
|
|
|
ElMessage({
|
|
ElMessage({
|
|
|
message: '下发成功!',
|
|
message: '下发成功!',
|
|
|
type: 'success',
|
|
type: 'success',
|