refactor(wms/coil): 重构钢卷详情页面,拆分组件并优化页面结构
1. 将原钢卷详情页面拆分为多个独立组件,按功能模块划分 2. 调整路由指向,将页面入口指向新的页面文件 3. 新增状态工具类,封装通用格式化和样式
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<template>
|
||||
<div class="section basic-info-section">
|
||||
<div class="section-header">
|
||||
<span class="section-icon">📦</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>
|
||||
Reference in New Issue
Block a user