|
|
|
@ -35,7 +35,15 @@ |
|
|
|
|
</div> |
|
|
|
|
<el-card shadow="never" v-loading="loading"> |
|
|
|
|
<el-scrollbar height="500"> |
|
|
|
|
<el-descriptions title="工单信息" :column="3" border> |
|
|
|
|
<el-descriptions :column="3" border> |
|
|
|
|
<template #title> |
|
|
|
|
<div style="display: flex; align-items: center"> |
|
|
|
|
<el-icon size="15"><Grid /></el-icon> <span |
|
|
|
|
style="font-weight: 700; font-size: 14px; line-height: 16px" |
|
|
|
|
>工单信息</span |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
<el-descriptions-item |
|
|
|
|
label="工单序号" |
|
|
|
|
label-align="left" |
|
|
|
@ -242,12 +250,15 @@ |
|
|
|
|
{{ orderInfo.devAccessType }} |
|
|
|
|
</el-descriptions-item> |
|
|
|
|
</el-descriptions> |
|
|
|
|
<el-descriptions |
|
|
|
|
title="客户信息" |
|
|
|
|
:column="3" |
|
|
|
|
border |
|
|
|
|
style="margin-top: 10px" |
|
|
|
|
> |
|
|
|
|
<el-descriptions :column="3" border style="margin-top: 10px"> |
|
|
|
|
<template #title> |
|
|
|
|
<div style="display: flex; align-items: center"> |
|
|
|
|
<el-icon size="15"><Grid /></el-icon> <span |
|
|
|
|
style="font-weight: 700; font-size: 14px; line-height: 16px" |
|
|
|
|
>客户信息</span |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
<el-descriptions-item |
|
|
|
|
label="系统管理域" |
|
|
|
|
label-align="left" |
|
|
|
@ -307,10 +318,13 @@ |
|
|
|
|
{{ orderInfo.dummyFlag }} |
|
|
|
|
</el-descriptions-item> |
|
|
|
|
</el-descriptions> |
|
|
|
|
<div class="mt-1"> |
|
|
|
|
<div class="mt-2"> |
|
|
|
|
<div style="display: flex; justify-content: space-between"> |
|
|
|
|
<div style="font-weight: 700; line-height: 32px; font-size: 14px"> |
|
|
|
|
工单业务信息列表 |
|
|
|
|
<div style="display: flex; align-items: center"> |
|
|
|
|
<el-icon size="15"><Grid /></el-icon> <span |
|
|
|
|
style="font-weight: 700; font-size: 14px; line-height: 16px" |
|
|
|
|
>工单业务信息列表</span |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="any-table"> |
|
|
|
@ -357,7 +371,7 @@ import { |
|
|
|
|
findOrderInfoServicePage, |
|
|
|
|
updateOrderStatus, |
|
|
|
|
} from "@/api/order"; |
|
|
|
|
import { InfoFilled } from "@element-plus/icons-vue"; |
|
|
|
|
import { Grid, InfoFilled } from "@element-plus/icons-vue"; |
|
|
|
|
import OrderServiceParameterTable from "@/views/family/operate/order/components/OrderServiceParameterTable.vue"; |
|
|
|
|
import OrderLog from "@/views/family/operate/order/components/OrderLog.vue"; |
|
|
|
|
import BindingDevice from "@/views/family/operate/order/components/BindingDevice.vue"; |
|
|
|
@ -458,4 +472,7 @@ onMounted(() => { |
|
|
|
|
:deep(.el-scrollbar__thumb) { |
|
|
|
|
display: none; |
|
|
|
|
} |
|
|
|
|
:deep(.el-card__body) { |
|
|
|
|
padding: 10px 5px; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|