装备录入按钮大小修改
This commit is contained in:
parent
f6fbd2a219
commit
be225d4015
|
|
@ -551,6 +551,9 @@ export default {
|
|||
&.el-table--striped .el-table__body tr.el-table__row:hover>td.el-table__cell {
|
||||
background-color: #CCF1E9 !important;
|
||||
}
|
||||
.el-table__body tr.hover-row > td.el-table__cell {
|
||||
background-color: #ccf1e9 !important;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -147,11 +147,11 @@
|
|||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="24" style="text-align: right;">
|
||||
<el-button icon="el-icon-search" type="primary" @click="queryTableList">
|
||||
<el-button icon="el-icon-search" type="primary" @click="queryTableList" size="mini">
|
||||
查询
|
||||
</el-button>
|
||||
<el-button icon="el-icon-refresh"
|
||||
@click="resetTableList"
|
||||
@click="resetTableList" size="mini"
|
||||
>
|
||||
重置
|
||||
</el-button>
|
||||
|
|
@ -165,6 +165,7 @@
|
|||
<el-col :span="24" style="text-align: right;">
|
||||
<el-button
|
||||
type="primary"
|
||||
size="mini"
|
||||
@click="equipmentDeployment"
|
||||
v-show="!isAddVisible"
|
||||
>
|
||||
|
|
@ -744,6 +745,9 @@ export default {
|
|||
&.el-table--striped .el-table__body tr.el-table__row:hover>td.el-table__cell {
|
||||
background-color: #CCF1E9 !important;
|
||||
}
|
||||
.el-table__body tr.hover-row > td.el-table__cell {
|
||||
background-color: #ccf1e9 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -131,10 +131,10 @@
|
|||
|
||||
|
||||
<el-col :span="18" style="text-align: right;">
|
||||
<el-button class="primary-lease" type="primary" icon="el-icon-search" @click="getEquipmentApplyList">
|
||||
<el-button class="primary-lease" size="mini" type="primary" icon="el-icon-search" @click="getEquipmentApplyList">
|
||||
查询
|
||||
</el-button>
|
||||
<el-button class="primary-lease" icon="el-icon-refresh" @click="resetForm">
|
||||
<el-button class="primary-lease" size="mini" icon="el-icon-refresh" @click="resetForm">
|
||||
重置
|
||||
</el-button>
|
||||
</el-col>
|
||||
|
|
@ -145,6 +145,7 @@
|
|||
<el-row>
|
||||
<el-col :span="24" style="text-align: right;">
|
||||
<el-button
|
||||
size="mini"
|
||||
class="primary-lease"
|
||||
type="primary"
|
||||
@click="showDetails('0')"
|
||||
|
|
@ -645,6 +646,9 @@ export default {
|
|||
&.el-table--striped .el-table__body tr.el-table__row:hover>td.el-table__cell {
|
||||
background-color: #CCF1E9 !important;
|
||||
}
|
||||
.el-table__body tr.hover-row > td.el-table__cell {
|
||||
background-color: #ccf1e9 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -37,9 +37,9 @@
|
|||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12" style="text-align:right;">
|
||||
<el-button icon="el-icon-search" class="primary-lease" type="primary" @click="getEquipmentApplyList">
|
||||
<el-button icon="el-icon-search" size="mini" class="primary-lease" type="primary" @click="getEquipmentApplyList">
|
||||
查询</el-button>
|
||||
<el-button icon="el-icon-refresh" class="primary-lease" @click="resetForm">
|
||||
<el-button icon="el-icon-refresh" size="mini" class="primary-lease" @click="resetForm">
|
||||
重置</el-button>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
|
@ -48,7 +48,7 @@
|
|||
<el-card class="content-box">
|
||||
<el-row>
|
||||
<el-col :span="24" style="text-align: right;">
|
||||
<el-button class="primary-lease" type="primary" @click="showDetails('1')">展开明细</el-button>
|
||||
<el-button class="primary-lease" size="mini" type="primary" @click="showDetails('1')">展开明细</el-button>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-table :data="tableData" border stripe height="100%">
|
||||
|
|
|
|||
Loading…
Reference in New Issue