修改禅道已知bug
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div>
|
||||
<div class="box-title-text">
|
||||
<a-input class="box-input" :value="value" @input="indexclick($event)"
|
||||
<a-input class="box-input" :value="value" :title="value" @input="indexclick($event)"
|
||||
:disabled="isDisabled"
|
||||
:placeholder="!isDisabled?$t('PleaseEnterOrSelect')+query.db_field_txt:query.db_field_txt"/>
|
||||
<a-button v-if="!isDisabled" type="primary" class="button-box" @click="standardClick">
|
||||
@@ -224,7 +224,7 @@
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
z-index:100;
|
||||
z-index: 100;
|
||||
border-top: 1px solid #e8e8e8;
|
||||
padding: 10px 16px;
|
||||
text-align: right;
|
||||
|
||||
@@ -113,11 +113,13 @@
|
||||
<span class="title-text-text"
|
||||
:title="$t('correspondingStandard')">{{$t('correspondingStandard')}}</span>
|
||||
</div>
|
||||
<a-form-model-item class="itemModel">
|
||||
<a-input class="box-input"
|
||||
:disabled="true"
|
||||
v-model="formInline.correspondingStandard"
|
||||
:placeholder="$t('PleaseEnter')+$t('correspondingStandard')"/>
|
||||
<a-form-model-item class="itemModel" prop="correspondingStandard">
|
||||
<Standardselection :query="{'db_field_txt':$t('correspondingStandard')}"
|
||||
:standard="formInline"
|
||||
v-model="formInline.correspondingStandard"/>
|
||||
<!-- <a-input class="box-input"-->
|
||||
<!-- v-model="formInline.correspondingStandard"-->
|
||||
<!-- :placeholder="$t('PleaseEnter')+$t('correspondingStandard')"/>-->
|
||||
</a-form-model-item>
|
||||
</div>
|
||||
</a-col>
|
||||
@@ -626,6 +628,13 @@
|
||||
trigger: 'blur'
|
||||
}
|
||||
],
|
||||
correspondingStandard: [
|
||||
{
|
||||
max: 300,
|
||||
message: this.$t('correspondingStandard') + this.$t('cannotExceed') + 300 + this.$t('Characters'),
|
||||
trigger: 'blur'
|
||||
}
|
||||
],
|
||||
wvtaId: [
|
||||
{
|
||||
max: 100,
|
||||
|
||||
Reference in New Issue
Block a user