样式优化
This commit is contained in:
parent
dd91ea3e84
commit
b256b0ca1b
|
|
@ -79,16 +79,22 @@
|
||||||
<span style="font-size: 20px; font-weight: 800">装备上下架列表</span>
|
<span style="font-size: 20px; font-weight: 800">装备上下架列表</span>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="20" >
|
<el-col :span="20" >
|
||||||
<el-button
|
<el-tooltip
|
||||||
|
placement="top-start"
|
||||||
|
content="请选择需要下架的装备后再操作"
|
||||||
|
:disabled.sync="selectedRows.length !== 0"
|
||||||
|
>
|
||||||
|
<el-button
|
||||||
size="mini"
|
size="mini"
|
||||||
type="danger"
|
type="danger"
|
||||||
class="primary-lease"
|
class="primary-lease"
|
||||||
@click="handleBatchDown"
|
@click="handleBatchDown"
|
||||||
style="float: right;margin-right: 10px"
|
style="float: right;margin-right: 10px"
|
||||||
:disabled="selectedRows.length === 0"
|
:disabled="selectedRows.length === 0"
|
||||||
>
|
>
|
||||||
批量下架
|
批量下架
|
||||||
</el-button>
|
</el-button>
|
||||||
|
</el-tooltip>
|
||||||
|
|
||||||
<el-button style="float: right;margin-right: 10px" size="mini" @click="equipment" type="primary" class="primary-lease">
|
<el-button style="float: right;margin-right: 10px" size="mini" @click="equipment" type="primary" class="primary-lease">
|
||||||
添加上架装备
|
添加上架装备
|
||||||
|
|
|
||||||
|
|
@ -76,6 +76,11 @@
|
||||||
<span style="font-size: 20px; font-weight: 800">工具上下架列表</span>
|
<span style="font-size: 20px; font-weight: 800">工具上下架列表</span>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="20">
|
<el-col :span="20">
|
||||||
|
<el-tooltip
|
||||||
|
placement="top-start"
|
||||||
|
content="请选择需要下架的工具后再操作"
|
||||||
|
:disabled.sync="selectedRows.length !== 0"
|
||||||
|
>
|
||||||
<el-button
|
<el-button
|
||||||
size="mini"
|
size="mini"
|
||||||
type="danger"
|
type="danger"
|
||||||
|
|
@ -86,7 +91,7 @@
|
||||||
>
|
>
|
||||||
批量下架
|
批量下架
|
||||||
</el-button>
|
</el-button>
|
||||||
|
</el-tooltip>
|
||||||
<el-button size="mini" style="float: right;margin-right: 10px" @click="numberTool" type="primary" class="primary-lease">
|
<el-button size="mini" style="float: right;margin-right: 10px" @click="numberTool" type="primary" class="primary-lease">
|
||||||
上架数量工具
|
上架数量工具
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue