This commit is contained in:
yuekuo
2023-03-31 11:27:47 +08:00
parent 77651e3823
commit 6e905f9b33
@@ -43,13 +43,11 @@
<span class="Required">*</span> <span class="Required">*</span>
<span class="title-text-text" :title="$t('upgraderecordnumber')">{{ $t('upgraderecordnumber') }}</span> <span class="title-text-text" :title="$t('upgraderecordnumber')">{{ $t('upgraderecordnumber') }}</span>
</div> </div>
<div style="width:78%">
<!-- <span class="title-text-text">中文</span> --> <!-- <span class="title-text-text">中文</span> -->
<a-form-model-item prop="babh"> <a-form-model-item class="itemModel" prop="babh">
<a-input class="box-input" v-model="form.babh" :title='form.babh' :placeholder="$t('pleaseEnter')" <a-input class="box-input" v-model="form.babh" :title='form.babh' :placeholder="$t('pleaseEnter')"
style="width:93%" :max-length="50"></a-input> style="width:100%" :max-length="50"></a-input>
</a-form-model-item> </a-form-model-item>
</div>
</div> </div>
</a-col> </a-col>
<a-col :span="24"> <a-col :span="24">
@@ -57,12 +55,12 @@
<div class="title-text-add"> <div class="title-text-add">
<span class="title-text-text" :title="$t('theNameOfFirm')">{{ $t('theNameOfFirm') }}</span> <span class="title-text-text" :title="$t('theNameOfFirm')">{{ $t('theNameOfFirm') }}</span>
</div> </div>
<div class="title-text-add-input">
<!-- <span class="title-text-text">中文</span> --> <!-- <span class="title-text-text">中文</span> -->
<a-form-model-item class="itemModel">
<a-input class="box-input" v-model="form.qymc" :title='form.qymc' :placeholder="$t('pleaseEnter')" <a-input class="box-input" v-model="form.qymc" :title='form.qymc' :placeholder="$t('pleaseEnter')"
disabled style="width:93%" :max-length="50"></a-input> disabled style="width:100%" :max-length="50"></a-input>
</a-form-model-item>
</div> </div>
</div>
</a-col> </a-col>
<a-col :span="24"> <a-col :span="24">
@@ -123,32 +121,33 @@
<div class="title-text-add"> <div class="title-text-add">
<span class="title-text-text plus2" :title="$t('Vehicledynamictype')">{{ $t('Vehicledynamictype') }}</span> <span class="title-text-text plus2" :title="$t('Vehicledynamictype')">{{ $t('Vehicledynamictype') }}</span>
</div> </div>
<a-form-model-item class="itemModel" style="width: 38%;margin-right:12px"> <a-form-model-item class="itemModel " >
<!-- <j-dict-select-tag class="box-input" <div style="display:flex;flex-wrap: nowrap;width: 100%;">
:disabled="disabled" <div style="width: 90%;margin-right: 20px;">
@change="projectNameChange" <a-select class="box-input" v-model="form.dllx1" :disabled="disabled" :placeholder="$t('PleaseSelect')"
:placeholder="$t('PleaseSelect')" @change="changeSelect($event, target)"
:type="'select'" style="width: 100%;"
:triggerChange="false" >
v-model="form.Vehicledynamictype"/> -->
<a-select class="box-input" v-model="form.dllx1" :disabled="disabled" :placeholder="$t('PleaseSelect')"
@change="changeSelect($event, target)">
<a-select-option v-for="(item, key) in projectNameList1" :key="key" :value="item"> <a-select-option v-for="(item, key) in projectNameList1" :key="key" :value="item">
{{ item }} {{ item }}
</a-select-option> </a-select-option>
</a-select> </a-select>
</div>
<div style="width: 100%;">
<a-select v-model="form.dllx2" class="box-input" :disabled="disabled" :placeholder="$t('PleaseSelect')"
@change="update2"
style="width: 100%;"
>
<a-select-option v-for="(item, key) in projectNameList2" :key="key" :value="item">
{{ item }}
</a-select-option>
</a-select>
</div>
</div>
</a-form-model-item> </a-form-model-item>
<a-form-model-item class="itemModel" style="width: 40%;">
<a-select v-model="form.dllx2" class="box-input" :disabled="disabled" :placeholder="$t('PleaseSelect')"
@change="update2">
<a-select-option v-for="(item, key) in projectNameList2" :key="key" :value="item">
{{ item }}
<!-- <span style="display: inline-block;width: 100%" :title=" item.projectName ">
{{ item.projectName}}
</span> -->
</a-select-option>
</a-select>
</a-form-model-item>
</div> </div>
</a-col> </a-col>
@@ -430,6 +429,7 @@ export default {
width: calc(100% - 130px); width: calc(100% - 130px);
display: inline-block; display: inline-block;
margin-top: 2px; margin-top: 2px;
max-width: 486px;
} }
.box-input { .box-input {
@@ -461,4 +461,6 @@ export default {
.Required { .Required {
color: red; color: red;
margin-right: 3px; margin-right: 3px;
}</style> }
</style>