|
@@ -189,7 +189,7 @@
|
|
|
type="text"
|
|
|
v-model.trim="item.libName"
|
|
|
placeholder="请输入术语"
|
|
|
- maxlength="50"
|
|
|
+ maxlength="70"
|
|
|
@blur="handleBlur(2,index)"
|
|
|
/>
|
|
|
<SimilarListDrag
|
|
@@ -530,9 +530,9 @@
|
|
|
class="marT description"
|
|
|
>
|
|
|
<el-row>
|
|
|
- <el-col :span="5"><el-input v-model.trim="klDiseaseVO.guoname" maxlength="30" placeholder="请输入名称"></el-input></el-col>
|
|
|
- <el-col :span="5"><el-input v-model.trim="klDiseaseVO.guospell" maxlength="30" placeholder="请输入拼音"></el-input></el-col>
|
|
|
- <el-col :span="5"><el-input v-model.trim="klDiseaseVO.guocode" maxlength="30" placeholder="请输入编码"></el-input></el-col>
|
|
|
+ <el-col :span="5"><el-input @blur='handleBlurGuo' v-model.trim="klDiseaseVO.guoname" maxlength="70" placeholder="请输入名称"></el-input></el-col>
|
|
|
+ <el-col :span="5"><el-input v-model.trim="klDiseaseVO.guospell" maxlength="70" placeholder="请输入拼音"></el-input></el-col>
|
|
|
+ <el-col :span="5"><el-input v-model.trim="klDiseaseVO.guocode" maxlength="70" placeholder="请输入编码"></el-input></el-col>
|
|
|
</el-row>
|
|
|
</el-form-item>
|
|
|
<el-form-item
|
|
@@ -1535,10 +1535,10 @@ export default {
|
|
|
this.warning('请选择术语类型');
|
|
|
return;
|
|
|
}
|
|
|
- /*if(!this.guounfix){
|
|
|
+ if(this.guounfix){
|
|
|
this.warning('ICD10国临版名称不能为纯数字');
|
|
|
return;
|
|
|
- }*/
|
|
|
+ }
|
|
|
// 年龄为必填项--2019-6-5需求
|
|
|
if (this.showMore == 1) {
|
|
|
if ((!this.minAge && this.minAge !== 0) || !this.maxAge) {
|