From aa5806c27f2e9af6600a2fce871ebe6a28cc183b Mon Sep 17 00:00:00 2001 From: value <z1292839451@163.com> Date: 星期三, 01 五月 2024 10:14:31 +0800 Subject: [PATCH] 费用统计增加时间段搜索;检验单增加搜索条件 --- src/components/view/a5-capacity-scope.vue | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/components/view/a5-capacity-scope.vue b/src/components/view/a5-capacity-scope.vue index 3618d06..779a102 100644 --- a/src/components/view/a5-capacity-scope.vue +++ b/src/components/view/a5-capacity-scope.vue @@ -224,14 +224,15 @@ props:{ value:'name', label:'name', - checkStrictly: true + checkStrictly: true, + multiple: true } }, requiredAdd: ['sonLaboratory', 'inspectionItem', 'manHour', 'inspectionItemType', 'inspectionValueType', - 'unit', 'method', 'price', 'manDay' + 'unit', 'method', 'price', 'manDay', 'templateId' ], requiredUp: ['sonLaboratory', 'inspectionItem', 'manHour', 'inspectionItemType', 'inspectionValueType', - 'unit', 'method', 'price', 'manDay' + 'unit', 'method', 'price', 'manDay', 'templateId' ] }, testObjectData: { @@ -335,6 +336,7 @@ if (this.radio === '0') { this.showItemParameter = true; this.showTestObject = false; + this.selectTestObjectByName() /* this.$nextTick(() => { this.$refs.itemParameterTable.selectList() }) */ @@ -347,6 +349,7 @@ refreshTable() { if (this.radio === '0') { this.$refs['itemParameterTable'].selectList() + } else { this.$refs['testObjectTable'].selectList() } -- Gitblit v1.9.3