From 2f18299b0bc51efd02a92e0cff4bfa6e6a09d38f Mon Sep 17 00:00:00 2001 From: lb Date: Mon, 11 Sep 2023 16:47:12 +0800 Subject: [PATCH] add dialogForm of equipmentbind --- .../base/equipmentBindSection/dialogForm.vue | 223 ++++++++++++++++++ src/views/base/equipmentBindSection/index.vue | 8 +- 2 files changed, 227 insertions(+), 4 deletions(-) create mode 100644 src/views/base/equipmentBindSection/dialogForm.vue diff --git a/src/views/base/equipmentBindSection/dialogForm.vue b/src/views/base/equipmentBindSection/dialogForm.vue new file mode 100644 index 00000000..089fea6c --- /dev/null +++ b/src/views/base/equipmentBindSection/dialogForm.vue @@ -0,0 +1,223 @@ + + + + + + + diff --git a/src/views/base/equipmentBindSection/index.vue b/src/views/base/equipmentBindSection/index.vue index cd653693..a18dd588 100644 --- a/src/views/base/equipmentBindSection/index.vue +++ b/src/views/base/equipmentBindSection/index.vue @@ -53,10 +53,10 @@ import { } from '@/api/base/equipmentBindSection'; import moment from 'moment'; import basicPageMixin from '@/mixins/lb/basicPageMixin'; - +import DialogForm from './dialogForm.vue'; export default { name: 'EquipmentBindSection', - components: {}, + components: { DialogForm }, mixins: [basicPageMixin], data() { return { @@ -181,8 +181,8 @@ export default { select: true, label: '工段', url: '/base/workshop-section/listByParentId', // 根据产线获取 - // depends: '__product_line', // 依赖产线获取数据 - depends: 'productionLineId', + // depends: '__product_line', // 依赖产线获取数据 + depends: 'productionLineId', prop: 'workshopSectionId', rules: [{ required: true, message: '不能为空', trigger: 'blur' }], },