|
@ -1,12 +1,13 @@ |
|
|
<template> |
|
|
<template> |
|
|
<el-dialog v-model="dialogTableVisible" title="标签" width="1100"> |
|
|
<el-dialog v-model="dialogTableVisible" title="标签" width="1100"> |
|
|
<el-table |
|
|
<div v-loading="isLoading"> |
|
|
|
|
|
<el-table |
|
|
:data="showTableData()" |
|
|
:data="showTableData()" |
|
|
border |
|
|
border |
|
|
row-key="id" |
|
|
row-key="id" |
|
|
style="width: 1050px; max-height: 70vh; overflow-y: auto" |
|
|
style="width: 1050px; max-height: 70vh; overflow-y: auto" |
|
|
v-if="tableData.length > 0 && dialogTableVisible == true" |
|
|
v-if="tableData.length > 0 && dialogTableVisible == true" |
|
|
v-loading="isLoading" |
|
|
|
|
|
> |
|
|
> |
|
|
<el-table-column type="expand" width="50"> |
|
|
<el-table-column type="expand" width="50"> |
|
|
<template #default="scope"> |
|
|
<template #default="scope"> |
|
@ -173,10 +174,11 @@ |
|
|
layout="total, prev, pager, next, jumper" |
|
|
layout="total, prev, pager, next, jumper" |
|
|
:total="tableData.length" |
|
|
:total="tableData.length" |
|
|
/> |
|
|
/> |
|
|
<template #footer> |
|
|
<div style="text-align: right;margin-top:10px"> |
|
|
<slot name="foorter"></slot> |
|
|
|
|
|
<ButtonBase :Butttondata="Butttondata" @button-base-click="buttonBaseClick" /> |
|
|
<ButtonBase :Butttondata="Butttondata" @button-base-click="buttonBaseClick" /> |
|
|
</template> |
|
|
</div> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
</template> |
|
|
</template> |
|
|
<script setup lang="ts"> |
|
|
<script setup lang="ts"> |
|
|