refactor(wms/coil): 重构钢卷详情页面,拆分组件并优化页面结构

1.  将原钢卷详情页面拆分为多个独立组件,按功能模块划分
2.  调整路由指向,将页面入口指向新的页面文件
3.  新增状态工具类,封装通用格式化和样式
This commit is contained in:
2026-06-11 14:02:49 +08:00
parent ea71a6dd93
commit b9fb4b4611
16 changed files with 3003 additions and 3400 deletions

View File

@@ -0,0 +1,20 @@
<template>
<div class="section basic-info-section">
<div class="section-header">
<span class="section-icon">&#128230;</span>
<span class="section-title">基本信息</span>
</div>
<div class="section-body">
<CoilInfoRender :coilInfo="coilInfo" :column="5" />
</div>
</div>
</template>
<script>
export default {
name: 'BasicInfoSection',
props: {
coilInfo: { type: Object, default: () => ({}) }
}
}
</script>