Compare commits

...

2 Commits

Author SHA1 Message Date
wcy 88c4925b4a Merge remote-tracking branch 'origin/main' 2024-09-25 16:32:38 +08:00
wcy 206eb4ce40 前端二级库修改修改 2024-09-25 16:31:07 +08:00
1 changed files with 19 additions and 0 deletions

View File

@ -110,6 +110,7 @@
icon="el-icon-download"
size="mini"
@click="handleExport"
v-if="leaseType != 0"
>导出</el-button
>
</el-col>
@ -119,6 +120,23 @@
></right-toolbar>
</el-row>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button style="position: relative;bottom: 36px;"
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-if="leaseType == 0"
>导出</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="deviceList"
@ -868,6 +886,7 @@ export default {
`二级库_${new Date().getTime()}.xlsx`,
)
},
},
}
</script>