21 lines
695 B
JavaScript
21 lines
695 B
JavaScript
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;
|