需求页面样式等问题调试
This commit is contained in:
parent
89e8268be3
commit
05eb75875f
|
|
@ -216,10 +216,10 @@
|
||||||
:model="addOrEditForm"
|
:model="addOrEditForm"
|
||||||
:rules="addOrEditFormRules"
|
:rules="addOrEditFormRules"
|
||||||
>
|
>
|
||||||
<el-row :gutter="20">
|
<el-row>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="项目所在地" style="width: 100%" prop="provinceCode">
|
<el-form-item label="项目所在地" style="width: 100%" prop="provinceCode">
|
||||||
<el-row :span="24">
|
<el-row style="width: 100%">
|
||||||
<el-col :span="6">
|
<el-col :span="6">
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-select
|
<el-select
|
||||||
|
|
@ -498,7 +498,7 @@
|
||||||
<div
|
<div
|
||||||
style="
|
style="
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: -5px;
|
left: -28px;
|
||||||
top: 0;
|
top: 0;
|
||||||
width: 26px;
|
width: 26px;
|
||||||
height: 26px;
|
height: 26px;
|
||||||
|
|
@ -512,9 +512,9 @@
|
||||||
>
|
>
|
||||||
{{ index + 1 }}
|
{{ index + 1 }}
|
||||||
</div>
|
</div>
|
||||||
<el-row :gutter="24">
|
<el-row :gutter="20">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="装备类目" prop="typeIds">
|
<el-form-item label="装备类目选择" prop="typeIds">
|
||||||
<el-cascader
|
<el-cascader
|
||||||
clearable
|
clearable
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
|
|
@ -543,7 +543,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row :gutter="24">
|
<el-row :gutter="20">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="装备描述">
|
<el-form-item label="装备描述">
|
||||||
<el-input
|
<el-input
|
||||||
|
|
@ -555,6 +555,16 @@
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="4" v-if="index !== 0">
|
||||||
|
<el-button
|
||||||
|
size="small"
|
||||||
|
type="danger"
|
||||||
|
class="primary-lease"
|
||||||
|
@click="onDeleteDemand(index)"
|
||||||
|
>
|
||||||
|
移除
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<!-- <el-row :gutter="20">
|
<!-- <el-row :gutter="20">
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
|
|
@ -1180,6 +1190,7 @@ onMounted(() => {
|
||||||
.el-dialog__body {
|
.el-dialog__body {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
overflow-y: scroll !important;
|
overflow-y: scroll !important;
|
||||||
|
padding: 20px 40px;
|
||||||
}
|
}
|
||||||
.dialog-content {
|
.dialog-content {
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue