This commit is contained in:
@@ -114,7 +114,8 @@
|
||||
width="640px"
|
||||
:close-on-click-modal="false"
|
||||
>
|
||||
<el-descriptions v-if="detailData" :column="2" border>
|
||||
<div v-loading="detailLoading">
|
||||
<el-descriptions v-if="detailData" :column="2" border>
|
||||
<el-descriptions-item label="ID">{{ detailData.id }}</el-descriptions-item>
|
||||
<el-descriptions-item label="卡ICCID">{{ detailData.iccid }}</el-descriptions-item>
|
||||
<el-descriptions-item label="任务类型">
|
||||
@@ -154,7 +155,8 @@
|
||||
<el-descriptions-item label="更新时间">
|
||||
{{ formatDateTime(detailData.updated_at) }}
|
||||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
</el-descriptions>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</ArtTableFullScreen>
|
||||
</template>
|
||||
@@ -269,10 +271,8 @@
|
||||
prop: 'status',
|
||||
label: '状态',
|
||||
width: 100,
|
||||
slots: {
|
||||
default: ({ row }: any) =>
|
||||
h(ElTag, { type: getStatusTagType(row.status) }, () => row.status_name)
|
||||
}
|
||||
formatter: (row: PollingPriorityItem) =>
|
||||
h(ElTag, { type: getStatusTagType(row.status) }, () => row.status_name)
|
||||
},
|
||||
{
|
||||
prop: 'trigger_type_name',
|
||||
@@ -294,12 +294,12 @@
|
||||
prop: 'result',
|
||||
label: '执行结果',
|
||||
width: 110,
|
||||
slots: {
|
||||
default: ({ row }: any) =>
|
||||
h(ElTag, { type: getResultTagType(row.result) }, () =>
|
||||
getPollingPriorityResultName(row.result)
|
||||
)
|
||||
}
|
||||
formatter: (row: PollingPriorityItem) =>
|
||||
h(
|
||||
ElTag,
|
||||
{ type: getResultTagType(row.result) },
|
||||
() => getPollingPriorityResultName(row.result)
|
||||
)
|
||||
},
|
||||
{
|
||||
prop: 'manual_operator_name',
|
||||
|
||||
Reference in New Issue
Block a user