feat: 新增质保书模板功能,优化标签样式与钢卷信息展示

This commit is contained in:
2026-06-02 13:22:58 +08:00
parent 4295a28f33
commit d6620e2449
23 changed files with 1851 additions and 389 deletions

View File

@@ -0,0 +1,20 @@
import ChromiumTemplate from './ChromiumTemplate.vue';
import GalvanizingTemplate from './GalvanizingTemplate.vue';
import ColdHardTemplate from './ColdHardTemplate.vue';
import RawMaterialTemplate from './RawMaterialTemplate.vue';
export const templateMap = {
chromium: ChromiumTemplate,
galvanizing: GalvanizingTemplate,
coldHard: ColdHardTemplate,
rawMaterial: RawMaterialTemplate
};
export const templateOptions = [
{ value: 'chromium', label: '镀铬质保书模版' },
{ value: 'galvanizing', label: '镀锌质保书模版' },
{ value: 'coldHard', label: '冷硬质保书模版' },
{ value: 'rawMaterial', label: '原料质保书模版' }
];
export default templateMap;