From 74c58b88f878c4beafcedf4f75712bbdef4f7a6a Mon Sep 17 00:00:00 2001 From: licp <lichunping@guanfang.com.cn> Date: 星期五, 19 四月 2024 10:20:25 +0800 Subject: [PATCH] 优化任务检验页面 --- src/components/view/a7-standard-method.vue | 66 +++++++++++++++++++++++++++++++- 1 files changed, 63 insertions(+), 3 deletions(-) diff --git a/src/components/view/a7-standard-method.vue b/src/components/view/a7-standard-method.vue index 5176e02..58ebf4e 100644 --- a/src/components/view/a7-standard-method.vue +++ b/src/components/view/a7-standard-method.vue @@ -115,6 +115,16 @@ value: 1, label: '鏄�' }] + }, + isUse: { + select: [{ + value: 0, + type: 'info', + label: '鍚�' + }, { + value: 1, + label: '鏄�' + }] } }, selectField: { @@ -124,6 +134,17 @@ isProduct: { select: [{ value: 0, + type: 'info', + label: '鍚�' + }, { + value: 1, + label: '鏄�' + }] + }, + isUse: { + select: [{ + value: 0, + type: 'info', label: '鍚�' }, { value: 1, @@ -131,8 +152,8 @@ }] } }, - requiredAdd: ['code', 'name', 'structureTestObjectId', 'isProduct'], - requiredUp: ['code', 'name', 'structureTestObjectId', 'isProduct'] + requiredAdd: ['code', 'name', 'structureTestObjectId', 'isProduct','isUse','nameEn'], + requiredUp: ['code', 'name', 'structureTestObjectId', 'isProduct','isUse','nameEn'] }, entityCopy: {}, upIndex: 0, @@ -157,4 +178,43 @@ getPower() { let power = JSON.parse(sessionStorage.getItem('power')) let up = false - let del = fa + let del = false + let add = false + for (var i = 0; i < power.length; i++) { + if (power[i].menuMethod == 'addStandardMethod') { + add = true + } + if (power[i].menuMethod == 'delStandardMethod') { + del = true + } + if (power[i].menuMethod == 'upStandardMethod') { + up = true + } + } + if (!del) { + this.componentData.do.splice(1, 1) + } + if (!up) { + this.componentData.do.splice(0, 1) + } + this.addPower = add + }, + openAdd() { + this.$refs.ValueTable.openAddDia(this.$api.standardMethod.addStandardMethod); + }, + selectTestObjectByName() { + this.$axios.get(this.$api.capacityScope.selectTestObjectByName).then(res => { + let data = [] + res.data.forEach(a => { + data.push({ + label: a.specimenName, + value: a.id + }) + }) + this.componentData.selectField.structureTestObjectId.select = data + this.componentData.tagField.structureTestObjectId.select = data + }) + }, + } + } +</script> -- Gitblit v1.9.3