Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
super_liu
2022-04-18 10:20:56 +08:00
2 changed files with 50 additions and 3 deletions
@@ -3,7 +3,7 @@
<!-- 标准入库流程-->
<ProcessHeader toggle>
<template slot="proName">标准入库流程</template>
<template slot="proNode">流程数据信息</template>
<template slot="proNode">批准</template>
</ProcessHeader>
<div class="headerTabs">
<div class="headerTabsItem" :class="active === '1' ? 'active' : ''" @click="handleTabs('1')">基础信息</div>
@@ -51,8 +51,31 @@
</el-select>
</el-form-item>
<van-field label="标准年份" v-model="form.standYear" readonly />
<van-field label="标准中文名称" v-model="form.standName" readonly />
<van-field label="标准英文名称" v-model="form.standEnName" readonly placeholder="请输入标准英文名称" />
<el-form-item label="标准中文名称" prop="standName" class="add-form-item form-item-disabled">
<el-tooltip v-if="form.standName" effect="dark" :content=form.standName placement="top-start">
<el-input
v-model="form.standName"
disabled
placeholder="请输入标准中文名称"
clearable
></el-input>
</el-tooltip>
<el-input
v-else
disabled
v-model="form.standName"
placeholder="请输入标准中文名称"
clearable
></el-input>
</el-form-item>
<el-form-item label="标准英文名称" prop="standEnName" class="add-form-item form-item-disabled">
<el-input
disabled
v-model="form.standEnName"
placeholder="请输入标准英文名称"
clearable
></el-input>
</el-form-item>
<el-form-item label="是否需要会签" prop="signFlag" class="add-form-item form-item-disabled">
<el-radio-group v-model="form.signFlag" disabled>
<el-radio label="1"></el-radio>
@@ -977,5 +1000,29 @@ export default {
}
}
}
/deep/ .el-select__tags-text{
color: #000000 !important;
cursor: not-allowed !important;
opacity: 1 !important;
-webkit-text-fill-color: #000000 !important;
background: transparent !important;
font-weight: 400 !important;
mso-ansi-font-weight: 400 !important;
mso-bidi-font-weight: 400 !important;
}
/deep/ .el-input__inner{
color: #000000 !important;
cursor: not-allowed !important;
opacity: 1 !important;
-webkit-text-fill-color: #000000 !important;
background: transparent !important;
font-weight: 400 !important;
mso-ansi-font-weight: 400 !important;
mso-bidi-font-weight: 400 !important;
}
/deep/ .fileClass{
line-height: 22px !important;
}
}
</style>