From 92ff846fb659c62037a32b1d8c15eae9df9d9b54 Mon Sep 17 00:00:00 2001 From: zenglf <18502938215@163.com> Date: 星期一, 18 九月 2023 13:24:30 +0800 Subject: [PATCH] Merge branch 'develop' of http://117.34.109.166:18448/r/vue_mdc_430 --- src/views/eam/EquipmentCategoryList.vue | 41 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 41 insertions(+), 0 deletions(-) diff --git a/src/views/eam/EquipmentCategoryList.vue b/src/views/eam/EquipmentCategoryList.vue new file mode 100644 index 0000000..b1ac171 --- /dev/null +++ b/src/views/eam/EquipmentCategoryList.vue @@ -0,0 +1,41 @@ +<template> + <a-row + type="flex" + :gutter="16" + > + <a-col + :md="5" + :sm="24" + > + <equipment-category-left/> + </a-col> + <a-col + :md="24-5" + :sm="24" + > + <equipment-category-right/> + </a-col> + </a-row> +</template> + +<script> +import EquipmentCategoryLeft from './modules/equipmentCategory/EquipmentCategoryLeft' +import EquipmentCategoryRight from './modules/equipmentCategory/EquipmentCategoryRight' +export default { + name: 'EquipmentCategoryList', + components: { + EquipmentCategoryLeft, + EquipmentCategoryRight + }, + data() { + return { + description: '璁惧鍒嗙被' + } + }, + methods: {} +} +</script> + +<style scoped> +@import '~@assets/less/common.less'; +</style> \ No newline at end of file -- Gitblit v1.9.3