|
@@ -61,6 +61,9 @@
|
|
|
{{ row.pushStatus ? '已推送' : '未推送' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column :formatter="statusFormatter" :label="'客户端ID'" prop="clientID" min-width="120"
|
|
|
+ show-overflow-tooltip>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column :formatter="statusFormatter" :label="'推送详情'" prop="pushDetail" min-width="250">
|
|
|
<template #default="{ row }">
|
|
|
<div class="trigger-info" @click="showTriggerInfo(row)">
|
|
@@ -158,16 +161,6 @@ const disabledDate = (time: Date) => {
|
|
|
return time.getTime() > Date.now();
|
|
|
}
|
|
|
|
|
|
-interface SourceData {
|
|
|
- ruleName: string;
|
|
|
- triggerCondition: string;
|
|
|
- triggerTime: string;
|
|
|
- pushStatus: string;
|
|
|
- pushContent: string;
|
|
|
- pushFrequency: string;
|
|
|
- pushTime: string;
|
|
|
-}
|
|
|
-
|
|
|
const richContentDialogRef = ref();
|
|
|
const { getDataList, currentChangeHandle, sizeChangeHandle, tableStyle } = useTable(state);
|
|
|
|
|
@@ -222,8 +215,8 @@ const formatNum = (value: string | number = 0) => {
|
|
|
return '--';
|
|
|
};
|
|
|
|
|
|
-onMounted(() => {
|
|
|
- getFetchItemList();
|
|
|
+onMounted(async () => {
|
|
|
+ await getFetchItemList();
|
|
|
query();
|
|
|
});
|
|
|
|