接收状态、推送状态位置调整
parent
80e85e276e
commit
022f528f33
|
@ -8,16 +8,16 @@
|
||||||
<el-table-column prop="thirdPlatformName" label="对接上级平台">
|
<el-table-column prop="thirdPlatformName" label="对接上级平台">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="pushCount" label="推送记录" />
|
<el-table-column prop="pushCount" label="推送记录" />
|
||||||
<el-table-column prop="pushStatus" label="上级平台接口状态">
|
|
||||||
<template #default="{ row }">
|
|
||||||
{{ translationStatus(row.pushStatus, pushOptions) }}
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column prop="receiveStatus" label="服务平台接口状态">
|
<el-table-column prop="receiveStatus" label="服务平台接口状态">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
{{ translationStatus(row.receiveStatus, receiveOptions) }}
|
{{ translationStatus(row.receiveStatus, receiveOptions) }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column prop="pushStatus" label="上级平台接口状态">
|
||||||
|
<template #default="{ row }">
|
||||||
|
{{ translationStatus(row.pushStatus, pushOptions) }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column label="操作" width="240">
|
<el-table-column label="操作" width="240">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<el-button
|
<el-button
|
||||||
|
@ -75,18 +75,18 @@ const receiveOptions = [
|
||||||
{ id: 2, name: "接收异常" },
|
{ id: 2, name: "接收异常" },
|
||||||
];
|
];
|
||||||
const options = [
|
const options = [
|
||||||
{
|
|
||||||
key: "pushStatus",
|
|
||||||
label: "推送状态",
|
|
||||||
type: "select",
|
|
||||||
options: pushOptions,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
key: "receiveStatus",
|
key: "receiveStatus",
|
||||||
label: "接收状态",
|
label: "接收状态",
|
||||||
type: "select",
|
type: "select",
|
||||||
options: receiveOptions,
|
options: receiveOptions,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: "pushStatus",
|
||||||
|
label: "推送状态",
|
||||||
|
type: "select",
|
||||||
|
options: pushOptions,
|
||||||
|
},
|
||||||
];
|
];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -80,18 +80,18 @@ const receiveOptions = [
|
||||||
{ id: 2, name: "接收异常" },
|
{ id: 2, name: "接收异常" },
|
||||||
];
|
];
|
||||||
const options = [
|
const options = [
|
||||||
{
|
|
||||||
key: "pushStatus",
|
|
||||||
label: "推送状态",
|
|
||||||
type: "select",
|
|
||||||
options: pushOptions,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
key: "receiveStatus",
|
key: "receiveStatus",
|
||||||
label: "接收状态",
|
label: "接收状态",
|
||||||
type: "select",
|
type: "select",
|
||||||
options: receiveOptions,
|
options: receiveOptions,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: "pushStatus",
|
||||||
|
label: "推送状态",
|
||||||
|
type: "select",
|
||||||
|
options: pushOptions,
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const fnDelete = async (id) => {
|
const fnDelete = async (id) => {
|
||||||
|
|
Loading…
Reference in New Issue