修改已知bug

This commit is contained in:
qq787203167
2022-08-05 18:01:45 +08:00
parent df7571b7d6
commit a4acabfa10
@@ -96,7 +96,7 @@
<div class="title-text"> <div class="title-text">
<span class="title-text-text" :title="$t('processBackground')">{{$t('processBackground')}}</span> <span class="title-text-text" :title="$t('processBackground')">{{$t('processBackground')}}</span>
</div> </div>
<a-form-model-item class="itemModel" prop="taskExplain"> <a-form-model-item class="itemModel" prop="processBackground">
<a-textarea :placeholder="$t('pleaseEnter')+$t('processBackground')" <a-textarea :placeholder="$t('pleaseEnter')+$t('processBackground')"
v-model="formInline.processBackground" v-model="formInline.processBackground"
:disabled="!whetherDisplay" :disabled="!whetherDisplay"
@@ -111,7 +111,7 @@
<div class="title-text"> <div class="title-text">
<span class="title-text-text" :title="$t('remarks')">{{$t('remarks')}}</span> <span class="title-text-text" :title="$t('remarks')">{{$t('remarks')}}</span>
</div> </div>
<a-form-model-item class="itemModel" prop="remarks"> <a-form-model-item class="itemModel" prop="remark">
<a-textarea :placeholder="$t('pleaseEnter')+$t('remarks')" <a-textarea :placeholder="$t('pleaseEnter')+$t('remarks')"
v-model="formInline.remark" v-model="formInline.remark"
:disabled="!whetherDisplay" :disabled="!whetherDisplay"
@@ -124,7 +124,7 @@
<a-col :span="12"> <a-col :span="12">
<div class="box-title-text"> <div class="box-title-text">
<div class="title-text"> <div class="title-text">
<span class="Required">*</span> <!-- <span class="Required">*</span>-->
<span class="title-text-text" :title="$t('evaluationMethod')">{{$t('evaluationMethod')}}</span> <span class="title-text-text" :title="$t('evaluationMethod')">{{$t('evaluationMethod')}}</span>
</div> </div>
<a-form-model-item class="itemModel" prop="gatherResult"> <a-form-model-item class="itemModel" prop="gatherResult">
@@ -239,7 +239,21 @@
message: this.$t('Assessor') + this.$t('cannotEmpty'), message: this.$t('Assessor') + this.$t('cannotEmpty'),
trigger: 'change' trigger: 'change'
} }
] ],
processBackground:[
{
max: 300,
message: this.$t('processBackground') + this.$t('cannotExceed') + 300 + this.$t('Characters'),
trigger: 'blur'
}
],
remark:[
{
max: 300,
message: this.$t('remarks') + this.$t('cannotExceed') + 300 + this.$t('Characters'),
trigger: 'blur'
}
],
}, },
searchParmes: {}, searchParmes: {},
selectedRowKeysRecord: [], selectedRowKeysRecord: [],