mirror of
https://gitee.com/bootx/dax-pay-ui
synced 2026-08-15 01:36:20 +08:00
122 lines
3.8 KiB
Vue
122 lines
3.8 KiB
Vue
<template>
|
|
<div>
|
|
<div class="m-3 p-3 pt-5 bg-white">
|
|
<b-query :query-params="model.queryParam" :fields="fields" @query="queryPage" @reset="resetQueryParams" />
|
|
</div>
|
|
<div class="m-3 p-3 bg-white">
|
|
<vxe-toolbar ref="xToolbar" custom :refresh="{ query: queryPage }">
|
|
<template #buttons>
|
|
<a-space>
|
|
<a-button type="primary" pre-icon="ant-design:plus-outlined" @click="add">新建</a-button>
|
|
</a-space>
|
|
</template>
|
|
</vxe-toolbar>
|
|
<vxe-table row-id="id" ref="xTable" :data="pagination.records" :loading="loading">
|
|
<vxe-column type="seq" width="60" />
|
|
<vxe-column field="databaseId" title="数据源ID" />
|
|
<vxe-column field="name" title="名称" />
|
|
<vxe-column field="sql" title="sql语句" />
|
|
<vxe-column field="isList" title="是否集合">
|
|
<template #default="{ row }">
|
|
<a-tag>{{ row.isList ? '是' : '否' }}</a-tag>
|
|
</template>
|
|
</vxe-column>
|
|
<vxe-column field="remark" title="备注" />
|
|
<vxe-column field="createTime" title="创建时间" />
|
|
<vxe-column fixed="right" width="220" :showOverflow="false" title="操作">
|
|
<template #default="{ row }">
|
|
<span>
|
|
<a-link @click="show(row)">查看</a-link>
|
|
</span>
|
|
<a-divider type="vertical" />
|
|
<span>
|
|
<a-link @click="edit(row)">编辑</a-link>
|
|
</span>
|
|
<span>
|
|
<a-link @click="edit(row)">测试</a-link>
|
|
</span>
|
|
<a-divider type="vertical" />
|
|
<a-popconfirm title="是否删除" @confirm="remove(row)" okText="是" cancelText="否">
|
|
<a-link danger>删除</a-link>
|
|
</a-popconfirm>
|
|
</template>
|
|
</vxe-column>
|
|
</vxe-table>
|
|
<vxe-pager
|
|
size="medium"
|
|
:loading="loading"
|
|
:current-page="pagination.current"
|
|
:page-size="pagination.size"
|
|
:total="pagination.total"
|
|
@page-change="handleTableChange"
|
|
/>
|
|
<query-sql-edit ref="querySqlEdit" @ok="queryPage" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted } from 'vue'
|
|
import { $ref } from 'vue/macros'
|
|
import { del, page } from './QuerySql.api'
|
|
import useTablePage from '/@/hooks/bootx/useTablePage'
|
|
import QuerySqlEdit from './QuerySqlEdit.vue'
|
|
import { VxeTableInstance, VxeToolbarInstance } from 'vxe-table'
|
|
import BQuery from '/@/components/Bootx/Query/BQuery.vue'
|
|
import { FormEditType } from '/@/enums/formTypeEnum'
|
|
import { useMessage } from '/@/hooks/web/useMessage'
|
|
import { QueryField } from '/@/components/Bootx/Query/Query'
|
|
|
|
// 使用hooks
|
|
const { handleTableChange, pageQueryResHandel, resetQueryParams, pagination, pages, model, loading } = useTablePage(queryPage)
|
|
const { notification, createMessage, createConfirm } = useMessage()
|
|
|
|
// 查询条件
|
|
const fields = [] as QueryField[]
|
|
|
|
const xTable = $ref<VxeTableInstance>()
|
|
const xToolbar = $ref<VxeToolbarInstance>()
|
|
const querySqlEdit = $ref<any>()
|
|
|
|
onMounted(() => {
|
|
vxeBind()
|
|
queryPage()
|
|
})
|
|
function vxeBind() {
|
|
xTable?.connect(xToolbar as VxeToolbarInstance)
|
|
}
|
|
|
|
// 分页查询
|
|
function queryPage() {
|
|
loading.value = true
|
|
page({
|
|
...model.queryParam,
|
|
...pages,
|
|
}).then(({ data }) => {
|
|
pageQueryResHandel(data)
|
|
})
|
|
}
|
|
// 新增
|
|
function add() {
|
|
querySqlEdit.init(null, FormEditType.Add)
|
|
}
|
|
// 编辑
|
|
function edit(record) {
|
|
querySqlEdit.init(record.id, FormEditType.Edit)
|
|
}
|
|
// 查看
|
|
function show(record) {
|
|
querySqlEdit.init(record.id, FormEditType.Show)
|
|
}
|
|
|
|
// 删除
|
|
function remove(record) {
|
|
del(record.id).then(() => {
|
|
createMessage.success('删除成功')
|
|
queryPage()
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped></style>
|