|
|
@@ -63,7 +63,7 @@
|
|
|
name="remark">
|
|
|
<a-input class="dialogInput"
|
|
|
v-model:value="formState.remark"
|
|
|
- style="width: 562px"
|
|
|
+ style="width: 588px"
|
|
|
placeholder="请输入备注" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
@@ -71,7 +71,7 @@
|
|
|
</fieldset>
|
|
|
<fieldset class="formFieldSet">
|
|
|
<legend>品类信息</legend>
|
|
|
- <a-row :gutter="24">
|
|
|
+ <a-row :gutter="24" class="dialogRowTitle">
|
|
|
<a-col :span="6">
|
|
|
<span>
|
|
|
<span class="red">*</span>
|
|
|
@@ -109,7 +109,6 @@
|
|
|
<a-form-item :name="['gldwrstandards',index,'unitid' ]"
|
|
|
:rules="rules.gldwrstandards.unitid">
|
|
|
<a-select class="inlineFormSelect"
|
|
|
- style="width: 200px"
|
|
|
v-model:value="domain.unitid"
|
|
|
placeholder="请选择单位">
|
|
|
<a-select-option v-for="item in unitList"
|
|
|
@@ -129,7 +128,7 @@
|
|
|
placeholder="请输入标仓系数"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :span="6">
|
|
|
+ <a-col :span="6" class="tc">
|
|
|
<a-button class="plusBtn"
|
|
|
@click="deleteOne('gldwrstandards', index)"
|
|
|
v-if="index > 0">
|
|
|
@@ -203,7 +202,7 @@
|
|
|
</fieldset>
|
|
|
<fieldset class="formFieldSet">
|
|
|
<legend>品牌信息</legend>
|
|
|
- <a-row :gutter="24">
|
|
|
+ <a-row :gutter="24" class="dialogRowTitle dialogRowTitle2">
|
|
|
<a-col :span="12">
|
|
|
<span>
|
|
|
<span class="red">*</span>
|
|
|
@@ -272,7 +271,7 @@
|
|
|
</fieldset>
|
|
|
<fieldset class="formFieldSet">
|
|
|
<legend>套保品种信息</legend>
|
|
|
- <a-row :gutter="24">
|
|
|
+ <a-row :gutter="24" class="dialogRowTitle">
|
|
|
<a-col :span="6">
|
|
|
<span>
|
|
|
<span class="red">*</span>
|
|
|
@@ -302,7 +301,6 @@
|
|
|
<a-form-item :name="['wrsconvertdetails',index,'middlegoodsid']"
|
|
|
:rules="rules.wrsconvertdetails.middlegoodsid">
|
|
|
<a-select class="inlineFormSelect"
|
|
|
- style="width: 200px"
|
|
|
@change="middleChange(domain.middlegoodsid, domain)"
|
|
|
v-model:value="domain.middlegoodsid"
|
|
|
placeholder="请选择套保品种">
|
|
|
@@ -331,7 +329,7 @@
|
|
|
placeholder="请输入套保系数"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :span="6">
|
|
|
+ <a-col :span="6" class="tc">
|
|
|
<a-button class="plusBtn"
|
|
|
@click="deleteOne('wrsconvertdetails', index)"
|
|
|
v-if="index > 0">
|
|
|
@@ -720,5 +718,51 @@ export default defineComponent({
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ .ant-form.inlineForm {
|
|
|
+ .ant-row.dialogRowTitle {
|
|
|
+ .ant-col {
|
|
|
+ .ant-row.ant-form-item {
|
|
|
+ .ant-col.ant-form-item-control-wrapper {
|
|
|
+ width: 100%;
|
|
|
+ .ant-form-item-control {
|
|
|
+ .ant-form-item-children {
|
|
|
+ .ant-input.dialogInput {
|
|
|
+ border-radius: 0;
|
|
|
+ margin-top: 1px;
|
|
|
+ // margin-left: -1px;
|
|
|
+ // width: calc(100% + 2px);
|
|
|
+ }
|
|
|
+ .ant-select.inlineFormSelect {
|
|
|
+ margin-top: 1px;
|
|
|
+ .ant-select-selector {
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .ant-form-item-control.has-error {
|
|
|
+ text-align: left;
|
|
|
+ .ant-form-item-children {
|
|
|
+ .ant-input.dialogInput {
|
|
|
+ background: @m-grey21;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .ant-form-explain {
|
|
|
+ color: @m-red1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .ant-col.tc {
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .ant-row.dialogRowTitle2 {
|
|
|
+ .ant-col:nth-child(3),.ant-col:nth-child(4) {
|
|
|
+ border-top: 1px solid @m-grey20;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|