fix: some
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 11m35s

This commit is contained in:
luo
2026-09-17 18:43:01 +08:00
parent 68d8f769d1
commit ac541b17af
6 changed files with 295 additions and 14 deletions

View File

@@ -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',