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/base/SuppliertList.vue | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 46 insertions(+), 0 deletions(-) diff --git a/src/views/base/SuppliertList.vue b/src/views/base/SuppliertList.vue new file mode 100644 index 0000000..45ce96e --- /dev/null +++ b/src/views/base/SuppliertList.vue @@ -0,0 +1,46 @@ +<template> + <a-row + type="flex" + :gutter="16" + > + <a-col + :md="4" + :sm="24" + > + <supplier-category-left @clickTreeNode="getSelectNode" /> + </a-col> + <a-col + :md="24-4" + :sm="24" + > + <supplier-model-right :recordSelect="currentNodeSelect" /> + </a-col> + </a-row> +</template> + +<script> +import SupplierCategoryLeft from './modules/supplier/SupplierCategoryLeft' +import SupplierModelRight from './modules/supplier/SupplierModelRight' +export default { + name: 'SuppliertList', + components: { + SupplierCategoryLeft, + SupplierModelRight, + }, + data() { + return { + description: '渚涘簲鍟嗛」鐩�', + currentNodeSelect: '', + } + }, + methods: { + getSelectNode(val) { + this.currentNodeSelect = val; + }, + } +} +</script> + +<style scoped> +@import '~@assets/less/common.less'; +</style> \ No newline at end of file -- Gitblit v1.9.3