标准/译文申请 查看

This commit is contained in:
baoyu
2024-03-29 11:26:14 +08:00
parent bcc20af255
commit 700ba895d3
3 changed files with 78 additions and 52 deletions
@@ -1,6 +1,6 @@
<template>
<el-drawer
title="新增标准/译文获取申请"
title="新增标准/译文获取申请123"
:visible.sync="visible"
:direction="direction"
:append-to-body="true"
@@ -13,12 +13,12 @@
<el-row>
<el-col :span="12">
<el-form-item label="申请单位" prop="applyForUnitName" label-width="100px" class="add-form-item">
<el-input disabled v-model="StandardApplyForEO.applyForUnitName" readonly clearable />
<el-input v-model="StandardApplyForEO.applyForUnitName" readonly clearable />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="申请人" prop="applyForUserName" label-width="100px" class="add-form-item">
<el-input disabled v-model="StandardApplyForEO.applyForUserName" readonly clearable />
<el-input v-model="StandardApplyForEO.applyForUserName" readonly clearable />
</el-form-item>
</el-col>
<el-col :span="12">
@@ -192,10 +192,10 @@ export default {
this.$nextTick(() => {
this.$refs.addFormRef.clearValidate()
this.getDicTypeListCode()
this.selectStandType(this.StandardApplyForEO.standType)
this.selectStandType(this.StandardApplyForEO.standType, 'callBack')
})
},
selectStandType (value) {
selectStandType (value,tag) {
if (value === '') {
this.standLbList = []
}
@@ -205,7 +205,10 @@ export default {
if (res.ok) {
this.$nextTick(() => {
this.standLbList = res.data
this.$set(this.StandardApplyForEO, 'standLb', null)
if (tag !== 'callBack') {
console.log(1111)
this.$set(this.StandardApplyForEO, 'standLb', null)
}
this.showLoading = false
})
return