|
|
@@ -26,33 +26,40 @@
|
|
|
<div class="basic-details-title border-none">
|
|
|
<span class="border-span">资产信息</span>
|
|
|
</div>
|
|
|
- <el-row>
|
|
|
- <el-col :md="6" :xs="6" :sm="6">
|
|
|
- <el-form-item label="模具编码">
|
|
|
+ <el-descriptions
|
|
|
+ title=""
|
|
|
+ :column="4"
|
|
|
+ size="medium"
|
|
|
+ border
|
|
|
+ style="edit"
|
|
|
+ >
|
|
|
+ <el-descriptions-item>
|
|
|
+ <template slot="label"> 模具编码 </template>
|
|
|
+ <el-form-item label-width="0">
|
|
|
<el-input size="small" v-model="info.mouldCode"></el-input>
|
|
|
</el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :md="6" :xs="6" :sm="6">
|
|
|
- <el-form-item label="固资编码">
|
|
|
+ </el-descriptions-item>
|
|
|
+ <el-descriptions-item>
|
|
|
+ <template slot="label"> 固资编码 </template>
|
|
|
+ <el-form-item label-width="0">
|
|
|
<el-input size="small" v-model="info.fixCode"></el-input>
|
|
|
</el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :md="6" :xs="6" :sm="6">
|
|
|
- <el-form-item label="编号">
|
|
|
+ </el-descriptions-item>
|
|
|
+ <el-descriptions-item>
|
|
|
+ <template slot="label"> 编号 </template>
|
|
|
+ <el-form-item label-width="0">
|
|
|
<el-input size="small" v-model="info.code1"></el-input>
|
|
|
</el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :md="6" :xs="6" :sm="6">
|
|
|
- <el-form-item label="冲压次数">
|
|
|
+ </el-descriptions-item>
|
|
|
+ <el-descriptions-item>
|
|
|
+ <template slot="label"> 冲压次数 </template>
|
|
|
+ <el-form-item label-width="0">
|
|
|
<el-input size="small" v-model="info.cycs"></el-input>
|
|
|
</el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :md="6" :xs="6" :sm="6">
|
|
|
- <el-form-item
|
|
|
- label="权属部门"
|
|
|
- prop="ownershipGroupId"
|
|
|
- class="qsbm"
|
|
|
- >
|
|
|
+ </el-descriptions-item>
|
|
|
+ <el-descriptions-item>
|
|
|
+ <template slot="label"> 权属部门 </template>
|
|
|
+ <el-form-item label-width="0">
|
|
|
<ele-tree-select
|
|
|
clearable
|
|
|
:data="treeData"
|
|
|
@@ -63,8 +70,8 @@
|
|
|
valueKey="id"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
+ </el-descriptions-item>
|
|
|
+ </el-descriptions>
|
|
|
|
|
|
<div class="basic-details-title border-none">
|
|
|
<span class="border-span">模具信息</span>
|
|
|
@@ -757,4 +764,9 @@
|
|
|
width: 100%;
|
|
|
}
|
|
|
}
|
|
|
+ ::v-deep .el-descriptions {
|
|
|
+ .el-form-item {
|
|
|
+ margin-bottom: 0px;
|
|
|
+ }
|
|
|
+ }
|
|
|
</style>
|