|
|
@ -40,19 +40,6 @@ |
|
|
|
v-model:pagination="pagination" |
|
|
|
@pagination="getList" |
|
|
|
/> |
|
|
|
<el-dialog |
|
|
|
title="提示" |
|
|
|
v-model="dialogVisible" |
|
|
|
width="30%" |
|
|
|
:before-close="handleClose"> |
|
|
|
<span>这是一段信息</span> |
|
|
|
<template #footer> |
|
|
|
<span class="dialog-footer"> |
|
|
|
<el-button @click="dialogVisible = false">取 消</el-button> |
|
|
|
<el-button type="primary" @click="dialogVisible = false">确 定</el-button> |
|
|
|
</span> |
|
|
|
</template> |
|
|
|
</el-dialog> |
|
|
|
</ContentContainer> |
|
|
|
</div> |
|
|
|
</template> |
|
|
@ -68,15 +55,12 @@ export default { |
|
|
|
ContentContainer, |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
dialogVisible: false, |
|
|
|
// 总条数 |
|
|
|
|
|
|
|
return { |
|
|
|
// 查询参数 |
|
|
|
pagination: { |
|
|
|
pageNumber: 1, |
|
|
|
pageSize: 10, |
|
|
|
total: 100, |
|
|
|
total: 100, |
|
|
|
}, |
|
|
|
tableData: [ |
|
|
|
{ |
|
|
@ -158,8 +142,7 @@ export default { |
|
|
|
|
|
|
|
}, |
|
|
|
consoleSolt() { |
|
|
|
console.log("可以正常输出内容"); |
|
|
|
this.dialogVisible = true |
|
|
|
console.log("可以正常输出内容") |
|
|
|
}, |
|
|
|
handleClick(row) { |
|
|
|
console.log(row); |
|
|
|